Skip to content

Commit 535abf7

Browse files
[out_azure_kusto] added configs (#1405)
* [out_azure_kusto] added configs Added ingestion_endpoint_connect_timeout, compression_enabled, ingestion_resources_refresh_interval. Signed-off-by: Tanmaya Panda <[email protected]> * Update pipeline/outputs/azure_kusto.md Co-authored-by: Adam Locke <[email protected]> Signed-off-by: Tanmaya Panda <[email protected]> * Update pipeline/outputs/azure_kusto.md Co-authored-by: Adam Locke <[email protected]> Signed-off-by: Tanmaya Panda <[email protected]> --------- Signed-off-by: Tanmaya Panda <[email protected]> Co-authored-by: Adam Locke <[email protected]>
1 parent 9db958d commit 535abf7

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

pipeline/outputs/azure_kusto.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,30 @@ By default, Kusto will insert incoming ingestions into a table by inferring the
6363
| tag_key | The key name of tag. If `include_tag_key` is false, This property is ignored. | `tag` |
6464
| include_time_key | If enabled, a timestamp is appended to output. The key name is used `time_key` property. | `On` |
6565
| time_key | The key name of time. If `include_time_key` is false, This property is ignored. | `timestamp` |
66-
| workers | The number of [workers](../../administration/multithreading.md#outputs) to perform flush operations for this output. | `0` |
66+
| ingestion_endpoint_connect_timeout | The connection timeout of various Kusto endpoints in seconds. | `60` |
67+
| compression_enabled | If enabled, sends compressed HTTP payload (gzip) to Kusto. | `true` |
68+
| ingestion_resources_refresh_interval | The ingestion resources refresh interval of Kusto endpoint in seconds. | `3600` |
69+
| workers | The number of [workers](../../administration/multithreading.md#outputs) to perform flush operations for this output. | `0` |
6770

6871
### Configuration File
6972

7073
Get started quickly with this configuration file:
7174

7275
```
7376
[OUTPUT]
74-
Match *
75-
Name azure_kusto
76-
Tenant_Id <app_tenant_id>
77-
Client_Id <app_client_id>
78-
Client_Secret <app_secret>
79-
Ingestion_Endpoint https://ingest-<cluster>.<region>.kusto.windows.net
80-
Database_Name <database_name>
81-
Table_Name <table_name>
82-
Ingestion_Mapping_Reference <mapping_name>
77+
match *
78+
name azure_kusto
79+
tenant_id <app_tenant_id>
80+
client_id <app_client_id>
81+
client_secret <app_secret>
82+
ingestion_endpoint https://ingest-<cluster>.<region>.kusto.windows.net
83+
database_name <database_name>
84+
table_name <table_name>
85+
ingestion_mapping_reference <mapping_name>
86+
ingestion_endpoint_connect_timeout <ingestion_endpoint_connect_timeout>
87+
compression_enabled <compression_enabled>
88+
ingestion_resources_refresh_interval <ingestion_resources_refresh_interval>
89+
8390
```
8491

8592
## Troubleshooting

0 commit comments

Comments
 (0)