-
Notifications
You must be signed in to change notification settings - Fork 68
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
Example Dasboard #40
Comments
This was very handy |
@Paxa The "Per Minute" graphs didn't work for me until I changed the query to use |
Here's another dashboard that I created and I hope someone will enjoy this :D It also uses pm2-metrics for some configurations (which can be removed easy). The JSON configuration
|
@thealphadollar One question about your chart. How do you get correct Apdex scores? In your template you are using the buckets of the histogram to measure the number of requests. But since a request (e.g. 300ms) will falls into a smaller bucket (e.g. 1s) and also into the bigger bucket (e.g. 1.5s) your calculations can result in an apdex score > 1. Simple example. You only have one request that is served in 300ms, satisfied is 1s, tolerated is 1.5s. Then you get (1+ (1/2) ) / 1 = 1.5. The correct Apdex calculation would be (1 + 0/2) / 1 = 1. Please correct me if I'm wrong, but that makes no sense to me. I'm trying to work on a different solution, and will post it here if I find one :) |
@thealphadollar Another thing i noticed ist that for the request Duration diagram you labeled |
Did you by any chance found one? |
May be somebody will find it useful
chart.json
The text was updated successfully, but these errors were encountered: