Move event-listener to sub package (#29)
This commit is contained in:
parent
a392076722
commit
32fc7a1d5d
9 changed files with 10 additions and 13 deletions
|
@ -0,0 +1,13 @@
|
|||
package io.kokuwa.keycloak.metrics.junit;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Represents a parsed Prometheus line.
|
||||
*
|
||||
* @author Stephan Schnabel
|
||||
* @param name Metric name
|
||||
* @param tags Tags for this metriv value
|
||||
* @param value Metric value
|
||||
*/
|
||||
public record PrometheusMetric(String name, Map<String, String> tags, Double value) {}
|
Loading…
Add table
Add a link
Reference in a new issue