satisfactory-savegame-prometheus-exporter
v2.2.2
Published
A Prometheus exporter for savegame metrics from Satisfactory
Downloads
506
Maintainers
Readme
satisfactory-savegame-prometheus-exporter
A Prometheus Exporter that generates metrics from local or remote Satisfactory save game files.
Usage
The SAVEGAME_LOCATION
environment variable can be a URL or a local path to a file or a folder. If a folder is supplied, it will recursively find the latest file.
While you can run the bin
scripts with npm exec cli <savegamelocation>
or npm exec express <savegamelocation>
, the recommended approach is to use Docker as shown below.
docker run \
--rm \
-p 9772:9772 \
-e SAVEGAME_LOCATION=https://example.com/satisfactory-savegame.sav \
sleavely/satisfactory-savegame-prometheus-exporter:latest
With Docker Compose:
savegame_metrics_exporter:
image: sleavely/satisfactory-savegame-prometheus-exporter:latest
restart: unless-stopped
volumes:
- ./config/saved/server:/savegames:ro
environment:
- HOST=0.0.0.0
- PORT=9772
- SAVEGAME_LOCATION=/savegames
networks:
- grafana
hostname: satisfactory-savegame-metrics
On Windows you can mount your savegame directory by referring to %LocalAppData%
, like this:
docker run \
--rm \
-p 9772:9772 \
-v %LocalAppData%\FactoryGame\Saved\SaveGames\:/savegames:ro \
-e SAVEGAME_LOCATION=/savegames \
sleavely/satisfactory-savegame-prometheus-exporter:latest
Then, in your Prometheus configuration scrape_configs
:
- job_name: "satisfactory-savegame-exporter"
# How often metrics will be collected.
# Recommended value is half of your autosave interval.
scrape_interval: 5m
static_configs:
# Only one of these targets is really necessary, but it depends on
# how you've configured networking for the exporter container and Prometheus.
- targets:
- 'localhost:9772'
- 'host.docker.internal:9772'
- 'satisfactory-savegame-metrics:9772'
Grafana Dashboard
grafana.json contains a dashboard configuration for metrics using this exporter in tandem with Shinigami92/satisfactory-server-prometheus-exporter
Related
- wolveix/satisfactory-server - A Docker image for running a Satisfactory Dedicated Server.
- Shinigami92/satisfactory-server-prometheus-exporter - Prometheus Exporter for the metrics exposed from the Satisfactory Dedicated Server
- etothepii4/satisfactory-file-parser - TypeScript Module to parse Satisfactory save files
- greeny/SatisfactoryTools - Satisfactory Tools for planning and building the perfect base.