dont include ip in the influx data
All checks were successful
Publish Docker Image / docker (push) Successful in 42s

This commit is contained in:
Lee 2024-01-03 08:32:04 +00:00
parent 4095d70722
commit b0f3d8532f

@ -100,7 +100,6 @@ export default class Server {
influx.writePoint(
new Point("playerCount")
.tag("name", this.getName())
.tag("ip", this.getIP().toLowerCase())
.intField("playerCount", response.playerCount)
.timestamp(response.timestamp)
);