Skip to content

Commit

Permalink
Fix misconfigured EXT metrics (#156)
Browse files Browse the repository at this point in the history
Merging this to test in staging
  • Loading branch information
IreneMLC authored Apr 1, 2021
1 parent 6978aaf commit a8d929f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions definitions/ext-network_synth/summary_metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ testLocations:
select: uniqueCount(agent_name)
from: Metric
where: "provider = 'kentik-network-synthetic'"
eventId: entityGuid
eventId: entity.guid

averageLatency:
title: Average Latency (s)
Expand All @@ -14,7 +14,7 @@ averageLatency:
select: average(kentik.synth.avg_rtt)/1000000
from: Metric
where: "provider = 'kentik-network-synthetic'"
eventId: entityGuid
eventId: entity.guid

averageJitter:
title: Average Jitter (s)
Expand All @@ -23,7 +23,7 @@ averageJitter:
select: average(kentik.synth.jit_rtt)/1000000
from: Metric
where: "provider = 'kentik-network-synthetic'"
eventId: entityGuid
eventId: entity.guid

packetLoss:
title: Packet Loss (%)
Expand All @@ -32,4 +32,4 @@ packetLoss:
select: latest(kentik.synth.lost_pct)
from: Metric
where: "provider = 'kentik-network-synthetic'"
eventId: entityGuid
eventId: entity.guid
8 changes: 4 additions & 4 deletions definitions/ext-router/summary_metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cpuUtilization:
select: average(kentik.snmp.CPU)
from: Metric
where: "provider = 'kentik-router'"
eventId: entityGuid
eventId: entity.guid

memoryUtilization:
title: Memory Utilization (%)
Expand All @@ -20,7 +20,7 @@ memoryUtilization:
select: average(kentik.snmp.MemoryUtilization)
from: Metric
where: "provider = 'kentik-router'"
eventId: entityGuid
eventId: entity.guid

receiveErrors:
title: Receive Errors (count)
Expand All @@ -29,7 +29,7 @@ receiveErrors:
select: sum(kentik.snmp.ifInErrors)
from: Metric
where: "provider = 'kentik-router'"
eventId: entityGuid
eventId: entity.guid

transmitErrors:
title: Transmit Errors (count)
Expand All @@ -38,4 +38,4 @@ transmitErrors:
select: sum(kentik.snmp.ifOutErrors)
from: Metric
where: "provider = 'kentik-router'"
eventId: entityGuid
eventId: entity.guid
8 changes: 4 additions & 4 deletions definitions/ext-switch/summary_metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cpuUtilization:
select: average(kentik.snmp.CPU)
from: Metric
where: "provider = 'kentik-switch'"
eventId: entityGuid
eventId: entity.guid

memoryUtilization:
title: Memory Utilization (%)
Expand All @@ -20,7 +20,7 @@ memoryUtilization:
select: average(kentik.snmp.MemoryUtilization)
from: Metric
where: "provider = 'kentik-switch'"
eventId: entityGuid
eventId: entity.guid

receiveErrors:
title: Receive Errors (count)
Expand All @@ -29,7 +29,7 @@ receiveErrors:
select: sum(kentik.snmp.ifInErrors)
from: Metric
where: "provider = 'kentik-switch'"
eventId: entityGuid
eventId: entity.guid

transmitErrors:
title: Transmit Errors (count)
Expand All @@ -38,4 +38,4 @@ transmitErrors:
select: sum(kentik.snmp.ifOutErrors)
from: Metric
where: "provider = 'kentik-switch'"
eventId: entityGuid
eventId: entity.guid

0 comments on commit a8d929f

Please sign in to comment.