Kusto Go API查询多个表

ckx4rj1h  于 2023-09-28  发布在  Go
关注(0)|答案(1)|浏览(86)

我使用Kusto API从2个表中查询日志,但是它们在2个不同的数据库中,这些数据库在不同的集群中,因此有不同的端点(我不能修改集群)。我想知道是否有可能使用API从两个表中查询日志

5t7ly7z5

5t7ly7z51#

无论您使用的是哪个客户端库/工具,只要您对这两个数据库都有读取权限,您就可以在查询文本中包含对不同集群中数据库的引用。

例如,在群集cluster1.westus上的数据库database1上运行以下查询:

union withsource = T
   Table1, // this is in 'database1' in 'cluster1.westus'
   cluster("cluster2.westus2").database("database2").Table2,
   cluster("cluster2.centralus").database("database3").Table3
| where Timestamp > ago(1h)
| summarize count() by T

相关问题