Skip to content

Commit

Permalink
fix: fix error-count metric
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Podkolzin committed Aug 7, 2023
1 parent 9f52d43 commit b2a7dbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public IEnumerable<IMetric> GetMetrics()

public Task<IEnumerable<IMetric>> CalculateAsync(IExecutionResultStore store, CancellationToken cancellationToken)
{
var result = new[] { new SimpleMetric("live-error-count", _errorCount) };
var result = new[] { new SimpleMetric("error-count", _errorCount) };
return Task.FromResult<IEnumerable<IMetric>>(result);
}
}

0 comments on commit b2a7dbe

Please sign in to comment.