Skip to content

Commit

Permalink
fix: Change HISTORICAL metric demiension to string
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley committed Jul 16, 2023
1 parent 5a026f3 commit 678934f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exports[`Metrics writes the block height for an indexer function 1`] = `
},
{
"Name": "HISTORICAL",
"Value": false,
"Value": "false",
},
],
"MetricName": "INDEXER_FUNCTION_LATEST_BLOCK_HEIGHT",
Expand Down
2 changes: 1 addition & 1 deletion indexer-js-queue-handler/metrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default class Metrics {
},
{
Name: "HISTORICAL",
Value: isHistorical,
Value: isHistorical.toString(),
},
],
Unit: "None",
Expand Down

0 comments on commit 678934f

Please sign in to comment.