-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid once.Do under the lock; restore the RWMutex (#404)
- Loading branch information
Showing
8 changed files
with
74 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,20 +8,25 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm | |
|
||
## Unreleased | ||
|
||
## [1.13.2](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.2) - 2022-02-28) | ||
## [1.13.3](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.3) - 2023-03-01) | ||
|
||
- Fixes performance regressions introduced in version 1.13.1 and 1.12.1. | ||
[#404](https://github.com/lightstep/otel-launcher-go/pull/404) | ||
|
||
## [1.13.2](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.2) - 2023-02-28) | ||
|
||
- Adds performance setting `InactiveCollectionPeriods` allowing | ||
control over how fast records are removed from memory. [#396](https://github.com/lightstep/otel-launcher-go/pull/396) | ||
|
||
## [1.13.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.1) - 2022-02-15) | ||
## [1.13.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.1) - 2023-02-15) | ||
|
||
- Adds performance improvements for concurrent use of synchronous | ||
instruments. [#384](https://github.com/lightstep/otel-launcher-go/pull/384) | ||
- Adds `WithPerformance()` and `IgnoreCollisions` setting which offers | ||
around 10% faster operations in exchange for safety and correctness. This | ||
setting is off by default. [#384](https://github.com/lightstep/otel-launcher-go/pull/384) | ||
|
||
## [1.13.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.0) - 2022-02-15) | ||
## [1.13.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.0) - 2023-02-15) | ||
|
||
- Updates OTel-Go version dependencies to `[email protected]`, `[email protected]`, | ||
`[email protected]`, `[email protected]`: | ||
|
@@ -31,7 +36,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm | |
deprecated APIs. The next minor version of this repository will | ||
update the dependency to `v0.36.0` or later. [#381](https://github.com/lightstep/otel-launcher-go/pull/381) | ||
|
||
## [1.12.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.12.1) - 2022-02-13) | ||
## [1.12.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.12.1) - 2023-02-13) | ||
|
||
- Replace a RWMutex with Mutex. [#378](https://github.com/lightstep/otel-launcher-go/pull/378) | ||
- Eliminate redundant GC cpu-time metric from lightstep/instrumentation/cputime as | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.13.2 | ||
1.13.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
|
||
package launcher | ||
|
||
const version = "1.13.2" | ||
const version = "1.13.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters