1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/docs/parsers/vmstat.md

172 lines
4.0 KiB
Markdown
Raw Normal View History

2021-09-22 14:38:13 -07:00
[Home](https://kellyjonbrazil.github.io/jc/)
2022-01-25 17:07:47 -08:00
<a id="jc.parsers.vmstat"></a>
2021-09-22 14:38:13 -07:00
# jc.parsers.vmstat
2022-01-25 17:07:47 -08:00
2021-09-22 14:38:13 -07:00
jc - JSON CLI output utility `vmstat` command output parser
Options supported: `-a`, `-w`, `-d`, `-t`
2022-01-19 17:30:14 -08:00
The `epoch` calculated timestamp field is naive. (i.e. based on the local
time of the system the parser is run on)
2021-09-24 10:11:15 -07:00
2022-01-19 17:30:14 -08:00
The `epoch_utc` calculated timestamp field is timezone-aware and is only
available if the timezone field is UTC.
2021-09-24 10:11:15 -07:00
2021-09-22 14:38:13 -07:00
Usage (cli):
2022-01-25 17:07:47 -08:00
$ vmstat | jc --vmstat
2021-09-22 14:38:13 -07:00
2022-01-25 17:07:47 -08:00
or
2021-09-22 14:38:13 -07:00
2022-01-25 17:07:47 -08:00
$ jc vmstat
2021-09-22 14:38:13 -07:00
Usage (module):
2022-01-25 17:07:47 -08:00
import jc
result = jc.parse('vmstat', vmstat_command_output)
2022-01-18 15:38:03 -08:00
2022-01-25 17:07:47 -08:00
or
2022-01-18 15:38:03 -08:00
2022-01-25 17:07:47 -08:00
import jc.parsers.vmstat
result = jc.parsers.vmstat.parse(vmstat_command_output)
2021-09-22 14:38:13 -07:00
Schema:
2022-01-25 17:07:47 -08:00
[
{
"runnable_procs": integer,
"uninterruptible_sleeping_procs": integer,
"virtual_mem_used": integer,
"free_mem": integer,
"buffer_mem": integer,
"cache_mem": integer,
"inactive_mem": integer,
"active_mem": integer,
"swap_in": integer,
"swap_out": integer,
"blocks_in": integer,
"blocks_out": integer,
"interrupts": integer,
"context_switches": integer,
"user_time": integer,
"system_time": integer,
"idle_time": integer,
"io_wait_time": integer,
"stolen_time": integer,
"disk": string,
"total_reads": integer,
"merged_reads": integer,
"sectors_read": integer,
"reading_ms": integer,
"total_writes": integer,
"merged_writes": integer,
"sectors_written": integer,
"writing_ms": integer,
"current_io": integer,
"io_seconds": integer,
"timestamp": string,
"timezone": string,
"epoch": integer, # [0]
"epoch_utc": integer # [1]
}
]
[0] naive timestamp if -t flag is used
[1] aware timestamp if -t flag is used and UTC TZ
**Examples**:
$ vmstat | jc --vmstat -p
[
{
- `"runnable_procs"` - 2,
- `"uninterruptible_sleeping_procs"` - 0,
- `"virtual_mem_used"` - 0,
- `"free_mem"` - 2794468,
- `"buffer_mem"` - 2108,
- `"cache_mem"` - 741208,
- `"inactive_mem"` - null,
- `"active_mem"` - null,
- `"swap_in"` - 0,
- `"swap_out"` - 0,
- `"blocks_in"` - 1,
- `"blocks_out"` - 3,
- `"interrupts"` - 29,
- `"context_switches"` - 57,
- `"user_time"` - 0,
- `"system_time"` - 0,
- `"idle_time"` - 99,
- `"io_wait_time"` - 0,
- `"stolen_time"` - 0,
- `"timestamp"` - null,
- `"timezone"` - null
}
]
$ vmstat | jc --vmstat -p -r
[
{
- `"runnable_procs"` - "2",
- `"uninterruptible_sleeping_procs"` - "0",
- `"virtual_mem_used"` - "0",
- `"free_mem"` - "2794468",
- `"buffer_mem"` - "2108",
- `"cache_mem"` - "741208",
- `"inactive_mem"` - null,
- `"active_mem"` - null,
- `"swap_in"` - "0",
- `"swap_out"` - "0",
- `"blocks_in"` - "1",
- `"blocks_out"` - "3",
- `"interrupts"` - "29",
- `"context_switches"` - "57",
- `"user_time"` - "0",
- `"system_time"` - "0",
- `"idle_time"` - "99",
- `"io_wait_time"` - "0",
- `"stolen_time"` - "0",
- `"timestamp"` - null,
- `"timezone"` - null
}
]
<a id="jc.parsers.vmstat.info"></a>
## info Objects
2021-09-22 14:38:13 -07:00
```python
2022-01-25 17:07:47 -08:00
class info()
2021-09-22 14:38:13 -07:00
```
2022-01-25 17:07:47 -08:00
2021-09-22 14:38:13 -07:00
Provides parser metadata (version, author, etc.)
2022-01-25 17:07:47 -08:00
<a id="jc.parsers.vmstat.parse"></a>
#### parse
2021-09-22 14:38:13 -07:00
```python
2022-01-25 17:07:47 -08:00
def parse(data, raw=False, quiet=False)
2021-09-22 14:38:13 -07:00
```
Main text parsing function
2022-01-25 17:07:47 -08:00
**Arguments**:
2021-09-22 14:38:13 -07:00
2022-01-25 17:07:47 -08:00
- `data` - (string) text data to parse
- `raw` - (boolean) unprocessed output if True
- `quiet` - (boolean) suppress warning messages if True
2021-09-22 14:38:13 -07:00
2022-01-25 17:07:47 -08:00
**Returns**:
2021-09-22 14:38:13 -07:00
2022-01-25 17:07:47 -08:00
List of Dictionaries. Raw or processed structured data.
2021-09-22 14:38:13 -07:00
## Parser Information
Compatibility: linux
2021-12-01 16:12:51 -08:00
Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com)