From 7fa54d40f0f929babbafea49e520b1cd78a6a6f2 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 20 Jul 2022 14:56:10 +0300 Subject: [PATCH] README.md: rename "time series" to more clear "metrics" in the example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 23c1155..a5d7e6e 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ ```go import "github.com/VictoriaMetrics/metrics" -// Register various time series. -// Time series name may contain labels in Prometheus format - see below. +// Register various metrics. +// Metric name may contain labels in Prometheus format - see below. var ( // Register counter without labels. requestsTotal = metrics.NewCounter("requests_total")