Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elwinar committed Apr 12, 2020
1 parent 02fb3ca commit 159b7da
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## [v0.9.0](https://github.com/elwinar/rcoredump/releases/tag/v0.9.0) - 2020-04-12
### Added
- Reset button on the searchbar
- Add a cleanup routine and endpoint
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Usage of rcoredumpd: rcoredumpd [options]
-index-type string
type of index to use (values: bleve) (default "bleve")
-retention-duration duration
hours to keep an indexed coredump (default 168h0m0s)
duration to keep an indexed coredump (e.g: "168h"), 0 to disable
-size-buckets string
buckets report the coredump sizes for (default "1MB,10MB,100MB,1GB,10GB")
-store-type string
Expand Down
2 changes: 1 addition & 1 deletion bin/rcoredumpd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (s *service) configure() {
fs.StringVar(&s.filelog, "filelog", "-", "path of the file to log into (\"-\" for stdout)")
fs.BoolVar(&s.printVersion, "version", false, "print the version of rcoredumpd")
fs.StringVar(&s.sizeBuckets, "size-buckets", "1MB,10MB,100MB,1GB,10GB", "buckets report the coredump sizes for")
fs.DurationVar(&s.retentionDuration, "retention-duration", 0, "duration to keep an indexed coredump (e.g: \"168h\")")
fs.DurationVar(&s.retentionDuration, "retention-duration", 0, "duration to keep an indexed coredump (e.g: \"168h\"), 0 to disable")

// Interface options.
fs.StringVar(&s.indexType, "index-type", "bleve", "type of index to use (values: bleve)")
Expand Down
Binary file modified screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 159b7da

Please sign in to comment.