次の方法で共有


AzureMetrics テーブルのクエリ

Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。

HTTP 応答コードの円グラフ

過去 12 時間の各メトリックの応答コードの内訳。

AzureMetrics 
| where TimeGenerated > ago(12h)  
| where MetricName in ("Http2xx", "Http3xx", "Http4xx", "Http5xx") 
| summarize sum(Total) by MetricName  
| render piechart

応答時間の折れ線グラフ

平均応答時間の時系列 (5 分間隔)。

AzureMetrics 
| extend timeBin = bin(TimeGenerated, 5m) 
| summarize ResponseTime = sumif(Average, MetricName=="AverageResponseTime") by timeBin, bin(TimeGenerated, 1h) 
| sort by TimeGenerated desc 
| render timechart

[クラシック]AzureMetrics で検索する

[クラシック]AzureMetrics で検索し、AzureMetrics テーブル内の特定の値を検索します。このクエリでは、結果を生成するために <SeachValue> パラメーターを更新する必要があります。

// This query requires a parameter to run. Enter value in SearchValue to find in table.
let SearchValue =  "<SearchValue>";//Please update term you would like to find in the table.
AzureMetrics
| where * contains tostring(SearchValue)
| take 1000

最新のメトリック

報告された各メトリックの最新のメトリック レポートを表示します。

AzureMetrics 
| summarize arg_max(TimeGenerated, UnitName, Total, Count, Maximum, Minimum, Average) by MetricName

AzureMetrics で検索する

AzureMetrics で検索し、AzureMetrics テーブル内の特定の値を検索します。このクエリでは、結果を生成するために <SeachValue> パラメーターを更新する必要があります。

// This query requires a parameter to run. Enter value in SearchValue to find in table.
let SearchValue =  "<SearchValue>";//Please update term you would like to find in the table.
AzureMetrics
| where * contains tostring(SearchValue)
| take 1000

ExpressRoute 回線 BitsInPerSecond トラフィック グラフ

トラフィック グラフ BitsInPerSecond (過去 1 時間)。

AzureMetrics
| where MetricName == "BitsInPerSecond"
| summarize by Average, bin(TimeGenerated, 1h), Resource
| render timechart

ExpressRoute 回線 BitsOutPerSecond トラフィック グラフ

トラフィック グラフ BitsOutPerSecond (過去 1 時間)。

AzureMetrics
| where MetricName == "BitsOutPerSecond"
| summarize by Average, bin(TimeGenerated, 1h), Resource
| render timechart

ExpressRoute 回線の ArpAvailablility グラフ

ArpAvailability のトラフィック グラフ (5 分)。

AzureMetrics
| where MetricName == "ArpAvailability"
| summarize by Average, bin(TimeGenerated, 5m), Resource
| render timechart

ExpressRoute 回線の BGP 可用性

BgpAvailability のトラフィック グラフ (5 分)。

AzureMetrics
| where MetricName == "BgpAvailability"
| summarize by Average, bin(TimeGenerated, 5m), Resource
| render timechart

平均 CPU 使用率

過去 1 時間の平均 CPU 使用率 (リソース名別)。

//consistently high averages could indicate a customer needs to move to a larger SKU
AzureMetrics
| where ResourceProvider == "MICROSOFT.SQL" // /DATABASES
| where TimeGenerated >= ago(60min)
| where MetricName in ('cpu_percent') 
| parse _ResourceId with * "/microsoft.sql/servers/" Resource  // subtract Resource name for _ResourceId
| summarize CPU_Maximum_last15mins = max(Maximum), CPU_Minimum_last15mins = min(Minimum), CPU_Average_last15mins = avg(Average) by Resource , MetricName

パフォーマンスのトラブルシューティング

パフォーマンスが低下する可能性があるシステムでクエリまたはデッドロックが発生する可能性があります。

//potentially a query or deadlock on the system that could lead to poor performance
AzureMetrics
| where ResourceProvider == "MICROSOFT.SQL"
| where TimeGenerated >=ago(60min)
| where MetricName in ('deadlock')
| parse _ResourceId with * "/microsoft.sql/servers/" Resource // subtract Resource name for _ResourceId
| summarize Deadlock_max_60Mins = max(Maximum) by Resource, MetricName

データの読み込み

過去 1 時間のデータ読み込みを監視します。

AzureMetrics
| where ResourceProvider == "MICROSOFT.SQL"
| where TimeGenerated >= ago(60min)
| where MetricName in ('log_write_percent')
| parse _ResourceId with * "/microsoft.sql/servers/" Resource// subtract Resource name for _ResourceId
| summarize Log_Maximum_last60mins = max(Maximum), Log_Minimum_last60mins = min(Minimum), Log_Average_last60mins = avg(Average) by Resource, MetricName

P2S 接続数

過去 30 日間のアクティブな P2S 接続数。

AzureMetrics 
| where TimeGenerated > ago(30d)
| where MetricName == "P2SConnectionCount"
| summarize by Maximum, bin(TimeGenerated,1h), Resource
| render timechart

P2S 帯域幅使用率

過去 12 時間の P2S 帯域幅の平均使用率 (ビット/秒)。

AzureMetrics
| where TimeGenerated > ago(24h)
| where MetricName == "P2SBandwidth" 
| summarize by Average, bin(TimeGenerated, 1h), Resource
| render timechart

ゲートウェイのスループット

ゲートウェイのスループットをバイト/秒で集計します。

AzureMetrics 
| where TimeGenerated > ago(24h)
| where MetricName == "AverageBandwidth"
| summarize by Average, bin(TimeGenerated, 1h), Resource
| render timechart

AzureMetrics テーブルからログを表示する

AzureMetrics テーブル内の最新のログを、時間 (最新の最初) で並べ替え済みで一覧表示します。

AzureMetrics
| top 10 by TimeGenerated

AzureMetrics テーブルからログを表示する

AzureMetrics テーブル内の最新のログを、時間 (最新の最初) で並べ替え済みで一覧表示します。

AzureMetrics
| top 10 by TimeGenerated

クラスターの可用性 (KeepAlive)

過去 1 時間のクラスターの可用性を表示します。

// To create an alert for this query, click '+ New alert rule'
AzureMetrics 
| where ResourceProvider == "MICROSOFT.KUSTO"
| where TimeGenerated > ago(1d)
| where MetricName == "KeepAlive"
| parse _ResourceId with * "providers/microsoft.kusto/clusters/" cluster_name // Get the cluster name from the ResourceId string
| summarize heartbeat_count = count() by bin(TimeGenerated, 30m), cluster_name // bin is used to set the time grain to 30 minutes
| extend alive=iff(heartbeat_count > 0, true, false)
| sort by TimeGenerated asc // sort the results by time (ascending order)