You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
450 B
17 lines
450 B
package prom_metrics
|
|
|
|
import ginProm "github.com/openimsdk/open-im-server/v3/pkg/common/ginPrometheus"
|
|
|
|
/*
|
|
labels := prometheus.Labels{"label_one": "any", "label_two": "value"}
|
|
ApiCustomCnt.MetricCollector.(*prometheus.CounterVec).With(labels).Inc()
|
|
*/
|
|
var (
|
|
ApiCustomCnt = &ginProm.Metric{
|
|
Name: "custom_total",
|
|
Description: "Custom counter events.",
|
|
Type: "counter_vec",
|
|
Args: []string{"label_one", "label_two"},
|
|
}
|
|
)
|