Skip to content

Commit

Permalink
Fix metric tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Jan 24, 2022
1 parent a4991dc commit de03f25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The `Unreleased` section name is replaced by the expected version of next releas
- `Equinox`: Merge `XXXStoreCategory.Resolve(sn, ?ResolveOption)` and `XXXStoreCategory.FromMemento` as option `LoadOption` parameter on all `Transact` and `Query` methods [#308](https://github.com/jet/equinox/pull/308)
- `Equinox`: rename `Decider.TransactAsync` to `Transact` [#308](https://github.com/jet/equinox/pull/308)
- `EventStore/SqlStreamStore`: rename `Equinox.XXXStore.Log.Event` -> `Metric` to match `CosmosStore` [#308](https://github.com/jet/equinox/pull/308)
- `SqlStreamStore`: Fix `Metric` key to be `ssEvt` (was `esEvt`) [#308](https://github.com/jet/equinox/pull/308)

### Removed
### Fixed
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 @@ -18,7 +18,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 de03f25

Please sign in to comment.