-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use log.source.address instead of log.source.ip for network inputs #9487
Conversation
Sources for network inputs can be of the form host:port, what cannot be stored in ip fields.
Pinging @elastic/infrastructure |
dev-tools/ecs-migration.yml
Outdated
to: ["log.file.path", "log.source.ip"] | ||
to: | ||
- log.file.path | ||
- log.source.ip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume we can remove log.source.ip
from this list?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, I kept it in case it was being used, or was going to be used in other places, but I have no problem with removing it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It "should" not be used anywhere else. Can you also do a quick search to make sure this is the case and remove it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I also remove it from fields.common.yml
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change LGTM. I think you need to adjust tests in a few places to make CI happy.
Sources for network inputs can be of the form host:port, what cannot be
stored in ip fields.
Replaces #9460