Skip to content
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

Update Apache HTTP Server access log example mapping #3114

Merged
merged 7 commits into from
Feb 7, 2023
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions specification/logs/data-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ Can include data that describes particular occurrence of the event.
Can be meta-information, e.g. quality of timestamp value.</td>
<td>SDID origin.swVersion map to Resource["service.version"]

SDID origin.ip map to attribute[net.host.ip"]
SDID origin.ip map to attribute["net.sock.host.addr"]

Rest of SDIDs -> Attributes["syslog.*"]</td>
</tr>
Expand Down Expand Up @@ -846,19 +846,19 @@ When mapping from the unified model to HEC, we apply this additional mapping:
<tr>
<td>%a</td>
<td>string</td>
<td>Client IP</td>
<td>Attributes["net.peer.ip"]</td>
<td>Client address</td>
<td>Attributes["net.sock.peer.addr"]</td>
</tr>
<tr>
<td>%A</td>
<td>string</td>
<td>Server IP</td>
<td>Attributes["net.host.ip"]</td>
<td>Server address</td>
<td>Attributes["net.sock.host.addr"]</td>
</tr>
<tr>
<td>%h</td>
<td>string</td>
<td>Remote hostname. </td>
<td>Client hostname.</td>
<td>Attributes["net.peer.name"]</td>
</tr>
<tr>
Expand Down Expand Up @@ -918,7 +918,7 @@ When mapping from the unified model to HEC, we apply this additional mapping:
<td>sourceIPAddress</td>
<td>string</td>
<td>The IP address that the request was made from.</td>
<td>Resource["net.peer.ip"] or Resource["net.host.ip"]? TBD</td>
<td>Resource["net.peer.ip"] or Resource["net.sock.host.addr"]? TBD</td>
pellared marked this conversation as resolved.
Show resolved Hide resolved
</tr>
<tr>
<td>errorCode</td>
Expand Down Expand Up @@ -1036,7 +1036,7 @@ All other fields | |
<td>source.ip, client.ip</td>
<td>string</td>
<td>The IP address that the request was made from.</td>
<td>Attributes["net.peer.ip"] or Attributes["net.host.ip"]</td>
<td>Attributes["net.peer.ip"] or Attributes["net.sock.host.addr"]</td>
pellared marked this conversation as resolved.
Show resolved Hide resolved
</tr>
<tr>
<td>cloud.account.id</td>
Expand Down