Skip to content

Commit

Permalink
[currency] - fix metric name (#1470)
Browse files Browse the repository at this point in the history
* fix metric name

Signed-off-by: Pierre Tessier <[email protected]>

* fix metric name

Signed-off-by: Pierre Tessier <[email protected]>

---------

Signed-off-by: Pierre Tessier <[email protected]>
  • Loading branch information
puckpuck authored Mar 21, 2024
1 parent 298c930 commit 7560436
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ the release.
([#1460](https:/open-telemetry/opentelemetry-demo/pull/1460))
* [frontendproxy] remove deprecated start_child_span option
([#1469](https:/open-telemetry/opentelemetry-demo/pull/1469))
* [currency] fix metric name
([#1470](https:/open-telemetry/opentelemetry-demo/pull/1470))
* [frontend] disable instrumentation-fs library
([#1473](https:/open-telemetry/opentelemetry-demo/pull/1473))

Expand Down
2 changes: 1 addition & 1 deletion src/currencyservice/src/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ int main(int argc, char **argv) {
initTracer();
initMeter();
initLogger();
currency_counter = initIntCounter(name, version);
currency_counter = initIntCounter("app.currency", version);
logger = getLogger(name);
RunServer(port);

Expand Down

0 comments on commit 7560436

Please sign in to comment.