Skip to content

Commit

Permalink
Merge pull request #19 from xmidt-org/boottime-edge-case
Browse files Browse the repository at this point in the history
Boottime edge case
  • Loading branch information
j-mai authored Feb 16, 2021
2 parents c8fd33e + 4e8b6a3 commit 9d64472
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion event/parsing/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9d64472

Please sign in to comment.