https://github.com/helinwang/delog
extract the values of given keys from the log in logfmt
https://github.com/helinwang/delog
Last synced: 27 days ago
JSON representation
extract the values of given keys from the log in logfmt
- Host: GitHub
- URL: https://github.com/helinwang/delog
- Owner: helinwang
- Created: 2018-04-26T13:58:26.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-26T14:27:29.000Z (about 7 years ago)
- Last Synced: 2025-02-17T06:28:59.577Z (4 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# delog
extract the values of given keys from the log in logfmt## Usage
```bash
$ go get github.com/helinwang/delog
$ echo 'a=foo b=10ms c=cat E="123"'| delog -k a,b
foo,10ms
```