Skip to main content

Multiprocess-safe metrics

Project description

mpmetrics

mpmetrics implements metrics suitable for use with OpenMetrics. It provides multiprocess-safe replacements for prometheus_client's Counter, Gauge, Summary, Histogram, and Enum. To use it, just import these classes from mpmetrics instead of from prometheus_client:

from mpmetrics import Summary
from prometheus_client import start_http_server
import multiprocessing
import random
import time

# Create a metric to track time spent and requests made.
REQUEST_TIME = Summary('request_processing_seconds', 'Time spent processing request')

# Decorate function with metric.
@REQUEST_TIME.time()
def process_request(t):
    """A dummy function that takes some time."""
    time.sleep(t)

# Create function for subprocess
def generate_requests():
    while True:
        process_request(random.random())

if __name__ == '__main__':
    # Start up the server to expose the metrics.
    start_http_server(8000)
    # Generate some requests from two processes
    multiprocessing.Process(target=generate_requests).start()
    generate_requests()

Navigate to http://localhost:8000/metrics to view the results. For more examples, look in the examples/ directory or check out the documentation.

Features

  • Completely thread- and process-safe.
  • All operations are atomic. Metrics will never be partially updated.
  • Updating metrics is lock-free on architectures with 64-bit atomics. On architectures with 32-bit atomics, we transparently fall back to locking implementations.
  • Exemplars are supported, but they are locking.
  • Possibly better performance than prometheus_metrics, but probably not a big contributor to overall performance.
  • All multiprocessing start methods are supported.

Users of prometheus_flask_exporter can import mpmetrics.flask instead.

Compatibility

The following behaviors differ from prometheus_client:

  • Labeled metrics cannot be removed or cleared.
  • Info metrics are not implemented. Use prometheus_client.Info instead.
  • Using a value of None for registry is not supported.
  • multiprocessing_mode is not supported. Gauges have a single series with one value.

These are unlikely to ever be addressed (except Info support) due to the fundamental architectural changes necessary to support multiprocessing.

Limitations

The following limitations apply to this library

  • Only Unix is supported (due to use of pthreads). Linux and macOS are tested.
  • The python interpreter stats will only be from the current process.

Notes

  • Metric labels should not be user-generated in order to prevent a denial-of-service attack due to memory exhaustion. For example, instead of using a "path" label (provided by the user), use an "endpoint" label (provided by the application).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpmetrics-0.1.0.tar.gz (60.5 kB view details)

Uploaded Source

File details

Details for the file mpmetrics-0.1.0.tar.gz.

File metadata

  • Download URL: mpmetrics-0.1.0.tar.gz
  • Upload date:
  • Size: 60.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.1 pkginfo/1.8.3 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.10.10

File hashes

Hashes for mpmetrics-0.1.0.tar.gz
Algorithm Hash digest
SHA256 5c2cc074a5463311ce756ee66bb6225d516162f7943ec5e892a19449ceb38bf3
MD5 28c6d4802df4edfd6c7ae688cefb2317
BLAKE2b-256 774b81f798b797d653267c117d65efa39dbe520f110583812e68c003c504ef01

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page