Skip to content

Commit

Permalink
upgrading monitoring labels
Browse files Browse the repository at this point in the history
  • Loading branch information
kvermeul committed Sep 6, 2023
1 parent f869d22 commit eabf598
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ var (
var (

revtrAPICallMonitor = promauto.NewCounter(prometheus.CounterOpts{
Name: "Reverse Traceroute API calls",
Name: "revtr_API_call_counter",
Help: "Reverse Traceroute API calls to the Revtr system",
})

revtrAPICallFailedMonitor = promauto.NewCounter(prometheus.CounterOpts{
Name: "Reverse Traceroute API calls that failed",
Name: "revtr_API_call_failed_counter",
Help: "Reverse Traceroute API calls to the Revtr system that failed ",
})

revtrSampleMonitor = promauto.NewCounter(prometheus.CounterOpts{
Name: "Reverse Traceroute measurements sent",
Name: "revtr_sample_counter",
Help: "Reverse Traceroute measurements sent to the Revtr system",
})
)
Expand Down

0 comments on commit eabf598

Please sign in to comment.