File tree Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ Only the latest version gets security updates. We won't support older versions.
110110 * ` AWS/Neptune ` - Neptune
111111 * ` AWS/NetworkELB ` - Network Load Balancer
112112 * ` AWS/NetworkFirewall ` - Network Firewall
113+ * ` AWS/Network Manager ` - Network Manager
113114 * ` AWS/PrivateLinkEndpoints ` - VPC Endpoint
114115 * ` AWS/PrivateLinkServices ` - VPC Endpoint Service
115116 * ` AWS/Prometheus ` - Managed Service for Prometheus
Original file line number Diff line number Diff line change 1+ # https://docs.aws.amazon.com/network-manager/latest/cloudwan/cloudwan-metrics.html
2+ apiVersion : v1alpha1
3+ discovery :
4+ jobs :
5+ - type : AWS/Network Manager
6+ regions :
7+ - us-west-2
8+ period : 60
9+ length : 300
10+ metrics :
11+ - name : BytesDropCountBlackhole
12+ statistics : [Sum]
13+ - name : BytesDropCountNoRoute
14+ statistics : [Sum]
15+ - name : BytesIn
16+ statistics : [Sum]
17+ - name : BytesOut
18+ statistics : [Sum]
19+ - name : PacketsDropCountBlackhole
20+ statistics : [Sum]
21+ - name : PacketsDropCountNoRoute
22+ statistics : [Sum]
23+ - name : PacketDropCountTTLExpired
24+ statistics : [Sum]
25+ - name : PacketsIn
26+ statistics : [Sum]
27+ - name : PacketsOut
28+ statistics : [Sum]
Original file line number Diff line number Diff line change @@ -1016,4 +1016,14 @@ var SupportedServices = serviceConfigs{
10161016 regexp .MustCompile (":service/(?P<Service>[^/]+)$" ),
10171017 },
10181018 },
1019+ {
1020+ Namespace : "AWS/Network Manager" ,
1021+ Alias : "networkmanager" ,
1022+ ResourceFilters : []* string {
1023+ aws .String ("networkmanager:core-network" ),
1024+ },
1025+ DimensionRegexps : []* regexp.Regexp {
1026+ regexp .MustCompile (":core-network/(?P<CoreNetwork>[^/]+)$" ),
1027+ },
1028+ },
10191029}
You can’t perform that action at this time.
0 commit comments