Advertisement
Auto9211

Functionbeat.yml

Aug 16th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.67 KB | None | 0 0
  1. functionbeat.provider.aws.endpoint: "s3.amazonaws.com"
  2. functionbeat.provider.aws.deploy_bucket: "mybucketforfunctionbeat"
  3. functionbeat.provider.aws.functions:
  4.   - name: nameoflambda
  5.     enabled: true
  6.     type: cloudwatch_logs
  7.     description: "mydescription"
  8.     triggers:
  9.       - log_group_name: cw-loggroupToingest
  10.     virtual_private_cloud:
  11.         security_group_ids: ["sg-xxxxxxxxxx"]
  12.         subnet_ids: ["subnet-xxxxxxxxxx", "subnet-xxxxxxxxxx"]
  13.     role: arn:aws:iam::xxxxxxxxxx:role/xxxxxxxxxx
  14.     memory_size: 128MiB
  15. output.elasticsearch:
  16.   hosts: ["xxxxxxxxxx:9200"]
  17.   username: "xxxxxxxxxx"
  18.   password: "xxxxxxxxxx"
  19. setup.kibana:
  20.   host: "xxxxxxxxxx:5601"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement