Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion content/integrations/extensions/new-relic.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ Get started with our New Relic dashboard starter kit to start monitoring Knock m

1. Visit New Relic's [all capabilities page](https://one.newrelic.com/all-capabilities) and click on "Dashboards"
2. In the top-right corner, click "Import dashboard"
3. Click the button below to copy the dashboard JSON, and paste it into the New Relic page when prompted.
3. Click the button below to copy the dashboard JSON
4. Paste the updated JSON into the New Relic modal
5. Replace all instances of `"accountIds":[0]` in the JSON with `"accountIds":[YOUR_ACCOUNT_ID]`, substituting your actual New Relic account ID. Your New Relic account ID can be found by either locating it in the URL after `/accounts/` or by opening the user menu in the bottom-left corner and navigating to **Administration** > **Access management** > **Accounts** to view IDs for all accounts you have access to.
6. Click "Import dashboard"

<CopyableText
label="Copy Dashboard Starter Kit JSON"
Expand Down
22 changes: 11 additions & 11 deletions content/integrations/extensions/new_relic_dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.message_delivered.total) "
}
Expand Down Expand Up @@ -55,7 +55,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.workflow_recipient_run.total)"
}
Expand Down Expand Up @@ -84,7 +84,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "SELECT \n(sum(knock.workflow_recipient_run_error.total) +\n sum(knock.message_delivered_error.total) + \n sum(knock.integration_action_run_error.total)) FROM Metric "
}
Expand Down Expand Up @@ -132,7 +132,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.workflow_recipient_run.total) TIMESERIES FACET exec_mode, workflow"
}
Expand Down Expand Up @@ -164,7 +164,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.workflow_recipient_run_error.total) TIMESERIES FACET exec_mode, reason, step_type, workflow"
}
Expand Down Expand Up @@ -220,7 +220,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.message_delivered.total) TIMESERIES FACET workflow, channel"
}
Expand Down Expand Up @@ -260,7 +260,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.message_delivered_error.total) TIMESERIES FACET channel"
}
Expand Down Expand Up @@ -292,7 +292,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.message_delivered_retryable_error.total) TIMESERIES FACET channel"
}
Expand Down Expand Up @@ -348,7 +348,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.integration_event_received.total) TIMESERIES FACET source_type"
}
Expand Down Expand Up @@ -380,7 +380,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.integration_action_run.total) TIMESERIES FACET source_type, action"
}
Expand Down Expand Up @@ -419,7 +419,7 @@
"nrqlQueries": [
{
"accountIds": [
4330601
0
],
"query": "FROM Metric SELECT sum(knock.integration_action_run_error.total) TIMESERIES FACET source_type, action"
}
Expand Down
Loading