com.jonnymatts.prometheus.http.HttpRequestMetricCounter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-metrics-core Show documentation
Show all versions of http-metrics-core Show documentation
HTTP metrics exporter for Prometheus
The newest version!
package com.jonnymatts.prometheus.http;
import com.jonnymatts.prometheus.collectors.PrometheusCounter;
public class HttpRequestMetricCounter extends PrometheusCounter {
public HttpRequestMetricCounter() {
super("http_requests_total",
"Total HTTP requests handled",
"method", "handler", "code");
}
}