-
Notifications
You must be signed in to change notification settings - Fork 38
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
fix: units, duplicate graphs, use more flexible variables #454
Conversation
@@ -193,21 +195,22 @@ | |||
"text": {}, | |||
"textMode": "auto" | |||
}, | |||
"pluginVersion": "8.0.6", | |||
"pluginVersion": "7.5.6", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same 7.5.4
} | ||
}, | ||
"pluginVersion": "8.0.6", | ||
"targets": [ | ||
{ | ||
"exemplar": false, | ||
"expr": "svm_nfs_read_avg_latency{datacenter=\"$Datacenter\",cluster=\"$Cluster\",svm=~\"$SVM\",nfsv=\"v3\"} / 1000", | ||
"expr": "avg(svm_nfs_read_avg_latency{datacenter=\"$Datacenter\",cluster=\"$Cluster\",svm=~\"$SVM\",nfsv=\"v3\"})", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$NFSv
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks a lot for noticing this!
"hide": false, | ||
"interval": "", | ||
"legendFormat": "Read", | ||
"refId": "Read Latency" | ||
}, | ||
{ | ||
"exemplar": false, | ||
"expr": "svm_nfs_write_avg_latency{datacenter=\"$Datacenter\",cluster=\"$Cluster\",svm=~\"$SVM\",nfsv=\"v3\"} / 1000", | ||
"expr": "avg(svm_nfs_write_avg_latency{datacenter=\"$Datacenter\",cluster=\"$Cluster\",svm=~\"$SVM\",nfsv=\"v3\"})", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
* fix: units, duplicate graphs, use more flexible variables * fix: titles, missing read-write ops for nfsv4 * fix: nfs version to variable
fix: units, duplicate graphs, use more flexible variables (#454)
fixed a number of issues mentioned in my comment here