-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-pick to 6.x: Add support for ssl_request_log in apache2 module (…
…#9833) (#9848) * Add support for ssl_request_log in apache2 module (#9833) * Add support for ssl_request_log in apache2 module * Update changelog * Rename ssl.cipher and ssl.protocol (cherry picked from commit 033b021) * Fix apache2.access.http_version * Rename url.original to apache2.access.url
- Loading branch information
1 parent
e6ff695
commit 404c19e
Showing
7 changed files
with
52 additions
and
3 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
[10/Aug/2018:09:45:56 +0200] 172.30.0.119 TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 "GET /nagiosxi/ajaxhelper.php?cmd=getxicoreajax&opts=%7B%22func%22%3A%22get_admin_tasks_html%22%2C%22args%22%3A%22%22%7D&nsp=b5c7d5d4b6f7d0cf0c92f9cbdf737f6a5c838218425e6ae21 HTTP/1.1" 1375 |
18 changes: 18 additions & 0 deletions
18
filebeat/module/apache2/access/test/ssl-request.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,18 @@ | ||
[ | ||
{ | ||
"@timestamp": "2018-08-10T07:45:56.000Z", | ||
"apache2.access.body_sent.bytes": "1375", | ||
"apache2.access.http_version": "1.1", | ||
"apache2.access.remote_ip": "172.30.0.119", | ||
"apache2.access.ssl.cipher": "ECDHE-RSA-AES128-GCM-SHA256", | ||
"apache2.access.ssl.protocol": "TLSv1.2", | ||
"apache2.access.url": "/nagiosxi/ajaxhelper.php?cmd=getxicoreajax&opts=%7B%22func%22%3A%22get_admin_tasks_html%22%2C%22args%22%3A%22%22%7D&nsp=b5c7d5d4b6f7d0cf0c92f9cbdf737f6a5c838218425e6ae21", | ||
"event.dataset": "apache2.access", | ||
"fileset.module": "apache2", | ||
"fileset.name": "access", | ||
"http.request.method": "GET", | ||
"input.type": "log", | ||
"offset": 0, | ||
"prospector.type": "log" | ||
} | ||
] |