-
Notifications
You must be signed in to change notification settings - Fork 509
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
Showing
27 changed files
with
2,357 additions
and
91 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
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,114 @@ | ||
--- | ||
layout: default | ||
title: AD LDAP | ||
parent: Supported log types | ||
nav_order: 20 | ||
--- | ||
|
||
# AD LDAP | ||
|
||
The `ad_ldap` log type tracks Active Directory logs, such as: | ||
|
||
- Lightweight Directory Access Protocol (LDAP) queries. | ||
- Errors from the LDAP server. | ||
- Timeout events. | ||
- Unsecured LDAP binds. | ||
|
||
The following code snippet contains all `raw_field` and `ecs` mappings for this log type: | ||
|
||
```json | ||
"mappings": [ | ||
{ | ||
"raw_field":"TargetUserName", | ||
"ecs":"azure.signinlogs.properties.user_id" | ||
}, | ||
{ | ||
"raw_field":"creationTime", | ||
"ecs":"timestamp" | ||
}, | ||
{ | ||
"raw_field":"Category", | ||
"ecs":"azure.activitylogs.category" | ||
}, | ||
{ | ||
"raw_field":"OperationName", | ||
"ecs":"azure.platformlogs.operation_name" | ||
}, | ||
{ | ||
"raw_field":"ModifiedProperties_NewValue", | ||
"ecs":"modified_properties.new_value" | ||
}, | ||
{ | ||
"raw_field":"ResourceProviderValue", | ||
"ecs":"azure.resource.provider" | ||
}, | ||
{ | ||
"raw_field":"conditionalAccessStatus", | ||
"ecs":"azure.signinlogs.properties.conditional_access_status" | ||
}, | ||
{ | ||
"raw_field":"SearchFilter", | ||
"ecs":"SearchFilter" | ||
}, | ||
{ | ||
"raw_field":"Operation", | ||
"ecs":"azure.platformlogs.operation_name" | ||
}, | ||
{ | ||
"raw_field":"ResultType", | ||
"ecs":"azure.platformlogs.result_type" | ||
}, | ||
{ | ||
"raw_field":"DeviceDetail_isCompliant", | ||
"ecs":"azure.signinlogs.properties.device_detail.is_compliant" | ||
}, | ||
{ | ||
"raw_field":"ResourceDisplayName", | ||
"ecs":"resource_display_name" | ||
}, | ||
{ | ||
"raw_field":"AuthenticationRequirement", | ||
"ecs":"azure.signinlogs.properties.authentication_requirement" | ||
}, | ||
{ | ||
"raw_field":"TargetResources", | ||
"ecs":"target_resources" | ||
}, | ||
{ | ||
"raw_field":"Workload", | ||
"ecs":"workload" | ||
}, | ||
{ | ||
"raw_field":"DeviceDetail.deviceId", | ||
"ecs":"azure.signinlogs.properties.device_detail.device_id" | ||
}, | ||
{ | ||
"raw_field":"OperationNameValue", | ||
"ecs":"azure.platformlogs.operation_name" | ||
}, | ||
{ | ||
"raw_field":"ResourceId", | ||
"ecs":"azure.signinlogs.properties.resource_id" | ||
}, | ||
{ | ||
"raw_field":"ResultDescription", | ||
"ecs":"azure.signinlogs.result_description" | ||
}, | ||
{ | ||
"raw_field":"EventID", | ||
"ecs":"EventID" | ||
}, | ||
{ | ||
"raw_field":"NetworkLocationDetails", | ||
"ecs":"azure.signinlogs.properties.network_location_details" | ||
}, | ||
{ | ||
"raw_field":"CategoryValue", | ||
"ecs":"azure.activitylogs.category" | ||
}, | ||
{ | ||
"raw_field":"ActivityDisplayName", | ||
"ecs":"azure.auditlogs.properties.activity_display_name" | ||
} | ||
] | ||
``` |
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 @@ | ||
--- | ||
layout: default | ||
title: Apache Access | ||
parent: Supported log types | ||
nav_order: 25 | ||
--- | ||
|
||
# Apache Access | ||
|
||
The `apache_access` log type records data for all requests processed by Apache HTTP servers. It contains no `raw_field` or `ecs` mappings. |
Oops, something went wrong.