Skip to content

Commit

Permalink
add nlb cloudwatch metrics (#1324)
Browse files Browse the repository at this point in the history
https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-cloudwatch-metrics.html

* ProcessedPackets, statistic: sum
* PeakPacketsPerSecond, statistic: max
* PacketsPerSecondCapacity,  statistic: min
  • Loading branch information
copperlight authored Jun 9, 2021
1 parent 8682431 commit 03593c9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions atlas-poller-cloudwatch/src/main/resources/nlb.conf
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,28 @@ atlas {
}
]
},
{
name = "PacketsPerSecondCapacity"
alias = "aws.nlb.packetsPerSecondCapacity"
conversion = "min"
tags = [
{
key = "listener"
value = "tcp"
}
]
},
{
name = "PeakPacketsPerSecond"
alias = "aws.nlb.peakPacketsPerSecond"
conversion = "max"
tags = [
{
key = "listener"
value = "tcp"
}
]
},
{
name = "ProcessedBytes"
alias = "aws.nlb.processedBytes"
Expand All @@ -100,6 +122,17 @@ atlas {
}
]
},
{
name = "ProcessedPackets"
alias = "aws.nlb.processedPackets"
conversion = "sum,rate"
tags = [
{
key = "listener"
value = "tcp"
}
]
},
{
name = "TCP_Client_Reset_Count"
alias = "aws.nlb.tcpResets"
Expand Down

0 comments on commit 03593c9

Please sign in to comment.