forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-pick: elastic#10030 and elastic#9869 to 6.5: Handle IPv6 zone …
…id in IIS filebeat ingest pipeline (elastic#10057) IIS logs can include zone ids when using IPv6, this is correctly parsed but geoip processor doesn't accept these addresses. Create a temporary field without the zone id to be used by geoip processor. (cherry picked from commit d59ae8c) (cherry picked from commit 5f1f6ca) (cherry picked from commit e05f967) Co-authored-by: Mathieu Martin <webmat@gmail.com>
- Loading branch information
Showing
7 changed files
with
98 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#Software: Microsoft Internet Information Services 10.0 | ||
#Version: 1.0 | ||
#Date: 2018-01-01 10:11:12 | ||
#Fields: date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken | ||
2018-01-01 10:11:12 W3SVC1 MACHINE-NAME ::1%0 GET / - 80 - ::1%0 HTTP/1.1 Mozilla/5.0+(Macintosh;+Intel+Mac+OS+X+10_14_0)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/70.0.3538.102+Safari/537.36 - - example.com 200 0 0 123 456 789 |
39 changes: 39 additions & 0 deletions
39
filebeat/module/iis/access/test/test-ipv6zone.log-expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[ | ||
{ | ||
"@timestamp": "2018-01-01T10:11:12.000Z", | ||
"fileset.module": "iis", | ||
"fileset.name": "access", | ||
"iis.access.body_received.bytes": "456", | ||
"iis.access.body_sent.bytes": "123", | ||
"iis.access.cookie": "-", | ||
"iis.access.hostname": "example.com", | ||
"iis.access.http_version": "1.1", | ||
"iis.access.method": "GET", | ||
"iis.access.port": "80", | ||
"iis.access.query_string": "-", | ||
"iis.access.referrer": "-", | ||
"iis.access.remote_ip": "::1%0", | ||
"iis.access.request_time_ms": "789", | ||
"iis.access.response_code": "200", | ||
"iis.access.server_ip": "::1%0", | ||
"iis.access.server_name": "MACHINE-NAME", | ||
"iis.access.site_name": "W3SVC1", | ||
"iis.access.sub_status": "0", | ||
"iis.access.url": "/", | ||
"iis.access.user_agent.device": "Other", | ||
"iis.access.user_agent.major": "70", | ||
"iis.access.user_agent.minor": "0", | ||
"iis.access.user_agent.name": "Chrome", | ||
"iis.access.user_agent.original": "Mozilla/5.0+(Macintosh;+Intel+Mac+OS+X+10_14_0)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/70.0.3538.102+Safari/537.36", | ||
"iis.access.user_agent.os": "Mac OS X 10.14.0", | ||
"iis.access.user_agent.os_major": "10", | ||
"iis.access.user_agent.os_minor": "14", | ||
"iis.access.user_agent.os_name": "Mac OS X", | ||
"iis.access.user_agent.patch": "3538", | ||
"iis.access.user_name": "-", | ||
"iis.access.win32_status": "0", | ||
"input.type": "log", | ||
"offset": 331, | ||
"prospector.type": "log" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#Software: Microsoft HTTP API 2.0 | ||
#Version: 1.0 | ||
#Date: 2018-12-30 13:48:36 | ||
#Fields: date time c-ip c-port s-ip s-port cs-version cs-method cs-uri streamid sc-status s-siteid s-reason s-queuename | ||
2018-12-30 14:22:07 ::1%0 49958 ::1%0 80 - - - - - - Timer_ConnectionIdle - |
16 changes: 16 additions & 0 deletions
16
filebeat/module/iis/error/test/ipv6_zone_id.log-expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"@timestamp": "2018-12-30T14:22:07.000Z", | ||
"fileset.module": "iis", | ||
"fileset.name": "error", | ||
"iis.error.queue_name": "-", | ||
"iis.error.reason_phrase": "Timer_ConnectionIdle", | ||
"iis.error.remote_ip": "::1%0", | ||
"iis.error.remote_port": "49958", | ||
"iis.error.server_ip": "::1%0", | ||
"iis.error.server_port": "80", | ||
"input.type": "log", | ||
"offset": 195, | ||
"prospector.type": "log" | ||
} | ||
] |