[[./logo/fblog_small.png]]
fblog
[[https://crates.io/crates/fblog][file:https://img.shields.io/crates/v/fblog.svg]] [[https://github.com/brocode/fblog/blob/nested-values/.github/workflows/rust.yml][file:https://github.com/brocode/fblog/actions/workflows/rust.yml/badge.svg?branch=master]]
A small tool to view json log files.
[[file:demo.png]]
** Print specific fields
#+BEGINSRC shell-script fblog -a message -a "status > a" samplenested.json.log #+END_SRC
** Filter To filter log messages it is possible to use lua
#+BEGIN_SRC shell-script fblog -f 'level ~= "info"' # will print all message where the level is not info fblog -f 'process == "play"' # will print all message where the process is play fblog -f 'string.find(fu, "bow.*") ~= nil' # will print all messages where fu starts with bow fblog -f 'process == "play"' # will print all message where the process is play fblog -f 'process == "rust" and fu == "bower"' fblog --no-implicit-filter-return-statement -f 'if 3 > 2 then return true else return false end'
# not valid lua identifiers like log.level gets converted to loglevel. # Every character that is not _ or a letter will be converted to _ fblog -d -f 'loglevel == "WARN"' sample_elastic.log
# nested fields are converted to lua records fblog -d -f 'status.a == 100' sample_nested.json.log
# array fields are converted to lua tables (index starts with 1) fblog -d -f 'status.d[2] == "a"' samplenested.json.log #+ENDSRC
** Customize ~fblog~ tries to detect the message, severity and timestamp of a log entry. This behavior can be customized. See ~--help~ for more information.
You can customize fblog messages: Format output: #+BEGINSRC shell-script fblog -p --main-line-format "{{#if shortmessage}}{{ red shortmessage }}{{/if}}" sample.json.log #+ENDSRC
The following sanitized variables are provided by fblog:
fblog_prefix
For the default formatting see ~--help~
Nested values are registered as objects. So you can use ~nested.value~ to access nested values.
handlebar helpers:
bold
** NOCOLOR ~fblog~ disables color output if the ~NOCOLOR~ environment variable is present.
[[https://no-color.org/][no-color]]
** Installation #+BEGINSRC bash cargo install fblog #+ENDSRC
If you're lucky enough to be an arch linux user: [[https://aur.archlinux.org/packages/fblog/][AUR]]
If you want to install fblog via Homebrew execute the following commands:
#+BEGINSRC bash brew tap brocode/fblog https://github.com/brocode/fblog.git brew install fblog #+ENDSRC
** Log tailing ~fblog~ does not support native log tailing but this is easily achiveable.
#+BEGINSRC bash tail -f file | fblog #+ENDSRC
Or with kubernetes tooling for example
#+BEGINSRC bash kubectl logs -f ... | fblog #+ENDSRC
In general you can pipe any endless stream to fblog.