diff --git a/CHANGELOG.md b/CHANGELOG.md index e50ccf9..a2d326d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] -- Add initial app files and working docker-compose cluster [#7](https://github.com/xmidt-org/glaukos/pull/7) -- Add queue to process incoming events [#11](https://github.com/xmidt-org/glaukos/pull/11) +- Change histogram buckets to account for long boot-times. [#19](https://github.com/xmidt-org/glaukos/pull/19) +- Use hash token factory to verify secret when configured. [#18](https://github.com/xmidt-org/glaukos/pull/18) +- Add circuit breaker to prevent overloading codex when codex is already under stress. [#17](https://github.com/xmidt-org/glaukos/pull/17) +- Allow for the http client used by the CodexClient to be configurable. [#16](https://github.com/xmidt-org/glaukos/pull/16) +- Use `xlog` instead of `webpa-common/logging`. [#15](https://github.com/xmidt-org/glaukos/pull/15) +- Add unit tests [#12](https://github.com/xmidt-org/glaukos/pull/12) +- Add queue to process incoming caduceus events. [#11](https://github.com/xmidt-org/glaukos/pull/11) +- Add initial app files and working docker-compose cluster. [#7](https://github.com/xmidt-org/glaukos/pull/7) +- Add queue to process incoming events. [#11](https://github.com/xmidt-org/glaukos/pull/11) ## [v0.0.1] - Initial creation diff --git a/event/parsing/metrics.go b/event/parsing/metrics.go index c62c238..5801d8b 100644 --- a/event/parsing/metrics.go +++ b/event/parsing/metrics.go @@ -44,7 +44,7 @@ func ProvideEventMetrics() fx.Option { prometheus.HistogramOpts{ Name: "boot_time_duration", Help: "tracks boot time durations in s", - Buckets: []float64{60, 120, 180, 240, 300, 360, 420, 480, 540, 600}, + Buckets: []float64{60, 120, 180, 240, 300, 360, 420, 480, 540, 600, 900, 1200, 1500, 1800, 3600}, }, FirmwareLabel, HardwareLabel,