├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── MapProjections.md ├── README.md ├── alertmanager-config ├── Dockerfile └── src │ ├── README.md │ ├── app │ ├── go.mod │ └── main.go │ └── templates │ └── alertmanager.yml.tmpl ├── alertmanager ├── .gitignore └── templates │ └── satisfactory.tmpl ├── docker-compose.yml ├── fakeserver ├── data │ ├── getCloudInv │ ├── getDrone │ ├── getDroneStation │ ├── getDropPod │ ├── getExplorationSink │ ├── getExtractor │ ├── getFactory │ ├── getPower │ ├── getProdStats │ ├── getResourceSink │ ├── getResourceSinkBuilding │ ├── getSessionInfo │ ├── getStorageInv │ ├── getTrainStation │ ├── getTrains │ ├── getTruckStation │ ├── getVehicles │ └── getWorldInv ├── default.conf └── metrics ├── frmcache ├── Dockerfile └── src │ ├── README.md │ ├── app │ ├── cache_worker.go │ ├── cache_worker_test.go │ ├── go.mod │ ├── go.sum │ └── main.go │ └── db │ ├── 001_create_cache_tables.sql │ ├── 002_create_cache_with_history_tables.sql │ ├── 003_drop_unique_index.sql │ ├── 004_rename_data_column.sql │ ├── 005_add_multi_server.sql │ ├── 006_rename_save_to_session.sql │ └── 007_add_cache_history_metric_index.sql ├── frmcompanion └── Dockerfile ├── grafana ├── dashboards.yml ├── dashboards │ ├── drone.json │ ├── dropPod.json │ ├── efficiencyMap.json │ ├── factoryProd.json │ ├── players.json │ ├── power.json │ ├── production.json │ ├── storage.json │ ├── train.json │ └── vehicles.json ├── datasources │ ├── postgres.yml │ └── prometheus.yml ├── grafana.ini ├── home-dashboard.json └── icons │ ├── location-arrow-alt.svg │ └── location-point.svg ├── prometheus ├── nodes │ └── node-exporter.yml ├── prometheus.yml ├── rules │ ├── power.yml │ ├── production.yml │ └── vehicles.yml └── tests │ ├── test-power.yml │ ├── test-production.yml │ └── test-vehicles.yml ├── public-dashboards ├── Drones-1731868617757.json ├── Drop Pods-1731868628555.json ├── Efficiency-1731868637133.json ├── Factory Production-1731868645695.json ├── Global Production-1737414968435.json ├── Players-1737414229797.json ├── Power-1731868661179.json ├── Storage-1737705840141.json ├── Trains-1731868675707.json └── Vehicles-1731868682381.json └── resources ├── drones.png ├── drop-pods.png ├── efficiency1.png ├── efficiency2.png ├── factory-production.png ├── factory-production2.png ├── global-production-1.png ├── global-production-2.png ├── power.png ├── power2.png ├── satisfactory-alert.png ├── storage.png ├── trains.png ├── trains2.png └── trucks.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /MapProjections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/MapProjections.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/README.md -------------------------------------------------------------------------------- /alertmanager-config/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/alertmanager-config/Dockerfile -------------------------------------------------------------------------------- /alertmanager-config/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/alertmanager-config/src/README.md -------------------------------------------------------------------------------- /alertmanager-config/src/app/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/featheredtoast/alertmanager-config 2 | 3 | go 1.18 -------------------------------------------------------------------------------- /alertmanager-config/src/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/alertmanager-config/src/app/main.go -------------------------------------------------------------------------------- /alertmanager-config/src/templates/alertmanager.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/alertmanager-config/src/templates/alertmanager.yml.tmpl -------------------------------------------------------------------------------- /alertmanager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/alertmanager/.gitignore -------------------------------------------------------------------------------- /alertmanager/templates/satisfactory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/alertmanager/templates/satisfactory.tmpl -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fakeserver/data/getCloudInv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getCloudInv -------------------------------------------------------------------------------- /fakeserver/data/getDrone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getDrone -------------------------------------------------------------------------------- /fakeserver/data/getDroneStation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getDroneStation -------------------------------------------------------------------------------- /fakeserver/data/getDropPod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getDropPod -------------------------------------------------------------------------------- /fakeserver/data/getExplorationSink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getExplorationSink -------------------------------------------------------------------------------- /fakeserver/data/getExtractor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getExtractor -------------------------------------------------------------------------------- /fakeserver/data/getFactory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getFactory -------------------------------------------------------------------------------- /fakeserver/data/getPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getPower -------------------------------------------------------------------------------- /fakeserver/data/getProdStats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getProdStats -------------------------------------------------------------------------------- /fakeserver/data/getResourceSink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getResourceSink -------------------------------------------------------------------------------- /fakeserver/data/getResourceSinkBuilding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getResourceSinkBuilding -------------------------------------------------------------------------------- /fakeserver/data/getSessionInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getSessionInfo -------------------------------------------------------------------------------- /fakeserver/data/getStorageInv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getStorageInv -------------------------------------------------------------------------------- /fakeserver/data/getTrainStation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getTrainStation -------------------------------------------------------------------------------- /fakeserver/data/getTrains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getTrains -------------------------------------------------------------------------------- /fakeserver/data/getTruckStation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getTruckStation -------------------------------------------------------------------------------- /fakeserver/data/getVehicles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getVehicles -------------------------------------------------------------------------------- /fakeserver/data/getWorldInv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/data/getWorldInv -------------------------------------------------------------------------------- /fakeserver/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/default.conf -------------------------------------------------------------------------------- /fakeserver/metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/fakeserver/metrics -------------------------------------------------------------------------------- /frmcache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/Dockerfile -------------------------------------------------------------------------------- /frmcache/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/README.md -------------------------------------------------------------------------------- /frmcache/src/app/cache_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/app/cache_worker.go -------------------------------------------------------------------------------- /frmcache/src/app/cache_worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/app/cache_worker_test.go -------------------------------------------------------------------------------- /frmcache/src/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/app/go.mod -------------------------------------------------------------------------------- /frmcache/src/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/app/go.sum -------------------------------------------------------------------------------- /frmcache/src/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/app/main.go -------------------------------------------------------------------------------- /frmcache/src/db/001_create_cache_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/db/001_create_cache_tables.sql -------------------------------------------------------------------------------- /frmcache/src/db/002_create_cache_with_history_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/db/002_create_cache_with_history_tables.sql -------------------------------------------------------------------------------- /frmcache/src/db/003_drop_unique_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/db/003_drop_unique_index.sql -------------------------------------------------------------------------------- /frmcache/src/db/004_rename_data_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/db/004_rename_data_column.sql -------------------------------------------------------------------------------- /frmcache/src/db/005_add_multi_server.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/db/005_add_multi_server.sql -------------------------------------------------------------------------------- /frmcache/src/db/006_rename_save_to_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/db/006_rename_save_to_session.sql -------------------------------------------------------------------------------- /frmcache/src/db/007_add_cache_history_metric_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcache/src/db/007_add_cache_history_metric_index.sql -------------------------------------------------------------------------------- /frmcompanion/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/frmcompanion/Dockerfile -------------------------------------------------------------------------------- /grafana/dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards.yml -------------------------------------------------------------------------------- /grafana/dashboards/drone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/drone.json -------------------------------------------------------------------------------- /grafana/dashboards/dropPod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/dropPod.json -------------------------------------------------------------------------------- /grafana/dashboards/efficiencyMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/efficiencyMap.json -------------------------------------------------------------------------------- /grafana/dashboards/factoryProd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/factoryProd.json -------------------------------------------------------------------------------- /grafana/dashboards/players.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/players.json -------------------------------------------------------------------------------- /grafana/dashboards/power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/power.json -------------------------------------------------------------------------------- /grafana/dashboards/production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/production.json -------------------------------------------------------------------------------- /grafana/dashboards/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/storage.json -------------------------------------------------------------------------------- /grafana/dashboards/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/train.json -------------------------------------------------------------------------------- /grafana/dashboards/vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/dashboards/vehicles.json -------------------------------------------------------------------------------- /grafana/datasources/postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/datasources/postgres.yml -------------------------------------------------------------------------------- /grafana/datasources/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/datasources/prometheus.yml -------------------------------------------------------------------------------- /grafana/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/grafana.ini -------------------------------------------------------------------------------- /grafana/home-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/home-dashboard.json -------------------------------------------------------------------------------- /grafana/icons/location-arrow-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/icons/location-arrow-alt.svg -------------------------------------------------------------------------------- /grafana/icons/location-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/grafana/icons/location-point.svg -------------------------------------------------------------------------------- /prometheus/nodes/node-exporter.yml: -------------------------------------------------------------------------------- 1 | - targets: 2 | - 'frmcompanion:9000' 3 | -------------------------------------------------------------------------------- /prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/prometheus/prometheus.yml -------------------------------------------------------------------------------- /prometheus/rules/power.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/prometheus/rules/power.yml -------------------------------------------------------------------------------- /prometheus/rules/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/prometheus/rules/production.yml -------------------------------------------------------------------------------- /prometheus/rules/vehicles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/prometheus/rules/vehicles.yml -------------------------------------------------------------------------------- /prometheus/tests/test-power.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/prometheus/tests/test-power.yml -------------------------------------------------------------------------------- /prometheus/tests/test-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/prometheus/tests/test-production.yml -------------------------------------------------------------------------------- /prometheus/tests/test-vehicles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/prometheus/tests/test-vehicles.yml -------------------------------------------------------------------------------- /public-dashboards/Drones-1731868617757.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Drones-1731868617757.json -------------------------------------------------------------------------------- /public-dashboards/Drop Pods-1731868628555.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Drop Pods-1731868628555.json -------------------------------------------------------------------------------- /public-dashboards/Efficiency-1731868637133.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Efficiency-1731868637133.json -------------------------------------------------------------------------------- /public-dashboards/Factory Production-1731868645695.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Factory Production-1731868645695.json -------------------------------------------------------------------------------- /public-dashboards/Global Production-1737414968435.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Global Production-1737414968435.json -------------------------------------------------------------------------------- /public-dashboards/Players-1737414229797.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Players-1737414229797.json -------------------------------------------------------------------------------- /public-dashboards/Power-1731868661179.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Power-1731868661179.json -------------------------------------------------------------------------------- /public-dashboards/Storage-1737705840141.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Storage-1737705840141.json -------------------------------------------------------------------------------- /public-dashboards/Trains-1731868675707.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Trains-1731868675707.json -------------------------------------------------------------------------------- /public-dashboards/Vehicles-1731868682381.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/public-dashboards/Vehicles-1731868682381.json -------------------------------------------------------------------------------- /resources/drones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/drones.png -------------------------------------------------------------------------------- /resources/drop-pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/drop-pods.png -------------------------------------------------------------------------------- /resources/efficiency1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/efficiency1.png -------------------------------------------------------------------------------- /resources/efficiency2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/efficiency2.png -------------------------------------------------------------------------------- /resources/factory-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/factory-production.png -------------------------------------------------------------------------------- /resources/factory-production2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/factory-production2.png -------------------------------------------------------------------------------- /resources/global-production-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/global-production-1.png -------------------------------------------------------------------------------- /resources/global-production-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/global-production-2.png -------------------------------------------------------------------------------- /resources/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/power.png -------------------------------------------------------------------------------- /resources/power2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/power2.png -------------------------------------------------------------------------------- /resources/satisfactory-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/satisfactory-alert.png -------------------------------------------------------------------------------- /resources/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/storage.png -------------------------------------------------------------------------------- /resources/trains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/trains.png -------------------------------------------------------------------------------- /resources/trains2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/trains2.png -------------------------------------------------------------------------------- /resources/trucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featheredtoast/satisfactory-monitoring/HEAD/resources/trucks.png --------------------------------------------------------------------------------