Skip to content

Commit

Permalink
DPLT-1044 Change HISTORICAL dimension to EXECUTION_TYPE (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley authored Jul 16, 2023
1 parent 5a026f3 commit 9a657a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions indexer-js-queue-handler/__snapshots__/metrics.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ exports[`Metrics writes the block height for an indexer function 1`] = `
"Value": "dev",
},
{
"Name": "HISTORICAL",
"Value": false,
"Name": "EXECUTION_TYPE",
"Value": "real-time",
},
],
"MetricName": "INDEXER_FUNCTION_LATEST_BLOCK_HEIGHT",
Expand Down
4 changes: 2 additions & 2 deletions indexer-js-queue-handler/metrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export default class Metrics {
Value: process.env.STAGE,
},
{
Name: "HISTORICAL",
Value: isHistorical,
Name: "EXECUTION_TYPE",
Value: isHistorical ? "historical" : "real-time",
},
],
Unit: "None",
Expand Down

0 comments on commit 9a657a3

Please sign in to comment.