An open API service indexing awesome lists of open source software.

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

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
```