Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Updated Interface dashboard time intervals
Browse files Browse the repository at this point in the history
  • Loading branch information
DustinBragg authored and lmprice committed Mar 23, 2020
1 parent ee17ee5 commit daf10a2
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
},
{
"params": [],
"type": "sum"
"type": "mean"
}
]
],
Expand Down Expand Up @@ -160,7 +160,7 @@
"measurement": "interface",
"orderByTime": "ASC",
"policy": "downsample_retention",
"query": "SELECT sum(\"ds_combinedResponseTime\") FROM \"downsample_retention\".\"interface\" WHERE (\"sys_name\" =~ /^$System$/) AND $timeFilter AND time < now() - 1w GROUP BY time($__interval), \"channel_type\" fill(none)",
"query": "SELECT mean(\"ds_combinedResponseTime\") FROM \"downsample_retention\".\"interface\" WHERE (\"sys_name\" =~ /^$System$/) AND $timeFilter AND time < now() - 1w GROUP BY time($__interval), \"channel_type\" fill(none)",
"rawQuery": true,
"refId": "B",
"resultFormat": "time_series",
Expand All @@ -174,7 +174,7 @@
},
{
"params": [],
"type": "sum"
"type": "mean"
}
]
],
Expand Down Expand Up @@ -275,7 +275,7 @@
"groupBy": [
{
"params": [
"$__interval"
"5s"
],
"type": "time"
},
Expand Down Expand Up @@ -324,7 +324,7 @@
"groupBy": [
{
"params": [
"$__interval"
"5s"
],
"type": "time"
},
Expand All @@ -344,7 +344,7 @@
"measurement": "interface",
"orderByTime": "ASC",
"policy": "downsample_retention",
"query": "SELECT sum(\"ds_combinedThroughput\") FROM \"downsample_retention\".\"interface\" WHERE (\"sys_name\" =~ /^$System$/) AND $timeFilter AND time < now() - 1w GROUP BY time($__interval), \"channel_type\" fill(none)",
"query": "SELECT sum(\"ds_combinedThroughput\") FROM \"downsample_retention\".\"interface\" WHERE (\"sys_name\" =~ /^$System$/) AND $timeFilter AND time < now() - 1w GROUP BY time(5s), \"channel_type\" fill(none)",
"rawQuery": true,
"refId": "B",
"resultFormat": "time_series",
Expand Down Expand Up @@ -459,7 +459,7 @@
"groupBy": [
{
"params": [
"$__interval"
"5s"
],
"type": "time"
},
Expand Down Expand Up @@ -514,7 +514,7 @@
"groupBy": [
{
"params": [
"$__interval"
"5s"
],
"type": "time"
},
Expand All @@ -534,7 +534,7 @@
"measurement": "interface",
"orderByTime": "ASC",
"policy": "downsample_retention",
"query": "SELECT sum(\"ds_combinedIOps\") FROM \"downsample_retention\".\"interface\" WHERE (\"sys_name\" =~ /^$System$/ AND \"interface_id\" =~ /^$Interface$/) AND $timeFilter AND time < now() - 1w GROUP BY time($__interval), \"channel_type\" fill(none)",
"query": "SELECT sum(\"ds_combinedIOps\") FROM \"downsample_retention\".\"interface\" WHERE (\"sys_name\" =~ /^$System$/ AND \"interface_id\" =~ /^$Interface$/) AND $timeFilter AND time < now() - 1w GROUP BY time(5s), \"channel_type\" fill(none)",
"rawQuery": true,
"refId": "B",
"resultFormat": "time_series",
Expand Down

0 comments on commit daf10a2

Please sign in to comment.