Skip to content

Commit

Permalink
fix(php): Make the PHP metrics examples easier to copy/paste (#10167)
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory authored May 27, 2024
1 parent 0486a2c commit 6bda1f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/platforms/php/common/metrics/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To emit a counter, do the following:
'browser' => 'Firefox',
'app_version' => '1.0.0',
],
)
);
```

## Emit a Distribution
Expand All @@ -48,7 +48,7 @@ To emit a distribution, do the following:
tags: [
'page' => '/home',
],
)
);
```

## Emit a Set
Expand All @@ -66,7 +66,7 @@ To emit a set, do the following:
tags: [
'page' => '/home',
],
)
);
```

## Emit a Gauge
Expand All @@ -84,7 +84,7 @@ To emit a gauge, do the following:
tags: [
'page' => '/home',
],
)
);
```

## Emit a Timer
Expand Down

0 comments on commit 6bda1f0

Please sign in to comment.