Metadata-Version: 2.1
Name: jsonlog-cli
Version: 6.2.0
Summary: Convert structured JSON logs to human-readable output
Home-page: https://github.com/borntyping/jsonlog/tree/master/jsonlog-cli
License: MIT
Author: Sam Clements
Author-email: sam@borntyping.co.uk
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: click
Requires-Dist: jsonlog
Requires-Dist: pydantic (>=1.5.1,<1.6.0)
Requires-Dist: typing-extensions
Requires-Dist: xdg
Project-URL: Repository, https://github.com/borntyping/jsonlog
Description-Content-Type: text/markdown

jsonlog-cli
===========

A human readable formatter for JSON logs.
 
It's built for use with [jsonlog] but will work well with any log format that
uses line delimited JSON.

![Example output](https://raw.githubusercontent.com/borntyping/jsonlog-cli/master/docs/example.png)

Usage
-----

See `jsonlog --help` for all options.

### Key-value mode

Pass a file as the only argument to `jsonlog`, or read from STDIN by default.

```bash
jsonlog kv docs/example.log
```

```bash
python docs/example.py | jsonlog kv
```

```bash
cat docs/example.log | jsonlog
```

Only show the `timestamp` and `message` fields:

```bash
jsonlog kv --key timestamp --key message docs/example.log
```

Configure the keys of multiline values you want to display (can be specified
multiple times, and defaults to the `traceback` key.)

```bash
jsonlog kv --key timestamp --key message --multiline-key traceback docs/example.log
```

Configure the key to extract and use as the records level, controlling the
colour each line is printed in (defaults to the `level` key).

```bash
jsonlog kv --level-key level --key timestamp --key message --multiline-key traceback docs/example.log
```

### Template mode

Only show the `timestamp` and `message` fields:

```bash
jsonlog template --format "{timestamp} {message}" docs/example.log
```

Also show a multiline key when it's present:

```bash
jsonlog template --format "{timestamp} {message}" --multiline-key traceback docs/example.log
```

Configuration
-------------

Named "patterns" are supported as a way of collecting a set of options for
jsonlog's key-value and template modes. If `~/.config/jsonlog/config.json`
exists, it will be loaded at startup. All fields should be optional.

The example configuration file below creates patterns named `basic` and
`comprehensive` for the key-value and template modes. The patterns will each
show the `timestamp` and `message` fields of incoming logs. The patterns
named `comprehensive` override all fields, setting their their default values.

Creating a pattern named `default` will set the default options used if no
pattern is specified. Command line options always override options from the
application's default configuration, the configuration file and the selected
pattern.  

```json
{
  "keyvalues": {
    "basic": {
      "priority_keys": ["timestamp", "message"]
    },
    "comprehensive": {
      "level_key": "level",
      "multiline_json": false,
      "multiline_keys": [],
      "priority_keys": [],
      "removed_keys": []
    }
  },
  "templates": {
    "basic": {
      "format": "{timestamp} {message}"
    },
    "comprehensive": {
      "level_key": "level",
      "multiline_json": false,
      "multiline_keys": [],
      "format": "{timestamp} {message}" 
    }
  }
}
```

The `multiline_json` option will parse incoming data using a buffer. This is
rarely useful, but some applications (e.g. ElasticSearch) output JSON split 
across multiple lines. Incoming data will be buffered until the whole buffer can
be parsed as JSON or a new line starts with `{`. Incoming lines that can be
immediately parsed as JSON are not buffered (flushing the buffer first).

Debugging
---------

The `jsonlog` CLI has some flags that are useful when debugging. The following
will print internal logs as JSON to STDERR.

```
jsonlog --log-path=- --log-level=debug kv ...
```

Authors
-------

* [Sam Clements]

[jsonlog]: https://github.com/borntyping/jsonlog
[Sam Clements]: https://gitlab.com/borntyping

