Elasticsearch winlogbeat field host.ip value issue

winlogbeat version 7.2.0
host.ip : 10.33.55.5

But winlogbeat version 7.10.0
host.ip field show: fe80::95f4:40d4:80a3:8cd, 10.33.55.5, fe80::399f:e9ad:5f5a:9511, 169.254.149.17, fe80::dc91:96a:a1b8:82e3, 169.254.130.227, fe80::fca7:8f0:8e02:90c2, 169.254.144.194

How can change it like winlogbeat-7.2.0

Thanks

The host.ip field is added by the add_host_metadata that you have in your config file.

Try changing the configuration for add_host_metadata to:

processors:
- add_host_metadata:
    netinfo.enabled: false

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