Skip to content

Commit

Permalink
fix aws direct connect metrics (Netflix-Skunkworks#389)
Browse files Browse the repository at this point in the history
The affected metrics are all reported as aggregates (averages) over a
five minute period by default.
  • Loading branch information
copperlight authored and manolama committed Oct 25, 2023
1 parent de056da commit 5a9fc5a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions atlas-cloudwatch/src/main/resources/dx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ atlas {
{
name = "ConnectionBpsEgress"
alias = "aws.dx.connectionBytes"
conversion = "sum",
conversion = "sum,rate",
tags = [
{
key = "id"
Expand All @@ -38,7 +38,7 @@ atlas {
{
name = "ConnectionBpsIngress"
alias = "aws.dx.connectionBytes"
conversion = "sum",
conversion = "sum,rate",
tags = [
{
key = "id"
Expand All @@ -49,7 +49,7 @@ atlas {
{
name = "ConnectionPpsEgress"
alias = "aws.dx.connectionPackets"
conversion = "sum",
conversion = "sum,rate",
tags = [
{
key = "id"
Expand All @@ -60,7 +60,7 @@ atlas {
{
name = "ConnectionPpsIngress"
alias = "aws.dx.connectionPackets"
conversion = "sum",
conversion = "sum,rate",
tags = [
{
key = "id"
Expand Down Expand Up @@ -123,7 +123,7 @@ atlas {
{
name = "VirtualInterfaceBpsEgress"
alias = "aws.dx.virtualInterfaceBytes"
conversion = "sum"
conversion = "sum,rate"
tags = [
{
key = "id"
Expand All @@ -134,7 +134,7 @@ atlas {
{
name = "VirtualInterfaceBpsIngress"
alias = "aws.dx.virtualInterfaceBytes"
conversion = "sum"
conversion = "sum,rate"
tags = [
{
key = "id"
Expand All @@ -145,7 +145,7 @@ atlas {
{
name = "VirtualInterfacePpsEgress"
alias = "aws.dx.virtualInterfacePackets"
conversion = "sum"
conversion = "sum,rate"
tags = [
{
key = "id"
Expand All @@ -156,7 +156,7 @@ atlas {
{
name = "VirtualInterfacePpsIngress"
alias = "aws.dx.virtualInterfacePackets"
conversion = "sum"
conversion = "sum,rate"
tags = [
{
key = "id"
Expand Down

0 comments on commit 5a9fc5a

Please sign in to comment.