Skip to content

Commit

Permalink
chore: Fix account ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jcountsNR committed Aug 16, 2024
1 parent 33b901c commit 4018188
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions entity-types/ext-databricks-cluster/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT average(spark.app.stage.executor.runTime) WHERE spark.app.stage.executor.runTime IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -70,7 +70,7 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT average(spark.app.stage.executor.cpuTime) / 1000000 WHERE spark.app.stage.executor.cpuTime IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -112,7 +112,7 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT average(spark.app.stage.jvmGcTime) WHERE spark.app.stage.jvmGcTime IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -154,7 +154,7 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT average(spark.app.stage.executor.deserializeTime) WHERE spark.app.stage.executor.deserializeTime IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -196,7 +196,7 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT average(spark.app.stage.executor.deserializeCpuTime) / 1000000 WHERE spark.app.stage.executor.deserializeCpuTime IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -238,7 +238,7 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT average(spark.app.stage.resultSerializationTime) WHERE spark.app.stage.resultSerializationTime IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -280,11 +280,11 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.inputBytes) AS 'Bytes In' WHERE spark.app.stage.inputBytes IS NOT NULL TIMESERIES"
},
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.outputBytes) AS 'Bytes Out' WHERE spark.app.stage.outputBytes IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -323,11 +323,11 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.inputRecords) AS 'Records In' WHERE spark.app.stage.inputRecords IS NOT NULL TIMESERIES"
},
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.outputRecords) AS 'Records Out' WHERE spark.app.stage.outputRecords IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -366,11 +366,11 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.shuffle.readBytes) AS 'Bytes Written' WHERE spark.app.stage.shuffle.readBytes IS NOT NULL TIMESERIES"
},
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.shuffle.writeBytes) AS 'Bytes Out' WHERE spark.app.stage.shuffle.writeBytes IS NOT NULL TIMESERIES"
}
],
Expand Down Expand Up @@ -409,11 +409,11 @@
},
"nrqlQueries": [
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.shuffle.readRecords) AS 'Records Read' WHERE spark.app.stage.shuffle.readRecords IS NOT NULL TIMESERIES"
},
{
"accountIds": [],
"accountId": 0,
"query": "FROM Metric SELECT latest(spark.app.stage.shuffle.writeRecords) AS 'Records Written' WHERE spark.app.stage.shuffle.writeRecords IS NOT NULL TIMESERIES"
}
],
Expand Down

0 comments on commit 4018188

Please sign in to comment.