v1.0.2
·
1393 commits
to development
since this release
Release v1.0.2
🐞 Fixes
- Fix duration for SQL query log and metrics.
- Update metrics value format and histogram buckets of time duration from
seconds
tomicroseconds
for following datasources:- Redis:
- Previous:
{.001, .003, .005, .01, .02, .03, .05, .1, .2, .3, .5, .75, 1, 2, 3, 5, 10, 30}
- Now:
{50, 75, 100, 125, 150, 200, 300, 500, 750, 1000, 1250, 1500, 2000, 2500, 3000}
- Previous:
- SQL:
- Previous:
{.001, .003, .005, .01, .02, .03, .05, .1, .2, .3, .5, .75, 1, 2, 3, 5, 10, 30}
- Now:
{50, 75, 100, 125, 150, 200, 300, 500, 750, 1000, 2000, 3000, 4000, 5000, 7500, 10000}
- Previous:
- Redis:
- Add missing metrics for PubSub :
- app_pubsub_publish_total_count: Number of total publish operations.
- app_pubsub_publish_success_count: Number of successful publish operations.
- app_pubsub_subscribe_total_count: Number of total subscribe operations.
- app_pubsub_subscribe_success_count: Number of successful subscribe operations.