Skip to content

Commit

Permalink
Add new NLB/ALB metrics (#595)
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
mpalriwal-Netflix authored Oct 17, 2024
1 parent 52e5077 commit 8cf4482
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
10 changes: 10 additions & 0 deletions atlas-cloudwatch/src/main/resources/alb.conf
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ atlas {
alias = "aws.alb.processedBytes"
conversion = "sum,rate"
},
{
name = "IPv6ProcessedBytes"
alias = "aws.alb.ipv6ProcessedBytes"
conversion = "sum,rate"
},
{
name = "IPv6RequestCount"
alias = "aws.alb.ipv6ProcessedCount"
conversion = "sum,rate"
},
{
name = "ActiveConnectionCount"
alias = "aws.alb.activeConnectionCount"
Expand Down
78 changes: 78 additions & 0 deletions atlas-cloudwatch/src/main/resources/nlb.conf
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,84 @@ atlas {
}
]
},
{
name = "PortAllocationErrorCount"
alias = "aws.nlb.portAllocationErrorCount"
conversion = "sum,rate"
tags = []
},
{
name = "RejectedFlowCount"
alias = "aws.nlb.rejectedFlowCount"
conversion = "sum,rate"
tags = []
},
{
name = "SecurityGroupBlockedFlowCount_Inbound_ICMP"
alias = "aws.nlb.securityGroupBlockedFlowCount"
conversion = "sum,rate"
tags = [
{
key = "protocol"
value = "Inbound_ICMP"
}
]
},
{
name = "SecurityGroupBlockedFlowCount_Inbound_TCP"
alias = "aws.nlb.securityGroupBlockedFlowCount"
conversion = "sum,rate"
tags = [
{
key = "protocol"
value = "Inbound_TCP"
}
]
},
{
name = "SecurityGroupBlockedFlowCount_Inbound_UDP"
alias = "aws.nlb.securityGroupBlockedFlowCount"
conversion = "sum,rate"
tags = [
{
key = "protocol"
value = "Inbound_UDP"
}
]
},
{
name = "SecurityGroupBlockedFlowCount_Outbound_ICMP"
alias = "aws.nlb.securityGroupBlockedFlowCount"
conversion = "sum,rate"
tags = [
{
key = "protocol"
value = "Outbound_ICMP"
}
]
},
{
name = "SecurityGroupBlockedFlowCount_Outbound_TCP"
alias = "aws.nlb.securityGroupBlockedFlowCount"
conversion = "sum,rate"
tags = [
{
key = "protocol"
value = "Outbound_TCP"
}
]
},
{
name = "SecurityGroupBlockedFlowCount_Outbound_UDP"
alias = "aws.nlb.securityGroupBlockedFlowCount"
conversion = "sum,rate"
tags = [
{
key = "protocol"
value = "Outbound_UDP"
}
]
},
{
name = "NewFlowCount_TCP"
alias = "aws.nlb.newFlows"
Expand Down

0 comments on commit 8cf4482

Please sign in to comment.