Skip to content

Commit

Permalink
Merge pull request #6572 from keegoid-nr/patch-10
Browse files Browse the repository at this point in the history
bug fixes for dashboard example JSON
  • Loading branch information
zuluecho9 committed Mar 11, 2022
2 parents 2fbb770 + c8e3d24 commit c96df95
Showing 1 changed file with 13 additions and 13 deletions.
Expand Up @@ -885,7 +885,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET result SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET result SINCE 2 days ago"
}
]
},
Expand Down Expand Up @@ -913,7 +913,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET result TIMESERIES AUTO SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET result TIMESERIES AUTO SINCE 2 days ago"
}
],
"yAxisLeft": {
Expand Down Expand Up @@ -1020,7 +1020,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET type SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET type SINCE 2 days ago"
}
]
},
Expand Down Expand Up @@ -1048,7 +1048,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET type TIMESERIES AUTO SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' FACET type TIMESERIES AUTO SINCE 2 days ago"
}
],
"yAxisLeft": {
Expand Down Expand Up @@ -1130,7 +1130,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'SUCCESS' FACET type SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'SUCCESS' FACET type SINCE 2 days ago"
}
]
},
Expand Down Expand Up @@ -1158,7 +1158,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'SUCCESS' FACET type TIMESERIES AUTO SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'SUCCESS' FACET type TIMESERIES AUTO SINCE 2 days ago"
}
],
"yAxisLeft": {
Expand Down Expand Up @@ -1240,7 +1240,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'FAILED' FACET type SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'FAILED' FACET type SINCE 2 days ago"
}
]
},
Expand Down Expand Up @@ -1268,7 +1268,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration/1e3)+average(nr.executionDuration/1e3) AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'FAILED' FACET type TIMESERIES AUTO SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)' WHERE location NOT LIKE 'AWS_%' AND result = 'FAILED' FACET type TIMESERIES AUTO SINCE 2 days ago"
}
],
"yAxisLeft": {
Expand Down Expand Up @@ -1320,7 +1320,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration/1e3) AS 'avg job duration (s)',uniqueCount(monitorId) AS 'monitor count' WHERE type = 'SIMPLE' AND location NOT LIKE 'AWS_%' TIMESERIES AUTO SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)',uniqueCount(monitorId) AS 'monitor count' WHERE type = 'SIMPLE' AND location NOT LIKE 'AWS_%' TIMESERIES AUTO SINCE 2 days ago"
}
],
"yAxisLeft": {
Expand Down Expand Up @@ -1348,7 +1348,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT latest(monitorId) AS 'latest monitor id',latest(type),average((nr.internalQueueDuration+nr.executionDuration)/1e3) AS 'avg job duration (s)',count(*),max(timestamp) AS 'last occurred' WHERE type = 'SIMPLE' AND result = 'FAILED' AND location NOT LIKE 'AWS_%' FACET error LIMIT 5 SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT latest(monitorId) AS 'latest monitor id',latest(type),average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)',count(*),max(timestamp) AS 'last occurred' WHERE type = 'SIMPLE' AND result = 'FAILED' AND location NOT LIKE 'AWS_%' FACET error LIMIT 5 SINCE 2 days ago"
}
]
},
Expand Down Expand Up @@ -1397,7 +1397,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration/1e3) AS 'avg job duration (s)',uniqueCount(monitorId) AS 'monitor count' WHERE type != 'SIMPLE' AND location NOT LIKE 'AWS_%' TIMESERIES AUTO SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)',uniqueCount(monitorId) AS 'monitor count' WHERE type != 'SIMPLE' AND location NOT LIKE 'AWS_%' TIMESERIES AUTO SINCE 2 days ago"
}
],
"yAxisLeft": {
Expand Down Expand Up @@ -1425,7 +1425,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT latest(monitorId) AS 'latest monitor id',latest(type),average((nr.internalQueueDuration+nr.executionDuration)/1e3) AS 'avg job duration (s)',count(*),max(timestamp) AS 'last occurred' WHERE type != 'SIMPLE' AND result = 'FAILED' AND location NOT LIKE 'AWS_%' FACET error LIMIT 5 SINCE 2 days ago"
"query": "FROM SyntheticCheck SELECT latest(monitorId) AS 'latest monitor id',latest(type),average(nr.internalQueueDuration+nr.executionDuration)/1e3 AS 'avg job duration (s)',count(*),max(timestamp) AS 'last occurred' WHERE type != 'SIMPLE' AND result = 'FAILED' AND location NOT LIKE 'AWS_%' FACET error LIMIT 5 SINCE 2 days ago"
}
]
},
Expand Down Expand Up @@ -1784,7 +1784,7 @@ The following Private Minion dashboard example JSON can be imported to your acco
"nrqlQueries": [
{
"accountId": 1,
"query": "FROM SyntheticCheck SELECT average((nr.nr.internalQueueDuration+nr.nr.executionDuration)/1e3) WHERE type != 'SIMPLE' AND location NOT LIKE 'AWS%' AND result = 'FAILED' FACET location,cases(WHERE error NOT LIKE '%timeout%' AS 'job duration (s)', WHERE error LIKE '%timeout%' AS 'job timeout (s)') SINCE 2 days ago TIMESERIES AUTO"
"query": "FROM SyntheticCheck SELECT average(nr.internalQueueDuration+nr.executionDuration)/1e3 WHERE type != 'SIMPLE' AND location NOT LIKE 'AWS%' AND result = 'FAILED' FACET location,cases(WHERE error NOT LIKE '%timeout%' AS 'job duration (s)', WHERE error LIKE '%timeout%' AS 'job timeout (s)') SINCE 2 days ago TIMESERIES AUTO"
}
],
"yAxisLeft": {
Expand Down

0 comments on commit c96df95

Please sign in to comment.