Move event-listener to sub package (#29)

This commit is contained in:
Stephan Schnabel 2023-04-24 14:58:23 +02:00 committed by GitHub
parent a392076722
commit 32fc7a1d5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 10 additions and 13 deletions

View file

@ -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) {}