Skip to content

CometBackup/comet-collectd-exporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Collectd Exporter for Comet Server

@CometBackup on Twitter MIT License

This is a script for collectd to export metrics from a running Comet Server instance over the Comet Server HTTP API. It runs under the Exec plugin and requires no additional Python library dependencies.

Requirements

  • Python 3.6 or later

Installation instructions

  1. Ensure in /etc/collectd/collectd.conf that the default TypesDB file is loaded:
TypesDB "/usr/share/collectd/types.db"

Without this, we would override the types instead of adding to them.

  1. Add this content to /etc/collectd/collectd.conf.d/cometserver.conf:
TypesDB "/usr/local/comet-collectd-exporter/types.db"
LoadPlugin exec

<Plugin exec>
	Exec "nobody" "/usr/bin/python3" "/usr/local/comet-collectd-exporter/cometserver.py" "http://127.0.0.1:8060/" "admin" "admin" "cometserver-example"
</Plugin>

Then reload the collectd service.

Generated metrics

Metric Type Description
comet_user_count Gauge The total number of user accounts on the server
comet_liveconn_count Gauge The total current number of live-connections from devices
comet_liveconn_currentversion_count Gauge The total current number of connections from devices on the current version of Comet
comet_total_jobs_48h Gauge The total number of jobs (started or running) within the last 48 hours
comet_uptime Gauge The uptime of the Comet Server, in seconds
comet_selfbackup_age Gauge The time since the last successful Server Self-Backup, in seconds
comet_version_number Gauge The version number of the Comet Server, expressed as a 6-digit number
comet_total_api_time Gauge The time required to pull information from the Comet Server API, in milliseconds

Debugging

Run collectd in the foreground:

collectd -f

Run the plugin directly:

COLLECTD_HOSTNAME=localhost COLLECTD_INTERVAL=30 python3 cometserver.py http://127.0.0.1:8060/ admin admin debug

About

Collectd Exporter for Comet Server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages