Update SyslogConnectorsOverallStatus.yaml

This commit is contained in:
Anki Narravula 2024-07-12 11:53:08 +05:30
Родитель c3980dbf7d
Коммит ce818fe31d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -14,8 +14,8 @@ FunctionParams:
Type: datetime
Default: 'now()'
FunctionQuery: |
let startTime = starttime;
let endTime = endtime;
let startTime = startTime;
let endTime = endTime;
let empty_table_result = datatable (DeviceProduct:string, EventCount:long, ConnectionStatus:string ) [];
let empty_table_connector_status = datatable (TimeGenerated:datetime, DeviceProduct:string, EventCount:long ) [];
let known_syslog_supported_devices = externaldata(DeviceProduct: string, ConnectorType:string)[@"https://raw.githubusercontent.com/Azure/Azure-Sentinel/anknar/SyslogWorkbook/DataConnectors/SyslogCEFConnectors.csv"] with (format="csv", ignoreFirstRecord=true) | where ConnectorType == "Syslog" | distinct DeviceProduct;