ProcessesΒΆ

This plugin gathers info about the total number of processes and groups them by status (zombie, sleeping, running, etc.)

Configuration:
# Get the number of processes and group them by status
[[inputs.processes]]
# no configuration
Example Output:
{
    "fields": {
        "blocked": 0,
        "dead": 0,
        "idle": 0,
        "paging": 0,
        "running": 2,
        "sleeping": 150,
        "stopped": 0,
        "total": 152,
        "total_threads": 219,
        "unknown": 0,
        "zombies": 0
    },
    "name": "processes",
    "tags": {
        "host": "vslems01",
        "id": "vslems01",
        "type": "server"
    },
    "timestamp": 1576004480
}