2020-07-30 16:20:24 -07:00
|
|
|
|
2020-03-01 17:04:06 -08:00
|
|
|
# jc.parsers.who
|
|
|
|
jc - JSON CLI output utility who Parser
|
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (cli):
|
2020-03-01 17:04:06 -08:00
|
|
|
|
|
|
|
specify --who as the first argument if the piped input is coming from who
|
|
|
|
|
2020-03-02 10:30:12 -08:00
|
|
|
accepts any of the following who options (or no options): -aTH
|
|
|
|
|
2020-08-05 13:32:59 -07:00
|
|
|
Usage (module):
|
|
|
|
|
|
|
|
import jc.parsers.who
|
|
|
|
result = jc.parsers.who.parse(who_command_output)
|
|
|
|
|
2020-03-01 17:04:06 -08:00
|
|
|
Compatibility:
|
|
|
|
|
|
|
|
'linux', 'darwin', 'cygwin', 'aix', 'freebsd'
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ who -a | jc --who -p
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"event": "reboot",
|
|
|
|
"time": "Feb 7 23:31",
|
|
|
|
"pid": 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
2020-03-01 17:39:02 -08:00
|
|
|
"writeable_tty": "-",
|
2020-03-01 17:04:06 -08:00
|
|
|
"tty": "console",
|
|
|
|
"time": "Feb 7 23:32",
|
|
|
|
"idle": "old",
|
|
|
|
"pid": 105
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
|
|
|
"writeable_tty": "+",
|
|
|
|
"tty": "ttys000",
|
|
|
|
"time": "Feb 13 16:44",
|
|
|
|
"idle": ".",
|
|
|
|
"pid": 51217,
|
|
|
|
"comment": "term=0 exit=0"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
2020-03-01 17:39:02 -08:00
|
|
|
"writeable_tty": "?",
|
2020-03-01 17:04:06 -08:00
|
|
|
"tty": "ttys003",
|
|
|
|
"time": "Feb 28 08:59",
|
|
|
|
"idle": "01:36",
|
|
|
|
"pid": 41402
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
|
|
|
"writeable_tty": "+",
|
|
|
|
"tty": "ttys004",
|
|
|
|
"time": "Mar 1 16:35",
|
|
|
|
"idle": ".",
|
|
|
|
"pid": 15679,
|
|
|
|
"from": "192.168.1.5"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
$ who -a | jc --who -p -r
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"event": "reboot",
|
|
|
|
"time": "Feb 7 23:31",
|
|
|
|
"pid": "1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
2020-03-01 17:39:02 -08:00
|
|
|
"writeable_tty": "-",
|
2020-03-01 17:04:06 -08:00
|
|
|
"tty": "console",
|
|
|
|
"time": "Feb 7 23:32",
|
|
|
|
"idle": "old",
|
|
|
|
"pid": "105"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
|
|
|
"writeable_tty": "+",
|
|
|
|
"tty": "ttys000",
|
|
|
|
"time": "Feb 13 16:44",
|
|
|
|
"idle": ".",
|
|
|
|
"pid": "51217",
|
|
|
|
"comment": "term=0 exit=0"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
2020-03-01 17:39:02 -08:00
|
|
|
"writeable_tty": "?",
|
2020-03-01 17:04:06 -08:00
|
|
|
"tty": "ttys003",
|
|
|
|
"time": "Feb 28 08:59",
|
|
|
|
"idle": "01:36",
|
|
|
|
"pid": "41402"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"user": "joeuser",
|
|
|
|
"writeable_tty": "+",
|
|
|
|
"tty": "ttys004",
|
|
|
|
"time": "Mar 1 16:35",
|
|
|
|
"idle": ".",
|
|
|
|
"pid": "15679",
|
|
|
|
"from": "192.168.1.5"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-03-01 17:04:06 -08:00
|
|
|
## info
|
|
|
|
```python
|
2020-07-30 16:20:24 -07:00
|
|
|
info()
|
2020-03-01 17:04:06 -08:00
|
|
|
```
|
|
|
|
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-03-01 17:04:06 -08:00
|
|
|
## process
|
|
|
|
```python
|
|
|
|
process(proc_data)
|
|
|
|
```
|
|
|
|
|
|
|
|
Final processing to conform to the schema.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
proc_data: (dictionary) raw structured data to process
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
List of dictionaries. Structured data with the following schema:
|
|
|
|
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"user": string,
|
|
|
|
"event": string,
|
|
|
|
"writeable_tty": string,
|
|
|
|
"tty": string,
|
|
|
|
"time": string,
|
|
|
|
"idle": string,
|
|
|
|
"pid": integer,
|
|
|
|
"from": string,
|
|
|
|
"comment": string
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-07-30 16:20:24 -07:00
|
|
|
|
2020-03-01 17:04:06 -08:00
|
|
|
## parse
|
|
|
|
```python
|
|
|
|
parse(data, raw=False, quiet=False)
|
|
|
|
```
|
|
|
|
|
|
|
|
Main text parsing function
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
data: (string) text data to parse
|
|
|
|
raw: (boolean) output preprocessed JSON if True
|
|
|
|
quiet: (boolean) suppress warning messages if True
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
List of dictionaries. Raw or processed structured data.
|
|
|
|
|