Skip to content
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

change the % latency to avg latency in top file operation panel #525

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@
"value": "current"
}],
"datasource": "",
"description": "The Top File Operations panel displays the top 5 FOP (file operations) with the highest % latency, wherein the % latency is the fraction of the FOP response time that is consumed by the FOP.",
"description": "The Top File Operations panel displays the top 5 FOP (file operations) with the highest Avg. latency, wherein the Avg. latency is the fraction of the FOP response time that is consumed by the FOP.",
"fontSize": "100%",
"id": 29,
"links": [],
Expand All @@ -1307,7 +1307,7 @@
"type": "number",
"unit": "short"
}, {
"alias": "% Latency",
"alias": "Avg. Latency",
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
Expand All @@ -1319,11 +1319,11 @@
"pattern": "Current",
"thresholds": [],
"type": "number",
"unit": "short"
"unit": "µs"
}],
"targets": [{
"refId": "A",
"target": "limit(sortByMaxima(groupByNode(tendrl.names.$cluster_id.volumes.$volume_name.nodes.*.bricks.*.fop.*.hits, 10, 'maxSeries')), 5)"
"target": "limit(sortByMaxima(groupByNode(tendrl.names.$cluster_id.volumes.$volume_name.nodes.*.bricks.*.fop.*.latencyAvg, 10, 'maxSeries')), 5)"
}],
"title": "Top File Operations",
"transform": "timeseries_aggregations",
Expand Down