@@ -63,23 +63,30 @@ By default, Kusto will insert incoming ingestions into a table by inferring the
63
63
| tag_key | The key name of tag. If ` include_tag_key ` is false, This property is ignored. | ` tag ` |
64
64
| include_time_key | If enabled, a timestamp is appended to output. The key name is used ` time_key ` property. | ` On ` |
65
65
| 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 ` |
67
70
68
71
### Configuration File
69
72
70
73
Get started quickly with this configuration file:
71
74
72
75
```
73
76
[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
+
83
90
```
84
91
85
92
## Troubleshooting
0 commit comments