Auth0
Overview
Auth0 receives tenant log events from Auth0. These events include user authentications, Management API operations, and administrative actions.
Supported platforms
- Linux:
Logs - Windows:
Logs - macOS:
Logs
Authentication
Authentication is configured using the Credential Type field.
| Parameter | Type | Description |
|---|---|---|
| Credential Type | string | Specifies the authentication mechanism |
| BearerTokenAuth | option | Enables bearer token authentication. |
Basic Configuration
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| endpoint | string | Yes | none | The network address where the source listens for incoming Auth0 webhook HTTP requests. Example: 0.0.0.0:8080. |
| path | string | Yes | /events | HTTP path used for receiving webhook events from Auth0. |
| health_path | string | No | /health_check | Path for the health check endpoint. |
Advanced Configuration
TLS
| Parameter | Type | Default Value | Description |
|---|---|---|---|
| enable_tls | bool | false | Enables TLS encryption for incoming webhook HTTP connections. |
| min_version | string | 1.3 | Defines the minimum TLS version accepted for secure connections. Supports TLS 1.2 and above. |
| cert_file | string | none | Path to the TLS certificate file used by the server. |
| key_file | string | none | Path to the TLS private key file used by the server. |
| client_ca_file | string | none | Path to the client CA certificate file used to verify client certificates for mutual TLS (mTLS). |
Timeouts & Limits
| Parameter | Type | Default | Description |
|---|---|---|---|
| read_timeout | duration | 500ms | Maximum wait time while attempting to read a received event. |
| write_timeout | duration | 500ms | Maximum wait time while attempting to write a response. |
| max_request_body_size | integer | 1048576 | Maximum size in bytes for the request body. Requests exceeding this limit will be rejected with an error. |
Log Processing & Headers
| Parameter | Type | Default | Description |
|---|---|---|---|
| split_logs_at_newline | boolean | false | If true, the source creates a separate log record for each line in the request body. |
| split_logs_at_json_boundary | boolean | false | If true, the source parses the request body as JSON and sends each object as a log. Splitting on newline overrides JSON boundary splitting, so enable only one at a time. |
| convert_headers_to_attributes | boolean | false | Adds all request headers as log attributes, excluding required headers if also set. |
| header_attribute_regex | string | none | Adds headers matching the supplied regex as log attributes. Header attributes are prefixed with header. Example: ^X-.*. |
Example Configuration
{
"path": "/events", // required, default: "/events"
"endpoint": "", // required, default: none
"health_path": "/health_check", // default: "/health_check"
"tls": {
"enable_tls": false, // required inside tls, default: false
"cert_file": "", // default: none
"key_file": "", // default: none
"client_ca_file": "", // default: none
"min_version": "1.3", // default: "1.3"
},
"read_timeout": "500ms", // default: "500ms"
"write_timeout": "500ms", // default: "500ms"
"max_request_body_size": 1048576, // default: 1048576
"split_logs_at_newline": false, // default: false
"split_logs_at_json_boundary": false, // default: false
"convert_headers_to_attributes": false, // default: false
"header_attribute_regex": "", // default: none
}