使用 Contributor Insights 來識別熱門位置和 ISPs - Amazon CloudWatch

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

使用 Contributor Insights 來識別熱門位置和 ISPs

CloudWatch Contributor Insights 可協助您識別 AWS 應用程式的主要用戶端位置和 ASNs(通常是網際網路服務供應商或 ISPs)。使用下列範例的 Contributor Insights 規則,以開始使用適用於 Amazon CloudWatch Internet Monitor 的規則。如需詳細資訊,請參閱在中建立貢獻者見解規則 CloudWatch

若要進一步了解網路監視器中的用戶端位置準確度,請參閱網路監視器中的地理位置資訊和準確度

注意

網路監視器每五分鐘會儲存網際網路測量資料,因此在您設定 Contributor Insights 規則之後,您必須將期間調整為五分鐘才能查看圖表。

檢視受可用性影響ASNs的熱門位置

若要檢視受可用性下降ASNs影響的頂級用戶端位置,您可以在語法編輯器中使用下列 Contributor Insights 規則。Replace (取代) monitor-name 使用您自己的監視器名稱。

{ "Schema": { "Name": "CloudWatchLogRule", "Version": 1 }, "AggregateOn": "Sum", "Contribution": { "Filters": [ { "Match": "$.clientLocation.city", "IsPresent": true } ], "Keys": [ "$.clientLocation.city", "$.clientLocation.networkName" ], "ValueOf": "$.awsInternetHealth.availability.percentageOfTotalTrafficImpacted" }, "LogFormat": "JSON", "LogGroupNames": [ "/aws/internet-monitor/monitor-name/byCity" ] }

檢視ASNs受到延遲影響的熱門用戶端位置

若要檢視熱門用戶端位置,並受到往返時間 (延遲) 增加ASNs的影響,您可以在語法編輯器中使用下列 Contributor Insights 規則。Replace (取代) monitor-name 使用您自己的監視器名稱。

{ "Schema": { "Name": "CloudWatchLogRule", "Version": 1 }, "AggregateOn": "Sum", "Contribution": { "Filters": [ { "Match": "$.clientLocation.city", "IsPresent": true } ], "Keys": [ "$.clientLocation.city", "$.clientLocation.networkName" ], "ValueOf": "$.awsInternetHealth.performance.percentageOfTotalTrafficImpacted" }, "LogFormat": "JSON", "LogGroupNames": [ "/aws/internet-monitor/monitor-name/byCity" ] }

檢視受總流量百分比ASNs影響的頂級用戶端位置

若要檢視受流量總百分比ASNs影響的頂級用戶端位置,您可以在語法編輯器中使用下列貢獻者洞察規則。Replace (取代) monitor-name 使用您自己的監視器名稱。

{ "Schema": { "Name": "CloudWatchLogRule", "Version": 1 }, "AggregateOn": "Sum", "Contribution": { "Filters": [ { "Match": "$.clientLocation.city", "IsPresent": true } ], "Keys": [ "$.clientLocation.city", "$.clientLocation.networkName" ], "ValueOf": "$.percentageOfTotalTraffic" }, "LogFormat": "JSON", "LogGroupNames": [ "/aws/internet-monitor/monitor-name/byCity" ] }