Skip to content

Commit c22739d

Browse files
authored
Metrics rename (#346)
* metrics: inline all counter references remove all calls to metrics.Counter and instead inline using the prometheus/promauto package * metrics: inject prometheus register dependency that's used to give more control and therefore create unique registers per tests avoiding the "duplicate metrics collector registration attempted" panic message see prometheus/client_golang#716 (comment) * metrics: inline gauge calls * metrics: inline all gauge calls in debug reporter couple things: 1 - semantics have changed, ie the metrics are initialized to 0 even if we can't ever generate metrics data so think in a dashboard a 0 value vs simply nothing showing up 2 - some of the metrics generated were dynamic, for example, based on files in a directory that has been hardcoded * metrics: inline timing calls and remove metrics pkg * metrics: bring back type assertions * metrics: create basic playground to compare metrics * metrics: convert timing metrics to nanoseconds * metrics: improve metrics-comparison docker-compose * metrics: fixes /benchmark * metrics: fix broken test * dashboard: initial version created with jsonnet * metrics: add pyroscope_ suffix * metrics: make missing metrics greppable * metrics: prepend pyroscope_ to missing metrics * metrics: refactor storage and cache counters * metrics: rename pyroscope_disk and pyroscope_cache_size * metrics: rename _count suffix to _total * metrics: timers are now histograms * metrics: refactor cache writes/misses metrics * metrics: rename a bunch of metrics * metrics: add dashboard row for go metrics * metrics: cleanup dashboard * metrics: add help text to benchmark metrics
1 parent f3186f4 commit c22739d

File tree

8 files changed

+1152
-455
lines changed

8 files changed

+1152
-455
lines changed

benchmark/main.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,12 @@ func startClientThread(appName string, wg *sync.WaitGroup, appFixtures []*transp
7272
reg := prometheus.NewRegistry()
7373

7474
uploadErrors := promauto.With(reg).NewCounter(prometheus.CounterOpts{
75-
Name: "upload_errors",
75+
Name: "pyroscope_upload_errors",
76+
Help: "",
7677
})
7778
successfulUploads := promauto.With(reg).NewCounter(prometheus.CounterOpts{
78-
Name: "successful_uploads",
79+
Name: "pyroscope_successful_uploads",
80+
Help: "",
7981
})
8082

8183
for i := 0; i < requestsCount; i++ {
@@ -204,10 +206,12 @@ func main() {
204206
logrus.Info("waiting for other services to load")
205207

206208
benchmark := promauto.NewGauge(prometheus.GaugeOpts{
207-
Name: "benchmark",
209+
Name: "pyroscope_benchmark",
210+
Help: "",
208211
})
209212
runProgress := promauto.NewGauge(prometheus.GaugeOpts{
210-
Name: "run_progress",
213+
Name: "pyroscope_run_progress",
214+
Help: "",
211215
})
212216

213217
benchmark.Set(0)

0 commit comments

Comments
 (0)