1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/docs/parsers/proc_pid_statm.md
2024-03-14 22:46:52 -07:00

1.6 KiB

Home

jc.parsers.proc_pid_statm

jc - JSON Convert /proc/<pid>/statm file parser

Usage (cli):

$ cat /proc/1/statm | jc --proc

or

$ jc /proc/1/statm

or

$ cat /proc/1/statm | jc --proc-pid-statm

Usage (module):

import jc
result = jc.parse('proc', proc_pid_statm_file)

or

import jc
result = jc.parse('proc_pid_statm', proc_pid_statm_file)

Schema:

{
  "size":                   integer,
  "resident":               integer,
  "shared":                 integer,
  "text":                   integer,
  "lib":                    integer,
  "data":                   integer,
  "dt":                     integer
}

Examples:

$ cat /proc/1/statm | jc --proc -p
{
  "size": 42496,
  "resident": 3313,
  "shared": 2169,
  "text": 202,
  "lib": 0,
  "data": 5180,
  "dt": 0
}

parse

def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict

Main text parsing function

Parameters:

data:        (string)  text data to parse
raw:         (boolean) unprocessed output if True
quiet:       (boolean) suppress warning messages if True

Returns:

Dictionary. Raw or processed structured data.

Parser Information

Compatibility: linux

Source: jc/parsers/proc_pid_statm.py

Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)