-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d0c3f0
commit b27d588
Showing
6 changed files
with
2,920 additions
and
6 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
195 changes: 194 additions & 1 deletion
195
...perations_center/integrations/generated/3c7057d3-4689-4fae-8033-6f1f887a70f2.md
Large diffs are not rendered by default.
Oops, something went wrong.
104 changes: 104 additions & 0 deletions
104
...perations_center/integrations/generated/63974ce1-2f0a-44f7-a4cf-3e64787c1c39.md
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,104 @@ | ||
|
||
## Event Categories | ||
|
||
|
||
The following table lists the data source offered by this integration. | ||
|
||
| Data Source | Description | | ||
| ----------- | ------------------------------------ | | ||
| `Web logs` | Microsoft IIS logs site activity | | ||
|
||
|
||
|
||
|
||
|
||
In details, the following table denotes the type of events produced by this integration. | ||
|
||
| Name | Values | | ||
| ---- | ------ | | ||
| Kind | `event` | | ||
| Category | `web` | | ||
| Type | `access` | | ||
|
||
|
||
|
||
|
||
## Event Samples | ||
|
||
Find below few samples of events and how they are normalized by Sekoia.io. | ||
|
||
|
||
=== "sample.json" | ||
|
||
```json | ||
|
||
{ | ||
"message": "::1, -, 11/20/2023, 15:44:03, W3SVC1, IIS-server, ::1, 2, 769, 143, 304, 0, GET, /, -,", | ||
"event": { | ||
"category": [ | ||
"web" | ||
], | ||
"duration": 2000, | ||
"kind": "event", | ||
"type": [ | ||
"access" | ||
] | ||
}, | ||
"@timestamp": "2023-11-20T15:44:03Z", | ||
"client": { | ||
"address": "::1", | ||
"bytes": 769, | ||
"ip": "::1" | ||
}, | ||
"http": { | ||
"request": { | ||
"method": "GET" | ||
}, | ||
"response": { | ||
"status_code": 304 | ||
} | ||
}, | ||
"observer": { | ||
"name": "IIS-server" | ||
}, | ||
"related": { | ||
"ip": [ | ||
"::1" | ||
] | ||
}, | ||
"server": { | ||
"bytes": 143, | ||
"ip": "::1" | ||
}, | ||
"url": { | ||
"path": "/" | ||
} | ||
} | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
## Extracted Fields | ||
|
||
The following table lists the fields that are extracted, normalized under the ECS format, analyzed and indexed by the parser. It should be noted that infered fields are not listed. | ||
|
||
| Name | Type | Description | | ||
| ---- | ---- | ---------------------------| | ||
|`@timestamp` | `date` | Date/time when the event originated. | | ||
|`client.bytes` | `long` | Bytes sent from the client to the server. | | ||
|`client.ip` | `ip` | IP address of the client. | | ||
|`event.category` | `keyword` | Event category. The second categorization field in the hierarchy. | | ||
|`event.duration` | `long` | Duration of the event in nanoseconds. | | ||
|`event.kind` | `keyword` | The kind of the event. The highest categorization field in the hierarchy. | | ||
|`event.type` | `keyword` | Event type. The third categorization field in the hierarchy. | | ||
|`http.request.method` | `keyword` | HTTP request method. | | ||
|`http.response.status_code` | `long` | HTTP response status code. | | ||
|`observer.name` | `keyword` | Custom name of the observer. | | ||
|`server.bytes` | `long` | Bytes sent from the server to the client. | | ||
|`server.ip` | `ip` | IP address of the server. | | ||
|`url.path` | `wildcard` | Path of the request, such as "/search". | | ||
|`user.name` | `keyword` | Short name or login of the user. | | ||
|
Oops, something went wrong.