我正在使用Kusto API 查詢2 個表中的日誌,但是它們位於2 個不同的資料庫中,這些資料庫位於不同的集群中,因此具有不同的端點(我無法修改集群)。我想知道是否可以使用Kusto API 查詢兩個表中的日誌
無論您使用哪個客戶端庫/工具,只要您對兩個資料庫都具有讀取權限,您就可以在查詢文字中包含對不同叢集中資料庫的參考。
例如,對叢集 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
以上是Kusto Go API 從多個表查詢的詳細內容。更多資訊請關注PHP中文網其他相關文章!