Skip to content

Commit

Permalink
Fix metric tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Feb 28, 2022
1 parent f0bf499 commit 51814d0
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 @@ -17,6 +17,8 @@ The `Unreleased` section name is replaced by the expected version of next releas
### Removed
### Fixed

- `SqlStreamStore`: Fix `Metric` key to be `ssEvt` (was `esEvt`) [#311](https://github.com/jet/equinox/pull/311)

<a name="3.0.6"></a>
## [3.0.6] - 2022-01-19

Expand Down
2 changes: 1 addition & 1 deletion src/Equinox.SqlStreamStore/SqlStreamStore.fs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type Direction = Forward | Backward with
module Log =

/// <summary>Name of Property used for <c>Metric</c> in <c>LogEvent</c>s.</summary>
let [<Literal>] PropertyTag = "esEvt"
let [<Literal>] PropertyTag = "ssEvt"

[<NoEquality; NoComparison>]
type Measurement = { stream : string; interval : StopwatchInterval; bytes : int; count : int }
Expand Down

0 comments on commit 51814d0

Please sign in to comment.