Skip to content

Commit

Permalink
fix: review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 committed Nov 27, 2019
1 parent d8e1c9b commit 7e9fcf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/opentelemetry-metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const counter = meter.createCounter('metric_name', {
description: "Example of a counter"
});

const labels = Meter.labels({ pid: process.pid });
const labels = meter.labels({ pid: process.pid });

// Create a Handle associated with specified label values.
const handle = counter.getHandle(labels);
Expand All @@ -50,7 +50,7 @@ const gauge = meter.createGauge('metric_name', {
description: "Example of a gauge"
});

const labels = Meter.labels({ pid: process.pid });
const labels = meter.labels({ pid: process.pid });

// Create a Handle associated with specified label values.
const handle = gauge.getHandle(labels);
Expand Down

0 comments on commit 7e9fcf6

Please sign in to comment.