Loggly search command-line tool.
Download from the releases
Quick install via go-get:
$ go get github.com/segmentio/go-loggly-cli
$ go-loggly-cli -version
Usage: loggly [options] [query...]
Options:
-account <name> account name
-token <word> user token
-size <count> response event count [100]
-from <time> starting time [-24h]
-to <time> ending time [now]
-count print total event count
-all print the entire loggly event instead of just the message
-maxPages <count> maximum number of pages to query [3]
-version print version information
Loggly's search API requires basic auth credentials, so you must pass the
-acount
, -token
flags. To make this less annoying
I suggest creating an alias:
alias logs='loggly -account loggly-account -token "foobarbaz"'
This is a great place to stick personal defaults as well. Since flags are
clobbered if defined multiple times you can define whatever defaults you'd like
here, while still changing them via log
:
alias logs='loggly -account loggly-account -token "foobarbaz" --size 5'
logs "one.field: something AND other.field: somethingelse"
MIT