Metrics collection daemon and exporter
Project description
pollect - python data collection daemon
pollect is a daemon for collecting system and application metrics in periodical intervals. (similar to collectd). It's designed to require very little dependencies and to be easily customizable.
Architecture
------------ ----------
| executor | -- result of sources --> | writer |
------------ ----------
1
| Calls sources to probe data
n
---------------
| source |
---------------
pollect uses executors which contain sources for probing the data.
For persisting the data writers are used. They can be defined globally (for all executors)
or on a per executor level.
By default, the tick time is defined globally, but can be changed on an executor level.
Usage
pip install pollect
pollect --config config.yml [--dry-run]
Note: You can use either json or yml files for configuration.
Docker
Place your config.[json|yml] and any custom sources into your working directory and run
docker run -v $(pwd):/pollect -p 8000:8000 davidgiga1993/pollect:latest
Config
Here is an example for collecting the load average every 30 seconds as well as sampling the response time of google every 2 min and exporting it as prometheus metrics
---
tickTime: 30
threads: 4
writers:
- type: Prometheus
port: 8000
executors:
- collection: pollect
# An executor can als have its own writer
# writer: ...
sources:
- type: LoadAvg
- collection: slowerMetrics
tickTime: 120
sources:
- type: Http # See Http below for more details
url: https://google.com
labels: # Additional labels/tags for the metrics
# It is also possible to access env variables anywhere
# in the config
system: prod
home: ${HOME}
A more advanced configuration sample can be found in the pollect.[json|yml] file.
Metric names
The metric names are automatically build out of the collection, source and value name. Example:
If no dedicated name is specified for a source, it's type is used.
Pattern: collectionName.sourceType[.sourceName].valueName
| Collection | Source type | Source name (optional) | Resulting metric name |
|---|---|---|---|
| pollect | Http | pollect.Http | |
| pollect | Http | test | pollect.Http.test |
| pollect | Process | pollect.Process.load_percent pollect.Process.virtual_memory |
Depending on the writer, the . separators might be replaced with _.
Sources
A source collects data in regular intervals. Depending on the source there are multiple configuration parameters available.
Certain sources might need additional dependencies.
The following parameters are available for all sources:
| Param | Desc |
|---|---|
| name | Name of the metric (prefix) |
| labels | Dict of static labels |
Http response time Http
Measures the http response time in milliseconds
| Param | Desc |
|---|---|
| url | Url to the web service. Can be a list of strings as well (the url will be added as label) |
| timeout | Timeout in seconds (default 15) |
| statusCode | The expected status code (default any non error) |
| proxy | Http proxy which should be used (defaults to none respecting environment variables. Set to '' to use no proxy regardless of environment) |
Disk usage DiskUsage
Disk usage statistics.
Load average LoadAvg
System load average. Linux only
Memory usage MemoryUsage
System memory usage
Process stats Process
Information about one or more processes
| Param | Desc |
|---|---|
| name | Name of the metric |
| procRegex | Name of the process(es) - Regex |
| memory | True to enable memory metrics (default true) |
| load | True to enable cpu load metrics (default true) |
Interface Interface
Collects NIC statistics.
| Param | Desc |
|---|---|
| includeTotal | Enables incremental counter data |
| include | Explicitly includes nics. Can be empty |
| exclude | Excludes nics. Can be empty |
IO IO
Collects IO statistics.
| Param | Desc |
|---|---|
| include | Explicitly includes disks. Can be empty |
| exclude | Excludes disks. Can be empty |
HDD smart data SmartCtl
Wrapper for the linux smartctl tool. Collects SMART data
| Param | Desc |
|---|---|
| attributes | Name of smart attributes which should be included |
| devices | List of regex for matching disks which should be included |
Sensors Sensors
Wrapper for the linux sensors utility. Collects sensor data such as temps and voltages
| Param | Desc |
|---|---|
| include | Name of chips which should be included. Can be empty |
| exclude | Name of chips which should be excluded. Can be empty |
| useBaseUnits | Set to False to report the raw values in their reported unit (for example mV instead of V) |
Kubernetes Network Traffic K8sNamespaceTraffic
Monitors the per-namespace traffic.
See Kubernetes Network Insights for more details.
DNS server statistics Bind
Bind DNS server statistics.
| Param | Desc |
|---|---|
| url | URL to the bind statistics |
| views | Views which should be included |
SNMP SnmpGet
Wrapper for the snmpget binary, supports snmp v1 and v3
type: SnmpGet
name: Procurve
# Host which should be contacted
host: 10.1.100.1
# v1 only: Community string (public by default)
communityString: public
# v3 section:
snmpVersion: 3 # 1 by default
username: test # Security name
authPassPhrase: ${AUTH_PASS} # authentication protocol pass phrase
authProtocol: SHA # Can be MD5 or SHA (default)
privacyPassPhrase: ${PRIV_PASS} # privacy protocol pass phrase
privacyProtocol: SHA # Can be MD5 or SHA (default)
# Metrics which should be collected
# Each metric can query one or more oids
metrics:
# Name of the metric
- name: throughput
# Processing mode:
# - undefined (default): No processing
# - rate: Computes the change per second, compensating for value overflows
mode: rate
# OID which should be probed
oid: iso.3.6.1.2.1.16.1.1.1.4.1
# It is also possible to define ranges
- name: interface_link_state
# The parameter in the oid will be replaced with the range number
oid: iso.3.6.1.2.1.2.2.1.5.${if}
range:
from: 1
to: 10 # From and to are inclusive
label: "if" # The label will be attached to the metric
Plex server Plex
Collects plex mediaserver statistics. This requires local IP addresses to be allowed without authentication.
| Param | Desc |
|---|---|
| url | URL to plex. Use the IP of the NIC instead of localhost |
Plex server Zfs
Provides simple ZFS pool sizing and performance metrics.
Fritzbox WAN Fritzbox
Connects to the fritzbox api and collects WAN statistics.
Viessmann API Viessmann
Collects sensor data from viessmann heatpumps
| Param | Desc |
|---|---|
| user | Username of viessmann account |
| password | Password of account |
These information are only required for the first data collection. Afterwards a viessmann_token.json file is created
to cache the oauth credentials.
Homematic IP HomematicIp
Collects temperature and humidity data from homematic IP.
| Param | Desc |
|---|---|
| authToken | Auth token |
| accessPoint | Access point id |
SMA Energy Meter SmaEnergyMeter
Collects data from the SMA Home Manager 2.0. The data is received via multicast from the meter. If this doesn't work for you, there is also a possibility to configure the meter to unicast the values directly to your machine.
| Param | Desc |
|---|---|
| hostIp | The primary IP address of the host running pollect. Required for multicast |
SMA PV Modbus SmaPvModbus
Collects data from SMA Photovoltaik inverters. Requires tcp modbus to be enabled on the inverted.
Requires the pymodbus dependency.
| Param | Desc |
|---|---|
| host | IP or hostname of the inverted |
| port | Optional: modbus port, 502 by default |
TP-LINK EAP TpLinkEap
Collects wifi statistics of the TP-LINK EAP series devices. This uses the rest api of the device. Note that the devices only support one session at a time, meaning you will be logged out from the web UI in regular intervals.
| Param | Desc |
|---|---|
| url | URL to the admin UI |
| user | Username |
| password | Password |
Openhab Openhab
Collects the values of all channels of all items in openhab. This contains more data than the original metrics exporter of openhab (since it doesn't include all items).
| Param | Desc |
|---|---|
| url | URL to openhab |
Zodiac Pool Cleaner ZodiacPool
Provides metrics about the current state and remaining duration of the cleaning cycle. This source has been tested with the Zodiac Alpha 63 IQ and might also work with other Zodiac devices.
| Param | Desc |
|---|---|
| user | Username |
| password | Password |
Audi MMI MMI
Connects to the audi MMI backend and collects data. Note: This pacakge is currently broken due to API changes.
| Param | Desc |
|---|---|
| credentials | Path to the credentials.json |
| vin | VIN of the car that should be crawled |
Google Play Developer Console Gdc
Provides app statistics from the google play developer console.
Important each fetch will call the google cloud storage api to check for updates so make sure to call is less frequent (every 30min or so).
Sample config:
{
"type": "Gdc",
// Name of the bucket - this can be found at the bottom of the bulk export page in the GDC
"bucketName": "pubsite_prod_rev_1234",
"apps": [
{ // All apps for which the statistics should be crawled
"package": "my.app.package",
"name": "My App"
}
],
// Key file for the service account which has read access to the GDC
"keyFile": "api-project-1234.json",
// Name of the folder where the crawled files should be stored
"dbDir": "db"
}
Apple appstore connect AppStoreConnect
Collects download statistics from apple
{
"type": "AppStoreConnect",
"keyId": "ASDH123123",
"keyFile": "my_api_key.p8",
"issuerId": "asdasd-123123asd-asd12312-asd",
"vendorNumber": "882223",
"dbDir": "db"
}
Http Ingress source HttpIngress
This source starts a simple http webserver and where you can post metrics to. It's intended if you want to push metrics to pollect, instead of using the default pull probes.
- type: HttpIngress
name: Ingress
port: 9005 # Listener port
metrics: # You can define multiple metrics
sample_metric: # Name of the metric
type: counter # Optional, gauge by default, counter will cause the value to increment by X every time
labels: # Labels for this metric
- host
You can update the metrics using a simple http json post:
curl -X POST http://pollect:9005 \
-H 'Content-Type: application/json' \
--data-binary @- << EOF
{
"metrics": {
"sample_metric": {
"value": 124
"labels": {
"host": "my-hostname"
}
}
}
}
EOF
Certificate source Certificate
Returns the expiry date of a https certificate. Requires openssl binary and pyOpenSSL.
- type: Certificate
name: cert
url: https://google.com
EVCC Evcc
Exposes the values shown in the EVCC web-ui as metrics.
| Param | Desc | |
|---|---|---|
| host | Host and port of the EVCC instance (e.g. localhost:7070) |
PMCC source Pmcc
Exports metrics of the "Porsche Mobile Charge Connect" device such as state of charge and charge rate.
- type: Pmcc
host: "iccpd-..."
Writers
A writer represents the destination where the collected data is written to.
Dry run DryRun
Prints the collected data to the stdout
Prometheus http exporter Prometheus
Exports the data via a prometheus endpoint. The port can be configured using
portas configuration:
writers:
- type: Prometheus
port: 9001
Https support PrometheusSsl
Pollect has a custom prometheus exporter which supports https.
writers:
- type: PrometheusSsl
port: 8000
key: key.key
cert: cert.pem
Otel http exporter Otel
Exports/Sends the data via OTLP (OpenTelemetry Protocol) over HTTP to a collector.
writers:
- type: Otel
You can use the common otel environment variables to configure the exporter.
export OTEL_EXPORTER_OTLP_HEADERS='Authorization=Basic xxx=='
export OTEL_EXPORTER_OTLP_METRICS_ENDPOINT='http://localhost:4318/v1/metrics'
MQTT Mqtt
Exports metrics to an MQTT broker:
writers:
- type: Mqtt
host: 127.0.0.1
port: 1883
user: mqtt
password: password
# Define which metrics should be sent via mqtt
# If no patterns are defined, all metrics will be sent
includePattern:
- "pollect\\.esphome/temperature.+"
- "pollect\\.smaenergymeter/wirkleistung_.+/phase/0"
- "pollect\\.smapvmodbus/.+"
The includePattern is matched against the absolute path of any collected value.
The path is formatted using:
collectionName.sourceName/valueName[/labelName/labelValue]
Dependency Management
By default pollect requires minimal dependencies to keep the package lightweight. Certain sources require additional packages to be installed to work correctly.
For this pollect provides a command to print all required additional dependencies for a given configuration:
pollect --config config.yml --dependencies
This will print the dependencies in the requirements.txt format.
Multithreading
By default, pollect executes all sources of a collection in parallel with 5 threads.
Different collections are executed in separate threads as well, meaning that multiple long-running probes in one
collection can't block another collection.
If the writer supports partial writes (for example prometheus) the result of each source will be immediately
available.
Writers which do not support partial writes will receive the data once all probes have completed.
Extensions
This example shows how to add your own sources to pollect
Source
extensions/SingleRandom.py:
# Single random value with parameter
class SingleRandomSource(Source):
def __init__(self, data):
super().__init__(data)
self.max = data.get('max')
def _probe(self):
return random() * self.max
extensions/MultiRandomSource.py:
# Multiple random values
class MultiRandomSource(Source):
def _probe(self):
return {'a': random(), 'b': random()}
config.yml:
tickTime: 30
threads: 4
writers:
- type: Prometheus
port: 8000
executors:
- collection: example
sources:
- type: "extensions.SingleRandom",
max: 100
- type: "extensions.MultiRandom"
}
A similar principle is used for the writers. Take a look at the sourcesand writers folders for more examples.
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 pollect-1.2.3.tar.gz.
File metadata
- Download URL: pollect-1.2.3.tar.gz
- Upload date:
- Size: 82.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68948484fb19e57a2222a7157d8b532b21c1411f7592fdfbca5f6cef4466c9bf
|
|
| MD5 |
0bace65fea352918286f6f36ce8fbad3
|
|
| BLAKE2b-256 |
5ac5b767a639acc9aaee6fc4db0e3f53bed86b3441c187676d658c32fa489d63
|
File details
Details for the file pollect-1.2.3-py3-none-any.whl.
File metadata
- Download URL: pollect-1.2.3-py3-none-any.whl
- Upload date:
- Size: 107.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53459f9b4ce7c5f9720d0d2e3bdd788bdc44589b24b350c27887d87dc5af14ec
|
|
| MD5 |
1ced757098f0d50b1faa635ffc4d3feb
|
|
| BLAKE2b-256 |
cee82d7d8f95934db82884d88ee4807af495b97a888087ca53351232ea386b81
|