metrology icon indicating copy to clipboard operation
metrology copied to clipboard

A library to easily measure what's going on in your python.

Results 8 metrology issues
Sort by recently updated
recently updated
newest added

This is currently based on https://github.com/cyberdelia/metrology/pull/38, but that needn't be the case. There are a couple elements here. First, there is a bug in the existing code. Calling `Metrology.gauge('name', my_gauge_instance)`...

Metrics are important, but shouldn't cause a program to exit if the graphite server goes away.

I am struggling a bit with the counter. I am aware that I might not be expressing my thoughts as clearly as I thought, but I am trying to think...

The following code: ``` rate = Meter() for i in range(int(65/0.05)): rate.mark() time.sleep(0.05) print(rate.one_minute_rate) print(rate.mean_rate) ``` yields: ``` 12.744700289590714 19.916839105797937 ``` Why does the one-minute moving average differs from the...

Thanks for an excellent looking implementation! coming from the Java world, I've been looking for one like this, but for some reason it isn't as visible as scales - though...

This results in `carbon-cache` printing the following line to log: ``` [listener] invalid line received from client 127.0.0.1:50219, ignoring ```

When the remote end closes the connection (e.g. carbon-cache restarts), `sendall()` throws SIGPIPE: ``` Exception in thread Thread-1: Traceback (most recent call last): File "/usr/lib64/python2.7/threading.py", line 810, in __bootstrap_inner self.run()...

Hello again, I'm developing Flask extension that collects some metrics from the Flask app. Flask extension that collects metrics using Metrology and push them to Graphite - https://gist.github.com/diyan/8829149 It's supposed...