diff --git a/CHANGELOG.md b/CHANGELOG.md index 8833da80c..049a8a966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/Equinox.SqlStreamStore/SqlStreamStore.fs b/src/Equinox.SqlStreamStore/SqlStreamStore.fs index f550d7146..8ae2c3372 100644 --- a/src/Equinox.SqlStreamStore/SqlStreamStore.fs +++ b/src/Equinox.SqlStreamStore/SqlStreamStore.fs @@ -18,7 +18,7 @@ type Direction = Forward | Backward with module Log = /// Name of Property used for Metric in LogEvents. - let [] PropertyTag = "esEvt" + let [] PropertyTag = "ssEvt" [] type Measurement = { stream : string; interval : StopwatchInterval; bytes : int; count : int }