ZerocIce latency metrics collector
Project description
Simple Example
from ice_latency_metrics_collector import latency_metrics_factory
import MyIceModule
with_latency_metrics = latency_metrics_factory(enabled=True)
@with_latency_metrics
class MyServant(MyIceModule.MyServant):
# This method send timings to statsd
def my_proxyed_method(self):
# your implementation
pass
# This method don't send timings to statsd
def my_custom_internal_method(self):
# your implementation
pass
Statsd configuration
config param in factory will be passed to StatsClient constructor
latency_metrics_factory(enabled=True, config=dict(host='statsd'))
Logging configuration
You need to use standard python logging configuration file.
latency_metrics_factory(enabled=True, logging_conf_path=your_logging_conf_path)
Disable or enable
Example with env
import os
METRICS_ENABLED = os.environ.get('METRICS_ENABLED', 'false').lower() == 'true'
latency_metrics_factory(enabled=METRICS_ENABLED)
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
File details
Details for the file ice-latency-metrics-collector-0.1.0a7.tar.gz
.
File metadata
- Download URL: ice-latency-metrics-collector-0.1.0a7.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57cb4ee0142ad6741e059eeca6b6be2d1840f7b59ad7961f45d1ae6e23edf544 |
|
MD5 | 70251d44bddb22863258cf883c192df6 |
|
BLAKE2b-256 | 44ae353d9b883988092aae1ebd62775b829ef7da8ea3dec15a316418c14d93f7 |