Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…tions into NR-346280
  • Loading branch information
dsankaraganti committed Jan 20, 2025
2 parents 3d07918 + c05afe4 commit 5ff75ee
Show file tree
Hide file tree
Showing 48 changed files with 2,037 additions and 125 deletions.
144 changes: 144 additions & 0 deletions entity-types/autoflows-workflow/dashboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
{
"name": "Autoflow Overview",
"description": null,
"pages": [
{
"name": "Autoflow Overview",
"description": null,
"widgets": [
{
"title": "Workflows Started",
"layout": {
"column": 1,
"row": 1,
"width": 6,
"height": 4
},
"visualization": {
"id": "viz.line"
},
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"legend": {
"enabled": true
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT COUNT(*) FROM Log where autoflow.runId IS NOT NULL \nFACET autoflow.name\nWHERE message like '[INFO] - Workflow: % has started'\nSINCE 1 hour ago limit max TIMESERIES auto"
}
],
"platformOptions": {
"ignoreTimeRange": false
},
"thresholds": [
{
"isLabelVisible": true
}
],
"yAxisLeft": {
"zero": true
},
"yAxisRight": {
"zero": true
}
}
},
{
"title": "Steps Started",
"layout": {
"column": 7,
"row": 1,
"width": 6,
"height": 4
},
"visualization": {
"id": "viz.line"
},
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"legend": {
"enabled": true
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT COUNT(*) as 'Steps' \nFROM Log where autoflow.runId IS NOT NULL \nWHERE message LIKE '[INFO] - Workflow: % Step % has started'\nSINCE 1 hour AGO LIMIT MAX TIMESERIES AUTO"
}
],
"platformOptions": {
"ignoreTimeRange": false
},
"thresholds": [
{
"isLabelVisible": true
}
],
"yAxisLeft": {
"zero": true
},
"yAxisRight": {
"zero": true
}
}
},
{
"title": "Recent Autoflow Run",
"layout": {
"column": 1,
"row": 5,
"width": 6,
"height": 4
},
"visualization": {
"id": "viz.table"
},
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT *\nFROM Log\nWHERE autoflow.runId IS NOT null\nSINCE 10 minutes AGO"
}
],
"platformOptions": {
"ignoreTimeRange": false
}
}
},
{
"title": "Audit Events",
"layout": {
"column": 7,
"row": 5,
"width": 6,
"height": 4
},
"visualization": {
"id": "viz.table"
},
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"nrqlQueries": [
{
"accountId": 0,
"query": "FROM NrAuditEvent SELECT * SINCE 1 hour ago"
}
],
"platformOptions": {
"ignoreTimeRange": false
}
}
}
]
}
]
}
4 changes: 3 additions & 1 deletion entity-types/autoflows-workflow/definition.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
domain: AUTOFLOWS
type: WORKFLOW

dashboardTemplates:
newRelic:
template: dashboard.json
configuration:
entityExpirationTime: MANUAL
alertable: true
19 changes: 0 additions & 19 deletions entity-types/ext-fluentbit/definition.yml

This file was deleted.

Loading

0 comments on commit 5ff75ee

Please sign in to comment.