Skip to content

Releases: sladkoff/minecraft-prometheus-exporter

v2.3.0

08 Jan 23:36

Choose a tag to compare

Special thanks to all new and old contributors ⭐

Fixed

  • #46: Inaccuracies in metrics mc_entities_total and mc_villagers_total
  • #53: Opt-out of legacy material support to improve performance

Changes

  • #52: Update Jetty to fix security vulnerabilities

v2.2.0

16 May 16:26

Choose a tag to compare

Special thanks to all new and old contributors ⭐

Added

  • #33: New villager metric mc_villagers_total
  • #41: New server tick duration metrics mc_tick_duration_*
  • #42: gzip transport support

Fixed

  • #23: TPS inaccuracy in mc_tps

v2.1.1

12 Apr 19:43

Choose a tag to compare

Fixed

  • #38: Exception NoSuchMethodError during metric collection on server versions < 1.14

v2.1.0

23 Mar 13:39

Choose a tag to compare

Added

  • New JVM threads metrics mc_jvm_threads_*
  • New JVM GC metrics mc_jvm_gc_*

Changed

  • Metric mc_entities_total has new labels type, alive, spawnable.
  • Metric mc_jvm_memory has new label allocated.

Removed

  • Metric mc_living_entities_total -> use mc_entities_total instead.

v2.0.1

03 Jan 16:05

Choose a tag to compare

Fixed

  • Error Failed to read player statistic: Label cannot be null. on metrics player_online and player_statistic.
    If the server doesn't return a name for a player, the player's UID is used as label instead. (#17)

Added

  • Labels uid/player_uid for metrics player_online and player_statistic in addition to the player name.

v2.0.0

29 Dec 01:11

Choose a tag to compare

Changed

  • ⚠️ [Breaking] Metric mc_players_total no longer has a state label. It exports only the number of unique players now.
    Use mc_players_online_total for online player count.

Added

  • Metrics can be enabled individually via config enable_metrics. Since the format of the config.yml has changed it is advised to delete your existing file to
    generate a new clean one.

v1.3.0

28 May 18:18

Choose a tag to compare

Added

  • Add host config property

Changed

  • Listen on localhost interface by default (Important! You'll have to set the host option if your Prometheus not running on the same host)

v1.2.0

05 Nov 22:31

Choose a tag to compare

Add option to export player statistics.

v1.1.0

18 Mar 17:59

Choose a tag to compare

Export tickrate (TPS)

v1.0.1

19 Feb 00:34

Choose a tag to compare

Addresses concurrency issues

- The asynchronous Jetty Thread now accesses the Bukkit API via the BukkitScheduler in order to hopefully fix concurrency problems. References #3.
- A 404 is now returned on unsupported request URI's.