add metrics websocket
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m55s
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m55s
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
package xyz.mcutils.backend.model.metric;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@AllArgsConstructor
|
||||
@Getter
|
||||
public class WebsocketMetrics {
|
||||
/**
|
||||
* The metrics to send to the client.
|
||||
*/
|
||||
private final Map<String, Object> metrics;
|
||||
}
|
Reference in New Issue
Block a user