Record a long gauge value. @param value The value to record. @param requiredLabelValues A list of required label values for the metric. @param optionalLabelValues A list of additional, optional label values for the metric.
(LongGaugeMetricInstrument metricInstrument, long value,
List<String> requiredLabelValues, List<String> optionalLabelValues)
| 157 | * @param optionalLabelValues A list of additional, optional label values for the metric. |
| 158 | */ |
| 159 | default void recordLongGauge(LongGaugeMetricInstrument metricInstrument, long value, |
| 160 | List<String> requiredLabelValues, List<String> optionalLabelValues) { |
| 161 | checkArgument(requiredLabelValues != null |
| 162 | && requiredLabelValues.size() == metricInstrument.getRequiredLabelKeys().size(), |
no outgoing calls
no test coverage detected