Skip to content

Commit

Permalink
fix: changes in json file
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilHammarstrand committed Oct 27, 2021
1 parent 7588dbd commit 5e303ca
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions quickstarts/python/flask/dashboards/flask.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Flask",
"description": null,
"permissions": "PUBLIC_READ_WRITE",
"permissions": "",
"pages": [
{
"name": "Flask Overview",
Expand Down Expand Up @@ -39,7 +39,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM Transaction SELECT count(*) as 'Total Transactions', average(duration) as 'Average/duration in sec', percentile(duration, 90) as 'Slowest 10%/duration', percentage(count(*), WHERE error is false) AS 'Success Rate' SINCE 1 week ago"
"query": "FROM Transaction SELECT count(*) as 'Total transactions', average(duration) as 'Average duration (s)', percentile(duration, 90) as 'Slowest 10%/duration', percentage(count(*), WHERE error is false) AS 'Success rate' SINCE 1 week ago"
}
],
"thresholds": []
Expand Down Expand Up @@ -78,7 +78,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM Transaction SELECT count(*) as 'Total Transactions',percentage(count(*), WHERE error IS true) as 'Failed Transactions In %', count(*) * percentage(count(*), WHERE error IS true) / 100 as 'Failed Transactions' SINCE 1 week ago"
"query": "FROM Transaction SELECT count(*) as 'Total transactions',percentage(count(*), WHERE error IS true) as 'Failed transactions in %', count(*) * percentage(count(*), WHERE error IS true) / 100 as 'Failed transactions' SINCE 1 week ago"
}
],
"thresholds": []
Expand Down Expand Up @@ -117,7 +117,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM Metric SELECT average(apm.service.cpu.usertime.utilization) * 100 as 'Average CPU Utilization ', average(apm.service.memory.physical) as 'Average Physical Memory' WHERE appName like '%' SINCE 1 WEEK AGO"
"query": "FROM Metric SELECT average(apm.service.cpu.usertime.utilization) * 100 as 'Average CPU utilization ', average(apm.service.memory.physical) as 'Average physical memory' WHERE appName like '%' SINCE 1 WEEK AGO"
}
],
"thresholds": []
Expand Down Expand Up @@ -146,7 +146,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM Transaction SELECT count(*) as 'Total Transactions', percentage(count(*), WHERE error IS true) as 'Failed Transactions In %', count(*) * percentage(count(*), WHERE error IS true) / 100 as 'Failed Transactions' SINCE 1 week ago"
"query": "FROM Transaction SELECT count(*) as 'Total transactions', percentage(count(*), WHERE error IS true) as 'Failed transactions in %', count(*) * percentage(count(*), WHERE error IS true) / 100 as 'Failed transactions' SINCE 1 week ago"
}
],
"thresholds": []
Expand Down Expand Up @@ -176,7 +176,7 @@
}
]
},
"linkedEntityGuids": ["MjU5NDA4MnxWSVp8REFTSEJPQVJEfDI2NjE5MTE"]
"linkedEntityGuids": null
},
{
"visualization": {
Expand Down Expand Up @@ -221,7 +221,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM TransactionError SELECT latest(timestamp) as 'Latest Error' SINCE last week "
"query": "FROM TransactionError SELECT latest(timestamp) as 'Latest error' SINCE last week "
}
],
"thresholds": []
Expand Down Expand Up @@ -274,7 +274,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM Metric SELECT average(apm.service.cpu.usertime.utilization) * 100 as 'Average CPU Utilization ', average(apm.service.memory.physical) as 'Average Physical Memory' WHERE appName like '%' SINCE 1 WEEK AGO"
"query": "FROM Metric SELECT average(apm.service.cpu.usertime.utilization) * 100 as 'Average CPU utilization ', average(apm.service.memory.physical) as 'Average physical memory' WHERE appName like '%' SINCE 1 WEEK AGO"
}
],
"thresholds": []
Expand Down Expand Up @@ -323,7 +323,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT average(`apm.service.memory.heap.used`) as 'Memory Heap Used' FROM Metric WHERE appName LIKE '%' SINCE 30 MINUTES AGO TIMESERIES"
"query": "SELECT average(`apm.service.memory.heap.used`) as 'Memory heap used' FROM Metric WHERE appName LIKE '%' SINCE 30 MINUTES AGO TIMESERIES"
}
]
},
Expand Down Expand Up @@ -378,7 +378,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM Transaction SELECT count(*), average(duration) as 'Average/duration in sec', percentile(duration, 90) as 'Slowest 10%/duration', percentage(count(*), WHERE error is false) AS 'Success Rate' SINCE 1 WEEK AGO"
"query": "FROM Transaction SELECT count(*), average(duration) as 'Average duratin (s)', percentile(duration, 90) as 'Slowest 10%/duration', percentage(count(*), WHERE error is false) AS 'Success rate' SINCE 1 WEEK AGO"
}
],
"thresholds": []
Expand Down Expand Up @@ -407,7 +407,7 @@
}
]
},
"linkedEntityGuids": ["MjU5NDA4MnxWSVp8REFTSEJPQVJEfDIzNzUyMjY"]
"linkedEntityGuids": null
},
{
"visualization": {
Expand Down

0 comments on commit 5e303ca

Please sign in to comment.