Metrics exporter for Pterodactyl
Project description
Pterodactyl Exporter
Please use the Discussion for Support rather than the Issues.
A python script that exports performance metrics from Pterodactyl Panel 1.x via the Client API, converts the data to the correct format and provides a prometheus target.
This can be used for time series monitoring of Pterodactyl game servers and visualization with Grafana.
Feel free to try this script and submit an issue if needed.
How to install
What you need:
- Linux server (should run on Windows as well, but is only tested in a linux environment)
- Prometheus
- Python (3.10)
- Pterodactyl client API key
- Service account with read only is recommended
- You only need to set
Backup->Readas permission for the account to the server you want to monitor.
Run as Pterodactyl Server
- Download the Egg JSON from
egg/egg-pterodactyl-exporter.jsonor the releases - Import the Egg into the Nest of your choice
- Create the server from the egg and fill in the required config values
- Run the server
Run as service
Installed as user "prometheus":
- To install with pipx:
pipx install pterodactyl-exporter
- To install with pip (not recommended, could break system dependencies):
pip install pterodactyl-exporter
-
Create directory
pterodactyl_exporter. -
Create the config file
config.ymlin that directory (set the values as needed, it's recommended to use https):
host: panel.example.com
host_port: # This is the port of the panel (optional)
port: 9531 #Standard port for the exporter
api_key: APIKEY_APIKEYAPIKEYAPIKEY
https: true
ignore_ssl: false
server_list_type: owner
query_interval: 10 # Interval in seconds between each query to the Pterodactyl panel (default: 10)
- Create systemd service
/etc/systemd/system/pterodactyl_exporter.service:
[Unit]
Description=Prometheus Server
After=network-online.target
[Service]
User=prometheus
Restart=on-failure
ExecStart=pterodactyl_exporter \
--config-file=/home/prometheus/pterodactyl_exporter/config.yml
[Install]
WantedBy=multi-user.target
-
Enable and start the service.
-
Add a job configuration:
- job_name: 'pterodactyl_exporter'
static_configs:
- targets: ['localhost:9531']
- To get the Grafana dashboard, import id
16575. Alternatively download the JSON file from the releases.
To show and hide servers from being monitored, just remove the read permission of the service account on that Server
Run with Docker
-
Create a folder named
pterodactyl_exporter -
Download the config file from GitHub:
curl -fsSL -o config.yml https://raw.githubusercontent.com/LOENS2/pterodactyl_exporter/master/config.example.yml
-
Create a folder named
docker -
Download the
docker-compose.ymlinto that folder:
curl -fsSL -o docker-compose.yml https://raw.githubusercontent.com/LOENS2/pterodactyl_exporter/master/docker/docker-compose.yml
- Run the container:
docker-compose up -d
Run manually
Only meant for testing purposes, not recommended for production use!
- Clone the project:
git clone https://github.com/LOENS2/pterodactyl_exporter.git
- Change to the cloned directory
cd pterodactyl_exporter
- Install dependencies:
python -m pip install -r requirements.txt
- Run with python:
python -m pterodactyl_exporter.pterodactyl_exporter --config-file=config.example.yml
Troubleshooting
You can view the output with (Time is UTC):
sudo journalctl -u pterodacyl_exporter.service -b --since "2024-12-14 13:45:27"
Post any stacktraces as an Issue.
With special thanks to @grimsi for helping me with docker.
© LOENS2 2023
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pterodactyl_exporter-1.0.7.tar.gz.
File metadata
- Download URL: pterodactyl_exporter-1.0.7.tar.gz
- Upload date:
- Size: 27.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54cd9644892206745eb436c855562fc8c7a194ce9a63516b5e3e5a8f451fa189
|
|
| MD5 |
b295b8e4ea5d6ea584edc6806f3cbc07
|
|
| BLAKE2b-256 |
db5ae462804379ee6e16f9d8d6958aff00d7d5f4bb3a96d74eeceb0b19862f43
|
File details
Details for the file pterodactyl_exporter-1.0.7-py3-none-any.whl.
File metadata
- Download URL: pterodactyl_exporter-1.0.7-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
410f3a589ca96e609fe7b8794531d09d245838b71ce21f871d633a41c3bf89d5
|
|
| MD5 |
91300b4efabf030f7cd146c013554582
|
|
| BLAKE2b-256 |
8737a492426ff95b3061c11cb4852090e67b91c4ad8b8596cf4c60ed4930a25b
|