KQL - 在 Kusto 查询中包含时区
KQL - Include Time zone in the Kusto Query
我的任务是将仪表板从 Splunk 转换为 Kusto.I 查看数据差异,因为 Splunk 具有 UTC 时区的数据 table,但我认为 Kusto 正在使用我的本地时间区。 1) 有没有办法在 Kusto 中查询以识别数据的当前时区。 2) 转换 Kusto table 或 Query 以使用 UTC 时区与 Splunk 数据匹配。谢谢。
引用 documentation:
A datetime
value in Kusto is always in the UTC time zone. Displaying datetime
values in other time zones is the responsibility of the user application that displays the data, not a property of the data itself. Should time zone values be required to be kept as a part of the data, a separate columns should be used (providing offset information relative to UTC).
我的任务是将仪表板从 Splunk 转换为 Kusto.I 查看数据差异,因为 Splunk 具有 UTC 时区的数据 table,但我认为 Kusto 正在使用我的本地时间区。 1) 有没有办法在 Kusto 中查询以识别数据的当前时区。 2) 转换 Kusto table 或 Query 以使用 UTC 时区与 Splunk 数据匹配。谢谢。
引用 documentation:
A
datetime
value in Kusto is always in the UTC time zone. Displayingdatetime
values in other time zones is the responsibility of the user application that displays the data, not a property of the data itself. Should time zone values be required to be kept as a part of the data, a separate columns should be used (providing offset information relative to UTC).