mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
122 lines
2.5 KiB
Markdown
122 lines
2.5 KiB
Markdown
![]() |
[Home](https://kellyjonbrazil.github.io/jc/)
|
||
|
<a id="jc.parsers.proc_modules"></a>
|
||
|
|
||
|
# jc.parsers.proc\_modules
|
||
|
|
||
|
jc - JSON Convert `/proc/modules` command output parser
|
||
|
|
||
|
<<Short proc_modules description and caveats>>
|
||
|
|
||
|
Usage (cli):
|
||
|
|
||
|
$ cat /proc/modules | jc --proc
|
||
|
|
||
|
Usage (module):
|
||
|
|
||
|
import jc
|
||
|
result = jc.parse('proc_modules', proc_modules_file)
|
||
|
|
||
|
Schema:
|
||
|
|
||
|
[
|
||
|
{
|
||
|
"module": string,
|
||
|
"size": integer,
|
||
|
"used": integer,
|
||
|
"used_by": [
|
||
|
string
|
||
|
],
|
||
|
"status": string,
|
||
|
"location": string
|
||
|
}
|
||
|
]
|
||
|
|
||
|
Examples:
|
||
|
|
||
|
$ cat /proc/modules | jc --proc -p
|
||
|
[
|
||
|
{
|
||
|
"module": "binfmt_misc",
|
||
|
"size": 24576,
|
||
|
"used": 1,
|
||
|
"used_by": [],
|
||
|
"status": "Live",
|
||
|
"location": "0xffffffffc0ab4000"
|
||
|
},
|
||
|
{
|
||
|
"module": "vsock_loopback",
|
||
|
"size": 16384,
|
||
|
"used": 0,
|
||
|
"used_by": [],
|
||
|
"status": "Live",
|
||
|
"location": "0xffffffffc0a14000"
|
||
|
},
|
||
|
{
|
||
|
"module": "vmw_vsock_virtio_transport_common",
|
||
|
"size": 36864,
|
||
|
"used": 1,
|
||
|
"used_by": [
|
||
|
"vsock_loopback"
|
||
|
],
|
||
|
"status": "Live",
|
||
|
"location": "0xffffffffc0a03000"
|
||
|
},
|
||
|
...
|
||
|
]
|
||
|
|
||
|
$ proc_modules | jc --proc_modules -p -r
|
||
|
[
|
||
|
{
|
||
|
"module": "binfmt_misc",
|
||
|
"size": "24576",
|
||
|
"used": "1",
|
||
|
"used_by": [],
|
||
|
"status": "Live",
|
||
|
"location": "0xffffffffc0ab4000"
|
||
|
},
|
||
|
{
|
||
|
"module": "vsock_loopback",
|
||
|
"size": "16384",
|
||
|
"used": "0",
|
||
|
"used_by": [],
|
||
|
"status": "Live",
|
||
|
"location": "0xffffffffc0a14000"
|
||
|
},
|
||
|
{
|
||
|
"module": "vmw_vsock_virtio_transport_common",
|
||
|
"size": "36864",
|
||
|
"used": "1",
|
||
|
"used_by": [
|
||
|
"vsock_loopback"
|
||
|
],
|
||
|
"status": "Live",
|
||
|
"location": "0xffffffffc0a03000"
|
||
|
},
|
||
|
...
|
||
|
]
|
||
|
|
||
|
<a id="jc.parsers.proc_modules.parse"></a>
|
||
|
|
||
|
### parse
|
||
|
|
||
|
```python
|
||
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> List[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:
|
||
|
|
||
|
List of Dictionaries. Raw or processed structured data.
|
||
|
|
||
|
### Parser Information
|
||
|
Compatibility: linux
|
||
|
|
||
|
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|