-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
17 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ $ go get -u github.com/aybabtme/humanlog/... | |
## On linux | ||
|
||
```bash | ||
wget -qO- https://github.com/aybabtme/humanlog/releases/download/0.5.0/humanlog_0.5.0_linux_amd64.tar.gz | tar xvz | ||
wget -qO- https://github.com/aybabtme/humanlog/releases/download/0.6.0/humanlog_0.6.0_linux_amd64.tar.gz | tar xvz | ||
``` | ||
|
||
## On OS X | ||
|
@@ -54,28 +54,22 @@ USAGE: | |
humanlog [global options] command [command options] [arguments...] | ||
VERSION: | ||
0.5.0 | ||
0.6.0 | ||
AUTHOR: | ||
Antoine Grondin - <[email protected]> | ||
Antoine Grondin - <[email protected]> | ||
COMMANDS: | ||
help, h Shows a list of commands or help for one command | ||
GLOBAL OPTIONS: | ||
--skip value keys to skip when parsing a log entry | ||
--keep value keys to keep when parsing a log entry | ||
--sort-longest sort by longest key after having sorted lexicographically | ||
--skip-unchanged skip keys that have the same value than the previous entry | ||
--truncate truncates values that are longer than --truncate-length | ||
--truncate-length value truncate values that are longer than this length (default: 15) | ||
--light-bg use black as the base foreground color (for terminals with light backgrounds) | ||
--time-format value output time format, see https://golang.org/pkg/time/ for details (default: "Jan _2 15:04:05") | ||
--ignore-interrupts, -i ignore interrupts | ||
--message-fields value, -m value Custom JSON fields to search for the log message. (i.e. mssge, data.body.message) (default: "data.message") [$HUMANLOG_MESSAGE_FIELDS] | ||
--time-fields value, -t value Custom JSON fields to search for the log time. (i.e. logtime, data.body.datetime) [$HUMANLOG_TIME_FIELDS] | ||
--level-fields value, -l value Custom JSON fields to search for the log level. (i.e. somelevel, data.level) [$HUMANLOG_LEVEL_FIELDS] | ||
--help, -h show help | ||
--version, -v print the version | ||
--skip '--skip option --skip option' keys to skip when parsing a log entry | ||
--keep '--keep option --keep option' keys to keep when parsing a log entry | ||
--sort-longest sort by longest key after having sorted lexicographically | ||
--skip-unchanged skip keys that have the same value than the previous entry | ||
--truncate truncates values that are longer than --truncate-length | ||
--truncate-length '15' truncate values that are longer than this length | ||
--help, -h show help | ||
--version, -v print the version | ||
``` | ||
[l2met]: https://github.com/ryandotsmith/l2met |