Filebeat aws region error

hi

im tring to enable aws elb to send logs for my ELb.

this is my AWS module config:

filebeat_aws

and i got this error message :
ERROR instance/beat.go:933 Exiting: Fileset aws/regions is configured but doesn't exist

@Samerd There is no us-central-1 region in AWS. See the list at: https://docs.aws.amazon.com/general/latest/gr/rande.html

thanks , bad mistake .. but i fixed it to eu-central-1 , and i still getting the same error after trying restart the service

@Samerd Looking more closely, your configuration isn't correct: there is no regions field under the aws modules. Also, there is no aws.elb.name field.

For ELB, you'd be encoding the region in the URL for the SQS queue where the ELB logs are written:

- module: aws
  elb:
    enabled: true

    # AWS SQS queue url
    var.queue_url: https://sqs.eu-central-1.amazonaws.com/123456/myqueue

The docs have the allowed configuration settings, and also explain how to configure the various AWS services to send their logs to S3 and enable SQS notifications.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.