| [ Web Proxy ] |
| Viewing: https://prometheus.github.io/client_python/multiprocess/ | [Back] [Original] |
Prometheus client libraries presume a threaded model, where metrics are shared across workers. This doesn’t work so well for languages such as Python where it’s common to have processes rather than threads to handle large workloads.
To handle this the client library can be put in multiprocess mode. This comes with a number of limitations:
MultiProcessCollector
may cause duplicate metrics to be exportedsupport_collectors_without_names=True and it but might be inefficient.set_functionpid labelThere’s several steps to getting this working:
1. Deployment:
The PROMETHEUS_MULTIPROC_DIR environment variable must be set to a directory
that the client library can use for metrics. This directory must be wiped
between process/Gunicorn runs (before startup is recommended).
This environment variable should be set from a start-up shell script, and not directly from Python (otherwise it may not propagate to child processes).
Note: on Windows Subsystem for Linux (WSL), set PROMETHEUS_MULTIPROC_DIR to a
Linux-native filesystem path (e.g. /tmp or /home/<user>) rather than a
Windows-mounted path (e.g. /mnt/c/...). On Windows-mounted filesystems the
per-process metric files can be written with an incorrect internal offset,
causing the collector to silently read no data.
2. Metrics collector:
The application must initialize a new CollectorRegistry, and store the
multi-process collector inside. It is a best practice to create this registry
inside the context of a request to avoid metrics registering themselves to a
collector used by a MultiProcessCollector. If a registry with metrics
registered is used by a MultiProcessCollector duplicate metrics may be
exported, one for multiprocess, and one for the process serving the request.
from prometheus_client import multiprocess
from prometheus_client import generate_latest, CollectorRegistry, CONTENT_TYPE_LATEST, Counter
MY_COUNTER = Counter('my_counter', 'Description of my counter')
# Expose metrics.
def app(environ, start_response):
registry = CollectorRegistry(support_collectors_without_names=True)
multiprocess.MultiProcessCollector(registry)
data = generate_latest(registry)
status = '200 OK'
response_headers = [
('Content-type', CONTENT_TYPE_LATEST),
('Content-Length', str(len(data)))
]
start_response(status, response_headers)
return iter([data])
3. Gunicorn configuration:
The gunicorn configuration file needs to include the following function:
from prometheus_client import multiprocess
def child_exit(server, worker):
multiprocess.mark_process_dead(worker.pid)
4. Metrics tuning (Gauge):
When Gauges are used in multiprocess applications,
you must decide how to handle the metrics reported by each process.
Gauges have several modes they can run in, which can be selected with the multiprocess_mode parameter.
pid (the label is added internally).Prepend ’live’ to the beginning of the mode to return the same result but only considering living processes (e.g., ’liveall, ’livesum’, ’livemax’, ’livemin’, ’livemostrecent’).
from prometheus_client import Gauge
# Example gauge
IN_PROGRESS = Gauge("inprogress_requests", "help", multiprocess_mode='livesum')
Collector that aggregates metrics written by all processes in the multiprocess directory.
| Parameter | Type | Default | Description |
|---|---|---|---|
registry | CollectorRegistry | required | Registry to register with. Pass a registry created inside the request context to avoid duplicate metrics. |
path | Optional[str] | None | Path to the directory containing the per-process metric files. Defaults to the PROMETHEUS_MULTIPROC_DIR environment variable. |
Raises ValueError if path is not set or does not point to an existing directory.
from prometheus_client import multiprocess, CollectorRegistry
def app(environ, start_response):
registry = CollectorRegistry(support_collectors_without_names=True)
multiprocess.MultiProcessCollector(registry)
...
To use a custom path instead of the environment variable:
collector = multiprocess.MultiProcessCollector(registry, path='/var/run/prom')
Removes the per-process metric files for a dead process. Call this from your process manager
when a worker exits to prevent stale live* gauge values from accumulating.
| Parameter | Type | Default | Description |
|---|---|---|---|
pid | int | required | PID of the process that has exited. |
path | Optional[str] | None | Path to the multiprocess directory. Defaults to the PROMETHEUS_MULTIPROC_DIR environment variable. |
Returns None. Only removes files for live* gauge modes (e.g. livesum, liveall); files
for non-live modes are left in place so their last values remain visible until the directory is
wiped on restart.
# Gunicorn config
from prometheus_client import multiprocess
def child_exit(server, worker):
multiprocess.mark_process_dead(worker.pid)
| Web Proxy Viewer | New URL | Original Page |