Java Code Examples for io.prometheus.client.Summary#labels()

The following examples show how to use io.prometheus.client.Summary#labels() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PrometheusBistouryMeter.java    From bistoury with GNU General Public License v3.0 4 votes vote down vote up
public PrometheusBistouryMeter(final Summary summary, final String[] labels) {
    this.summary = summary.labels(labels);
}
 
Example 2
Source File: PrometheusBistouryTimer.java    From bistoury with GNU General Public License v3.0 4 votes vote down vote up
public PrometheusBistouryTimer(final Summary summary, final String[] labels) {
    this.summary = summary.labels(labels);
}
 
Example 3
Source File: PrometheusQConfigMeter.java    From qconfig with MIT License 4 votes vote down vote up
public PrometheusQConfigMeter(final Summary summary, final String[] labels) {
    this.summary = summary.labels(labels);
}
 
Example 4
Source File: PrometheusQConfigTimer.java    From qconfig with MIT License 4 votes vote down vote up
public PrometheusQConfigTimer(final Summary summary, final String[] labels) {
    this.summary = summary.labels(labels);
}
 
Example 5
Source File: PrometheusQmqTimer.java    From qmq with Apache License 2.0 4 votes vote down vote up
public PrometheusQmqTimer(final Summary summary, final String[] labels) {
    this.summary = summary.labels(labels);
}
 
Example 6
Source File: PrometheusQmqMeter.java    From qmq with Apache License 2.0 4 votes vote down vote up
public PrometheusQmqMeter(final Summary summary, final String[] labels) {
    this.summary = summary.labels(labels);
}