add metrics websocket
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:
Lee
2024-04-18 00:25:44 +01:00
parent cbfaa867a9
commit c5758d38e0
7 changed files with 101 additions and 8 deletions

View File

@ -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;
}