Skip to content

Commit

Permalink
fix: pipeline error
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilHammarstrand committed Nov 8, 2021
1 parent 133c2ca commit 73e95a9
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions quickstarts/python/fastapi/dashboards/fastAPI.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "fastAPI",
"description": null,
"permissions": "PUBLIC_READ_WRITE",
"pages": [
{
"name": "fastAPI Overview",
Expand Down Expand Up @@ -38,7 +39,7 @@
"nrqlQueries": [
{
"accountId": 0,
"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"
"query": "FROM Transaction SELECT count(*) as 'Total transactions', average(duration) as 'Average duration (s)', percentile(duration, 90) as 'Slowest 10%/duration' SINCE 1 week ago"
}
],
"thresholds": []
Expand All @@ -57,7 +58,7 @@
},
"title": "",
"rawConfiguration": {
"text": "\n![Errors](https://raw.githubusercontent.com/newrelic/newrelic-quickstarts/main/quickstarts/python/fasatapi/images/Errors.png)\n"
"text": "\n![Errors](https://raw.githubusercontent.com/newrelic/newrelic-quickstarts/main/quickstarts/python/fastapi/images/Errors.png)\n"
},
"linkedEntityGuids": null
},
Expand Down Expand Up @@ -96,7 +97,7 @@
},
"title": "",
"rawConfiguration": {
"text": "\n![VM metrics](https://raw.githubusercontent.com/newrelic/newrelic-quickstarts/main/quickstarts/python/fastapi/images/VM-metrics.png)\n"
"text": "\n![VM Metrics](https://raw.githubusercontent.com/newrelic/newrelic-quickstarts/main/quickstarts/python/fastapi/images/VM-metrics.png)\n"
},
"linkedEntityGuids": null
},
Expand All @@ -122,25 +123,25 @@
"thresholds": []
},
"linkedEntityGuids": null
},
{
"visualization": {
"id": "viz.markdown"
},
"layout": {
"column": 1,
"row": 10,
"height": 3,
"width": 4
},
"title": "",
"rawConfiguration": {
"text": "## More details available on Application Monitoring (APM) page.\\nDive deeper on transaction details, distributed tracing, related entities, anomalies, errors\\and more.\n\n[Open the Explorer.](https://onenr.io/0rVRVGaNWja)"
},
"linkedEntityGuids": null
}
]
},
{
"visualization": {
"id": "viz.markdown"
},
"layout": {
"column": 5,
"row": 10,
"height": 3,
"width": 5
},
"title": "",
"rawConfiguration": {
"text": "## More details available on Application Monitoring (APM) page.\nDive deeper on transaction details, distributed tracing, related entities, anomalies, errors\nand more. [Open the Explorer.](https://onenr.io/0rVRVGaNWja)"
},
"linkedEntityGuids": null
},
{
"name": "Errors",
"description": null,
Expand Down Expand Up @@ -393,7 +394,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM Transaction SELECT count(*), 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"
"query": "FROM Transaction SELECT count(*), average(duration) as 'Average/duration in sec', percentile(duration, 90) as 'Slowest 10%/duration' WHERE appName LIKE '%' SINCE 1 WEEK AGO"
}
],
"thresholds": []
Expand Down

0 comments on commit 73e95a9

Please sign in to comment.