-1

I'm trying to send systemd logs to elasticsearch via filebeat. I see the following metadata field in elasticsearch for one of the log entries.

"meta" : {
        "cloud" : {
          "instance_id" : "xxxxxx",
          "machine_type" : "xxxxxx",
          "instance_name" : "xxxx",
          "availability_zone" : "xxxxxx",
          "provider" : "xxxxx"
        }
      },

I was wondering if the above metadata field visible is added by filebeat or its a field picked up by systemd and just forwarded to elasticsearch as is by filebeat? Is there a way to check that? Or does filebeat by default add metadata to logs that it forwards?

Paridhi
  • 25
  • 6

1 Answers1

1

Yes, it does add metadata fields.

Look into your filebeat.yml, you will probably see the two lines below:

processors:
  - add_host_metadata: ~
  - add_cloud_metadata: ~

The host and cloud metadata are enabled per default, if you don't want those fields you just need to comment those lines.

leandrojmp
  • 7,082
  • 2
  • 19
  • 24