Metadata-Version: 2.1
Name: jsonlog-cli
Version: 3.1.0
Summary: Human readable formatter for JSON logs.
Home-page: https://github.com/borntyping/jsonlog-cli
Author: Sam Clements
Author-email: sam@borntyping.co.uk
License: MIT License
Description: 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
        -----
        
        Pass a file as the only argument to `jsonlog`, or read from STDIN by default.
        
        ```bash
        jsonlog docs/example.log
        ```
        
        ```bash
        python docs/example.py | jsonlog
        ```
        
        Configuration
        -------------
        
        See `jsonlog --help` for all options.
        
        Only show timestamps and messages (defaults to `{timestamp} {level} {name} {message}`).
        
        ```bash
        jsonlog --format "{timestamp} {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 --format "{timestamp} {message}" 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 --format "{timestamp} {message}" docs/example.log
        ```
        
        Authors
        -------
        
        * [Sam Clements]
        
        [jsonlog]: https://github.com/borntyping/jsonlog
        [Sam Clements]: https://gitlab.com/borntyping
        
Keywords: json,logging
Platform: any
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >= 3.7
Description-Content-Type: text/markdown
