Back to mods
Fivemanage Logger project artwork

CurseForge · Hytale mod

Fivemanage Logger

Universal logger for Hytale. Supports Grafana Loki, Disk and Fivemanage

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Fivemanage Logger release should I use?

Updated 5 days ago
Latest stable file Fivemanage Logger v1.3.0
Game version 0.5
Mod system Built-in Hytale mod system

Fivemanage Logger v1.3.0 targets 0.5. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.

Where it goes

Where should Fivemanage Logger be installed in Hytale?

Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

Separate client mod Not supported
World host / dedicated server Required
Mod system for this release Built-in Hytale mod system
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.

What else does Fivemanage Logger v1.3.0 need?

Fivemanage Logger v1.3.0. Change the file and its required mods may change too.

No required dependencies listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.

Before you install it

Add Fivemanage Logger without breaking your instance.

Built for Fivemanage Logger v1.3.0. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use Fivemanage Logger v1.3.0. It targets 0.5; another release may target a different game build or dependency set.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Enable it on the world host

    Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside Fivemanage Logger v1.3.0. It opens that exact file at the source.

About this project

What does Fivemanage Logger add?

Fivemanage Logger - Hytale Server Logging & Analytics

The ultimate logging solution for Hytale dedicated servers. Track player activity, monitor server events, and send logs to Fivemanage, Grafana Loki, or local files.

Why Use Fivemanage Logger?

  • Track Everything — Player joins, disconnects, block breaks, and custom events
  • Multiple Backends — Send logs to Fivemanage, Grafana Loki, or local files
  • Built for Performance — Async batched logging with zero impact on server TPS
  • Easy Setup — Drop-in JAR, simple JSON config, works out of the box

Features

Feature Description
Multi-Provider Support Fivemanage, Grafana Loki, file-based logging
Batched Logging Configurable buffer size and flush intervals
Player Event Tracking Automatic logging of connect, disconnect, ready events
Block Event Tracking Track when players break blocks
Dual Logging Write to disk while sending to remote providers
Rich Metadata Attach custom metadata to all log entries

Installation

  1. Download the latest release from Releases
  2. Place the .jar file in your Hytale server's mods directory
  3. Create a config file at mods/Fivemanage_Logger/config.json

Quick Start

Fivemanage Cloud

{
  "LogProvider": {
    "Provider": "fivemanage",
    "ApiKey": "your-fivemanage-api-key",
    "WriteToDisk": false,
    "EnableBatching": true,
    "BufferSize": 10,
    "FlushIntervalMs": 5000
  },
  "PlayerEvents": {
    "Dataset": "player-events",
    "Enabled": true
  }
}

Get your API key from fivemanage.com.

Grafana Loki / Grafana Cloud

{
  "LogProvider": {
    "Provider": "grafana-loki",
    "Endpoint": "https://logs-prod-us-central1.grafana.net",
    "Username": "your-grafana-username",
    "Password": "your-grafana-api-key",
    "WriteToDisk": false,
    "EnableBatching": true,
    "BufferSize": 10,
    "FlushIntervalMs": 5000
  },
  "PlayerEvents": {
    "Dataset": "player-events",
    "Enabled": true
  }
}

Configuration Reference

Log Provider Options

Option Type Description
Provider string fivemanage, grafana-loki, or file
ApiKey string API key for Fivemanage
Endpoint string Loki push endpoint URL
Username string Basic auth username (Loki)
Password string Basic auth password (Loki)
WriteToDisk boolean Also write logs to local files
EnableBatching boolean Buffer logs before sending
BufferSize integer Logs to buffer before flush (default: 10)
FlushIntervalMs integer Max time before flush in ms (default: 5000)

Player Events Options

Option Type Description
Dataset string Dataset/label name for player events
Enabled boolean Enable automatic player event logging

Usage in Your Hytale Mod

Use the FivemanageLogger API to send custom logs from your own Hytale mods:

import org.fivemanage.FivemanageLogger;
import java.util.Map;

// Log with metadata
Map<String, Object> metadata = Map.of(
    "player", "Steve",
    "location", "x:100, y:64, z:200"
);

FivemanageLogger.info("my-dataset", "Player spawned", metadata);
FivemanageLogger.warn("my-dataset", "Low health warning", metadata);
FivemanageLogger.error("my-dataset", "Something went wrong", metadata);
FivemanageLogger.debug("my-dataset", "Debug info", metadata);

Automatic Event Tracking

When PlayerEvents.Enabled is true, these events are logged automatically:

Event Description
Player Connect When a player connects to the server
Player Ready When a player is fully loaded and ready
Player Disconnect When a player leaves the server

Use Cases

  • Server Administration — Monitor player activity and server health
  • Anti-Cheat Logging — Track suspicious player behavior
  • Analytics Dashboard — Build dashboards with Grafana
  • Audit Trails — Keep records of all server events
  • Debugging — Track down issues in your Hytale mods

Related

Creds

Support

License

MIT

Project description from CurseForge.

Pick your setup

Fivemanage Logger releases for each Hytale build.

Choose the version and loader you play, then open the matching release.

1 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Fivemanage Logger releases and Hytale builds

3 of 3 releases match

Looking for an older file? The official CurseForge project page is in Resources.