-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does'nt report the timer values in the influx #68
Comments
I haven't used this reporter myself. Feel free to offer a pull request with a fix and I'll gladly merge it |
A quick change in Timer Documentation instead of test_calls it should be just alias name when you are using with statement
Output: 0.10001015663146973 |
Your InfluxReporter is passing a registry to the constructor but the measured code is not creating timers from this registry. Since you explicitly created a timer in this registry
If you use the with style and reference a timer from the registry it will work: ` from time import sleep
|
Thanks 👍 @bitchkat |
Hi,
I am using the influx reporter when I run timer function there insertion in record with time but all the values are null, I can see mean value of the function using getmean() but there is no reflection of the timer values in influx DB. The code I am using is given below
The text was updated successfully, but these errors were encountered: