{"id":67954,"date":"2026-06-04T00:08:47","date_gmt":"2026-06-03T21:08:47","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/"},"modified":"2026-06-04T00:08:47","modified_gmt":"2026-06-03T21:08:47","slug":"fabricexporter","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/","title":{"rendered":"FabricExporter"},"content":{"rendered":"<p># FabricExporter<\/p>\n<p>![](https:\/\/img.shields.io\/github\/license\/ruscalworld\/fabric-exporter)<br \/>\n![](https:\/\/img.shields.io\/github\/actions\/workflow\/status\/ruscalworld\/fabric-exporter\/gradle.yml?branch=master)<\/p>\n<p>Fabric mod that adds a Prometheus exporter with general metrics of your server.<\/p>\n<p>![Grafana Dashboard](https:\/\/grafana.com\/api\/dashboards\/14492\/images\/10444\/image)<\/p>\n<p>&#8212;<\/p>\n<p>It&#8217;s a server-side mod that exposes metrics of your Fabric server in Prometheus format.<br \/>\nSo, it requires you to have at least Prometheus installed to collect provided metrics.<br \/>\nI recommend also using Grafana to visualize data.<\/p>\n<p>If you want to get TPS and MSPT metrics, you should also install Spark as mod for your Fabric server.<\/p>\n<p>## Exposed metrics<\/p>\n<p>Here is a list of metrics that are collected by FabricExporter.<\/p>\n<p>* Metrics collected by Minecraft doesn&#8217;t require anything, but may cause errors when running on old Minecraft versions<br \/>\n* Metrics collected by Spark require Spark to be installed<\/p>\n<p>You can disable any of these metrics in [config](src\/main\/resources\/config\/exporter.properties).<\/p>\n<p>| Prometheus name                 | Description                                        | Config property              | Collected by   |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `minecraft_loaded_chunks`       | Amount of currently loaded chunks on server        | `enable-loaded-chunks`       | Minecraft      |<br \/>\n| `minecraft_total_loaded_chunks` | Amount of total loaded chunks on server            | `enable-total-loaded-chunks` | Minecraft      |<br \/>\n| `minecraft_mspt`                | Count of milliseconds per tick (MSPT)              | `enable-mspt`                | Spark          |<br \/>\n| `minecraft_tps`                 | Count of ticks per second (TPS)                    | `enable-tps`                 | Spark          |<br \/>\n| `minecraft_players_online`      | Amount of currently online players on your server  | `enable-players-online`      | FabricExporter |<br \/>\n| `minecraft_entities`            | Amount of currently loaded entities on your server | `enable-entities`            | FabricExporter |<br \/>\n| `minecraft_handshakes`          | Count of handshake requests                        | `enable-handshakes`          | FabricExporter |<\/p>\n<p>## Getting started<\/p>\n<p>To use this mod you should have at least Fabric server and Prometheus installed.<\/p>\n<p>### Installing mod<\/p>\n<p>1. Download the mod from Releases page.<br \/>\n2. Drop downloaded mod jar to the `mods` folder.<br \/>\n3. Start your server to generate config file.<br \/>\n4. Open `config\/exporter.properties`, ensure that `server-port` value is an open port that can be accessed by your Prometheus and change it if required.<br \/>\n5. Restart the server if you made changes in config.<\/p>\n<p>### Configuring Prometheus<\/p>\n<p>1. Open your Prometheus config file (it located at `\/etc\/prometheus\/prometheus.yml` by default).<br \/>\n&#8220;`bash<br \/>\nsudo nano \/etc\/prometheus\/prometheus.yml<br \/>\n&#8220;`<br \/>\n2. Add FabricExporter endpoint to the `scrape_configs` section.<br \/>\nDon&#8217;t forget to replace `127.0.0.1` with address of your server and `25585` with port specified in `server-port` property in `exporter.properties` file.<br \/>\n&#8220;`YAML<br \/>\n&#8211; job_name: &#8216;fabric&#8217;<br \/>\n  static_configs:<br \/>\n    &#8211; targets: [&#8216;127.0.0.1:25585&#8217;]<br \/>\n&#8220;`<br \/>\n3. Restart Prometheus service.<br \/>\n&#8220;`bash<br \/>\nsudo service prometheus restart<br \/>\n&#8220;`<\/p>\n<p>### Importing Grafana dashboard<br \/>\nIf you want to use Grafana, you can use my dashboard as template.<br \/>\nI assume that you have already created a Prometheus data source in Grafana.<br \/>\nSo, let&#8217;s import dashboard for FabricExporter.<\/p>\n<p>1. Log in to your Grafana and go to `Create -> Import` tab.<br \/>\n2. Type `14492` in &#8220;Import via grafana.com&#8221; field and click &#8220;Load&#8221;.<br \/>\n3. On the next page change settings as you wish and click &#8220;Import&#8221;.<\/p>\n<p>## Configuring<\/p>\n<p>After your server starts, FabricExporter will create `exporter.properties` file in the `config` folder.<br \/>\nYou should use this file to configure the mod.<br \/>\nIn this file you can see some general settings and metrics settings.<\/p>\n<p>### General settings<\/p>\n<p>| Property | Description | Default value |<br \/>\n| &#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8211; | &#8212;&#8212;&#8212;&#8212;- |<br \/>\n| `server-port` | Port on what the web server will listen for requests | `25585` |<br \/>\n| `update-interval` | Interval between gauge metrics updates in milliseconds | `1000` |<br \/>\n| `use-spark` | If set to `false`, FabricExporter will be independent from Spark | `true` |<\/p>\n<p>### Metrics settings<\/p>\n<p>You can disable any metric that registered via MetricRegistry (all metrics by default) using `exporter.properties` file.<br \/>\nNames of properties consist of `enable` and metric name without prefix and `_` replaced with `-`.<br \/>\nFor example, if you want to disable `minecraft_players_online`, you should set `enable-players-online` to `false`.<br \/>\nYou can also see list of available properties in &#8220;Exposed metrics&#8221; section.<br \/>\nIf you can&#8217;t find property for some metrics, you can manually add it.<br \/>\nAll metrics are enabled by default.<\/p>\n<p>## License<br \/>\nMIT license. Read more in [LICENSE](LICENSE)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Fabric mod that adds a Prometheus exporter with general metrics of your server<\/p>\n","protected":false},"featured_media":67955,"template":"","meta":{"_minecraft_slug":"fabricexporter","_minecraft_project_id":"dbVXHSlv","_minecraft_author":"ruscalworld","_minecraft_license":"MIT","_minecraft_downloads":33538,"_minecraft_follows":60,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"fabricexporter.zip","_minecraft_size_bytes":27277123,"_minecraft_version_count":20,"_minecraft_updated_at":"2026-05-16T15:13:56.230685Z","_minecraft_date_created":"2021-05-25T19:54:54.789493Z","_minecraft_date_modified":"2026-03-31T15:50:14.341312Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/fabricexporter","_minecraft_icon_attachment_id":67955,"_minecraft_imported_at":"2026-06-03T21:08:47+00:00","_minecraft_import_hash":"769338c081978d89419727b6c778f422","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,92],"mod_loader":[99],"minecraft_version":[48,49,50,51,54,57,36,60,94,62,37,40,41,73,74,38,78,79,80,81,82,83],"class_list":["post-67954","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-utility","mod_loader-fabric","minecraft_version-1-16-5","minecraft_version-1-17","minecraft_version-1-17-1","minecraft_version-1-18","minecraft_version-1-19","minecraft_version-1-19-3","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-4","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>FabricExporter - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FabricExporter - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Fabric mod that adds a Prometheus exporter with general metrics of your server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/\",\"name\":\"FabricExporter - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fabricexporter-icon-359b56acfa1306ccd0fadbfb6ae8d1785bc27163_96.webp\",\"datePublished\":\"2026-06-03T21:08:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fabricexporter-icon-359b56acfa1306ccd0fadbfb6ae8d1785bc27163_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fabricexporter-icon-359b56acfa1306ccd0fadbfb6ae8d1785bc27163_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/fabricexporter\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"FabricExporter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FabricExporter - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/","og_locale":"en_US","og_type":"article","og_title":"FabricExporter - Minecraft","og_description":"Fabric mod that adds a Prometheus exporter with general metrics of your server","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/","name":"FabricExporter - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/fabricexporter-icon-359b56acfa1306ccd0fadbfb6ae8d1785bc27163_96.webp","datePublished":"2026-06-03T21:08:47+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/fabricexporter-icon-359b56acfa1306ccd0fadbfb6ae8d1785bc27163_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/fabricexporter-icon-359b56acfa1306ccd0fadbfb6ae8d1785bc27163_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/fabricexporter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"FabricExporter"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/67954","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/67955"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=67954"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=67954"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=67954"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=67954"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}