mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-19 00:17:51 +02:00
update all docs with new script
This commit is contained in:
@ -76,11 +76,11 @@ if 'jc.parsers.' in mod_path and not 'universal' in mod_path:
|
|||||||
footer = footer + f'Source: [`jc/parsers/{mod_name}.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/{mod_name}.py)\n\n'
|
footer = footer + f'Source: [`jc/parsers/{mod_name}.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/{mod_name}.py)\n\n'
|
||||||
if slurpable:
|
if slurpable:
|
||||||
footer = footer + 'This parser can be used with the `--slurp` command-line option.\n\n'
|
footer = footer + 'This parser can be used with the `--slurp` command-line option.\n\n'
|
||||||
footer = footer + f'Version {ver} by {author} ({author_email})\n'
|
footer = footer + f'Version {ver} by {author} ({author_email})'
|
||||||
|
|
||||||
final_doc = ''
|
final_doc = ''
|
||||||
if 'jc.parsers.' in mod_path and not 'universal' in mod_path:
|
if 'jc.parsers.' in mod_path and not 'universal' in mod_path:
|
||||||
final_doc = header + '\n' + summary + '\n\n' + api_docs + '\n' + footer
|
final_doc = header + '\n' + summary + '\n' + api_docs + footer
|
||||||
elif mod_path == 'jc':
|
elif mod_path == 'jc':
|
||||||
final_doc = header + '\n' + summary
|
final_doc = header + '\n' + summary
|
||||||
else:
|
else:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.airport_s"></a>
|
<a id="jc.parsers.airport_s"></a>
|
||||||
|
|
||||||
# jc.parsers.airport\_s
|
# jc.parsers.airport_s
|
||||||
|
|
||||||
jc - JSON Convert `airport -s` command output parser
|
jc - JSON Convert `airport -s` command output parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.apt_cache_show"></a>
|
<a id="jc.parsers.apt_cache_show"></a>
|
||||||
|
|
||||||
# jc.parsers.apt\_cache\_show
|
# jc.parsers.apt_cache_show
|
||||||
|
|
||||||
jc - JSON Convert `apt-cache show` command parser
|
jc - JSON Convert `apt-cache show` command parser
|
||||||
|
|
||||||
@ -157,7 +157,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -171,7 +171,6 @@ Examples:
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
<a id="jc.parsers.apt_get_sqq.parse"></a>
|
<a id="jc.parsers.apt_get_sqq.parse"></a>
|
||||||
|
|
||||||
### parse
|
### parse
|
||||||
@ -194,11 +193,9 @@ Returns:
|
|||||||
|
|
||||||
List of Dictionaries. Raw or processed structured data.
|
List of Dictionaries. Raw or processed structured data.
|
||||||
|
|
||||||
|
|
||||||
### Parser Information
|
### Parser Information
|
||||||
Compatibility: linux
|
Compatibility: linux
|
||||||
|
|
||||||
Source: [`jc/parsers/apt_get_sqq.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/apt_get_sqq.py)
|
Source: [`jc/parsers/apt_get_sqq.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/apt_get_sqq.py)
|
||||||
|
|
||||||
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.asciitable_m"></a>
|
<a id="jc.parsers.asciitable_m"></a>
|
||||||
|
|
||||||
# jc.parsers.asciitable\_m
|
# jc.parsers.asciitable_m
|
||||||
|
|
||||||
jc - JSON Convert `asciitable-m` parser
|
jc - JSON Convert `asciitable-m` parser
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -104,7 +104,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.cef_s"></a>
|
<a id="jc.parsers.cef_s"></a>
|
||||||
|
|
||||||
# jc.parsers.cef\_s
|
# jc.parsers.cef_s
|
||||||
|
|
||||||
jc - JSON Convert CEF string output streaming parser
|
jc - JSON Convert CEF string output streaming parser
|
||||||
|
|
||||||
@ -95,7 +95,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data: Iterable[str],
|
def parse(data: Iterable[str],
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False,
|
quiet: bool = False,
|
||||||
|
@ -140,7 +140,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -178,7 +178,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.clf_s"></a>
|
<a id="jc.parsers.clf_s"></a>
|
||||||
|
|
||||||
# jc.parsers.clf\_s
|
# jc.parsers.clf_s
|
||||||
|
|
||||||
jc - JSON Convert Common Log Format file streaming parser
|
jc - JSON Convert Common Log Format file streaming parser
|
||||||
|
|
||||||
@ -88,11 +88,12 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
def parse(
|
||||||
def parse(data: Iterable[str],
|
data: Iterable[str],
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False,
|
quiet: bool = False,
|
||||||
ignore_exceptions: bool = False) -> StreamingOutputType
|
ignore_exceptions: bool = False
|
||||||
|
) -> Iterator[Union[Dict[str, Any], Tuple[BaseException, str]]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing generator function. Returns an iterable object.
|
Main text parsing generator function. Returns an iterable object.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.crontab_u"></a>
|
<a id="jc.parsers.crontab_u"></a>
|
||||||
|
|
||||||
# jc.parsers.crontab\_u
|
# jc.parsers.crontab_u
|
||||||
|
|
||||||
jc - JSON Convert `crontab -l` command output and crontab
|
jc - JSON Convert `crontab -l` command output and crontab
|
||||||
file parser
|
file parser
|
||||||
|
@ -84,7 +84,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: Union[str, bytes],
|
def parse(data: Union[str, bytes],
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.csv_s"></a>
|
<a id="jc.parsers.csv_s"></a>
|
||||||
|
|
||||||
# jc.parsers.csv\_s
|
# jc.parsers.csv_s
|
||||||
|
|
||||||
jc - JSON Convert `csv` file streaming parser
|
jc - JSON Convert `csv` file streaming parser
|
||||||
|
|
||||||
@ -64,7 +64,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.curl_head"></a>
|
<a id="jc.parsers.curl_head"></a>
|
||||||
|
|
||||||
# jc.parsers.curl\_head
|
# jc.parsers.curl_head
|
||||||
|
|
||||||
jc - JSON Convert `curl --head` command output parser
|
jc - JSON Convert `curl --head` command output parser
|
||||||
|
|
||||||
@ -286,7 +286,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.datetime_iso"></a>
|
<a id="jc.parsers.datetime_iso"></a>
|
||||||
|
|
||||||
# jc.parsers.datetime\_iso
|
# jc.parsers.datetime_iso
|
||||||
|
|
||||||
jc - JSON Convert ISO 8601 Datetime string parser
|
jc - JSON Convert ISO 8601 Datetime string parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.debconf_show"></a>
|
<a id="jc.parsers.debconf_show"></a>
|
||||||
|
|
||||||
# jc.parsers.debconf\_show
|
# jc.parsers.debconf_show
|
||||||
|
|
||||||
jc - JSON Convert `debconf-show` command output parser
|
jc - JSON Convert `debconf-show` command output parser
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -120,7 +120,6 @@ Examples:
|
|||||||
...
|
...
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
<a id="jc.parsers.dir.parse"></a>
|
<a id="jc.parsers.dir.parse"></a>
|
||||||
|
|
||||||
### parse
|
### parse
|
||||||
@ -141,11 +140,9 @@ Returns:
|
|||||||
|
|
||||||
List of Dictionaries. Raw or processed structured data.
|
List of Dictionaries. Raw or processed structured data.
|
||||||
|
|
||||||
|
|
||||||
### Parser Information
|
### Parser Information
|
||||||
Compatibility: win32
|
Compatibility: win32
|
||||||
|
|
||||||
Source: [`jc/parsers/dir.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/dir.py)
|
Source: [`jc/parsers/dir.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/dir.py)
|
||||||
|
|
||||||
Version 1.6 by Rasheed Elsaleh (rasheed@rebelliondefense.com)
|
Version 1.6 by Rasheed Elsaleh (rasheed@rebelliondefense.com)
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.dpkg_l"></a>
|
<a id="jc.parsers.dpkg_l"></a>
|
||||||
|
|
||||||
# jc.parsers.dpkg\_l
|
# jc.parsers.dpkg_l
|
||||||
|
|
||||||
jc - JSON Convert `dpkg -l` command output parser
|
jc - JSON Convert `dpkg -l` command output parser
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.email_address"></a>
|
<a id="jc.parsers.email_address"></a>
|
||||||
|
|
||||||
# jc.parsers.email\_address
|
# jc.parsers.email_address
|
||||||
|
|
||||||
jc - JSON Convert Email Address string parser
|
jc - JSON Convert Email Address string parser
|
||||||
|
|
||||||
|
@ -166,7 +166,6 @@ Examples:
|
|||||||
"br_margin_min": "0%"
|
"br_margin_min": "0%"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
<a id="jc.parsers.ethtool.parse"></a>
|
<a id="jc.parsers.ethtool.parse"></a>
|
||||||
|
|
||||||
### parse
|
### parse
|
||||||
@ -187,11 +186,9 @@ Returns:
|
|||||||
|
|
||||||
List of Dictionaries. Raw or processed structured data.
|
List of Dictionaries. Raw or processed structured data.
|
||||||
|
|
||||||
|
|
||||||
### Parser Information
|
### Parser Information
|
||||||
Compatibility: linux
|
Compatibility: linux
|
||||||
|
|
||||||
Source: [`jc/parsers/ethtool.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ethtool.py)
|
Source: [`jc/parsers/ethtool.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ethtool.py)
|
||||||
|
|
||||||
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.git_log"></a>
|
<a id="jc.parsers.git_log"></a>
|
||||||
|
|
||||||
# jc.parsers.git\_log
|
# jc.parsers.git_log
|
||||||
|
|
||||||
jc - JSON Convert `git log` command output parser
|
jc - JSON Convert `git log` command output parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.git_log_s"></a>
|
<a id="jc.parsers.git_log_s"></a>
|
||||||
|
|
||||||
# jc.parsers.git\_log\_s
|
# jc.parsers.git_log_s
|
||||||
|
|
||||||
jc - JSON Convert `git log` command output streaming parser
|
jc - JSON Convert `git log` command output streaming parser
|
||||||
|
|
||||||
@ -82,7 +82,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data: Iterable[str],
|
def parse(data: Iterable[str],
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False,
|
quiet: bool = False,
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.git_ls_remote"></a>
|
<a id="jc.parsers.git_ls_remote"></a>
|
||||||
|
|
||||||
# jc.parsers.git\_ls\_remote
|
# jc.parsers.git_ls_remote
|
||||||
|
|
||||||
jc - JSON Convert `git ls-remote` command output parser
|
jc - JSON Convert `git ls-remote` command output parser
|
||||||
|
|
||||||
@ -71,7 +71,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> Union[JSONDictType, List[JSONDictType]]
|
quiet: bool = False) -> Union[Dict[str, Any], List[Dict[str, Any]]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.http_headers"></a>
|
<a id="jc.parsers.http_headers"></a>
|
||||||
|
|
||||||
# jc.parsers.http\_headers
|
# jc.parsers.http_headers
|
||||||
|
|
||||||
jc - JSON Convert HTTP headers parser
|
jc - JSON Convert HTTP headers parser
|
||||||
|
|
||||||
@ -313,7 +313,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -222,7 +222,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.ini_dup"></a>
|
<a id="jc.parsers.ini_dup"></a>
|
||||||
|
|
||||||
# jc.parsers.ini\_dup
|
# jc.parsers.ini_dup
|
||||||
|
|
||||||
jc - JSON Convert INI with duplicate key file parser
|
jc - JSON Convert INI with duplicate key file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.iostat_s"></a>
|
<a id="jc.parsers.iostat_s"></a>
|
||||||
|
|
||||||
# jc.parsers.iostat\_s
|
# jc.parsers.iostat_s
|
||||||
|
|
||||||
jc - JSON Convert `iostat` command output streaming parser
|
jc - JSON Convert `iostat` command output streaming parser
|
||||||
|
|
||||||
@ -108,7 +108,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.ip_address"></a>
|
<a id="jc.parsers.ip_address"></a>
|
||||||
|
|
||||||
# jc.parsers.ip\_address
|
# jc.parsers.ip_address
|
||||||
|
|
||||||
jc - JSON Convert IP Address string parser
|
jc - JSON Convert IP Address string parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.ip_route"></a>
|
<a id="jc.parsers.ip_route"></a>
|
||||||
|
|
||||||
# jc.parsers.ip\_route
|
# jc.parsers.ip_route
|
||||||
|
|
||||||
jc - JSON Convert `ip route` command output parser
|
jc - JSON Convert `ip route` command output parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.iw_scan"></a>
|
<a id="jc.parsers.iw_scan"></a>
|
||||||
|
|
||||||
# jc.parsers.iw\_scan
|
# jc.parsers.iw_scan
|
||||||
|
|
||||||
jc - JSON Convert `iw dev <device> scan` command output parser
|
jc - JSON Convert `iw dev <device> scan` command output parser
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.jar_manifest"></a>
|
<a id="jc.parsers.jar_manifest"></a>
|
||||||
|
|
||||||
# jc.parsers.jar\_manifest
|
# jc.parsers.jar_manifest
|
||||||
|
|
||||||
jc - JSON Convert Java `MANIFEST.MF` file parser
|
jc - JSON Convert Java `MANIFEST.MF` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.kv_dup"></a>
|
<a id="jc.parsers.kv_dup"></a>
|
||||||
|
|
||||||
# jc.parsers.kv\_dup
|
# jc.parsers.kv_dup
|
||||||
|
|
||||||
jc - JSON Convert `Key/Value` with duplicate key file and string parser
|
jc - JSON Convert `Key/Value` with duplicate key file and string parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.ls_s"></a>
|
<a id="jc.parsers.ls_s"></a>
|
||||||
|
|
||||||
# jc.parsers.ls\_s
|
# jc.parsers.ls_s
|
||||||
|
|
||||||
jc - JSON Convert `ls` and `vdir` command output streaming parser
|
jc - JSON Convert `ls` and `vdir` command output streaming parser
|
||||||
|
|
||||||
@ -77,7 +77,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.lsb_release"></a>
|
<a id="jc.parsers.lsb_release"></a>
|
||||||
|
|
||||||
# jc.parsers.lsb\_release
|
# jc.parsers.lsb_release
|
||||||
|
|
||||||
jc - JSON Convert `lsb_release` command parser
|
jc - JSON Convert `lsb_release` command parser
|
||||||
|
|
||||||
@ -40,7 +40,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -127,7 +127,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.mpstat_s"></a>
|
<a id="jc.parsers.mpstat_s"></a>
|
||||||
|
|
||||||
# jc.parsers.mpstat\_s
|
# jc.parsers.mpstat_s
|
||||||
|
|
||||||
jc - JSON Convert `mpstat` command output streaming parser
|
jc - JSON Convert `mpstat` command output streaming parser
|
||||||
|
|
||||||
@ -100,7 +100,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data: Iterable[str],
|
def parse(data: Iterable[str],
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False,
|
quiet: bool = False,
|
||||||
|
101
docs/parsers/needrestart.md
Normal file
101
docs/parsers/needrestart.md
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
|
<a id="jc.parsers.needrestart"></a>
|
||||||
|
|
||||||
|
# jc.parsers.needrestart
|
||||||
|
|
||||||
|
jc - JSON Convert `needrestart -b` command output parser
|
||||||
|
|
||||||
|
Usage (cli):
|
||||||
|
|
||||||
|
$ needrestart -b | jc --needrestart
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
$ jc needrestart -b
|
||||||
|
|
||||||
|
Usage (module):
|
||||||
|
|
||||||
|
import jc
|
||||||
|
result = jc.parse('needrestart', needrestart_command_output)
|
||||||
|
|
||||||
|
Schema:
|
||||||
|
|
||||||
|
{
|
||||||
|
"version": string,
|
||||||
|
"running_kernel_version": string,
|
||||||
|
"expected_kernel_version": string,
|
||||||
|
"kernel_status": integer,
|
||||||
|
"container": string,
|
||||||
|
"session": [
|
||||||
|
string
|
||||||
|
],
|
||||||
|
"service": [
|
||||||
|
string
|
||||||
|
],
|
||||||
|
"pid": [
|
||||||
|
string
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
$ needrestart -b | jc --needrestart -p
|
||||||
|
{
|
||||||
|
"version": "2.1",
|
||||||
|
"running_kernel_version": "3.19.3-tl1+",
|
||||||
|
"expected_kernel_version": "3.19.3-tl1+",
|
||||||
|
"kernel_status": 1,
|
||||||
|
"container": "LXC web1",
|
||||||
|
"session": [
|
||||||
|
"metabase @ user manager service",
|
||||||
|
"root @ session #28017"
|
||||||
|
],
|
||||||
|
"service": [
|
||||||
|
"systemd-journald.service",
|
||||||
|
"systemd-machined.service"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
$ needrestart -b | jc --needrestart -p -r
|
||||||
|
{
|
||||||
|
"needrestart_ver": "2.1",
|
||||||
|
"needrestart_kcur": "3.19.3-tl1+",
|
||||||
|
"needrestart_kexp": "3.19.3-tl1+",
|
||||||
|
"needrestart_ksta": "1",
|
||||||
|
"needrestart_cont": "LXC web1",
|
||||||
|
"needrestart_sess": [
|
||||||
|
"metabase @ user manager service",
|
||||||
|
"root @ session #28017"
|
||||||
|
],
|
||||||
|
"needrestart_svc": [
|
||||||
|
"systemd-journald.service",
|
||||||
|
"systemd-machined.service"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
<a id="jc.parsers.needrestart.parse"></a>
|
||||||
|
|
||||||
|
### parse
|
||||||
|
|
||||||
|
```python
|
||||||
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
|
```
|
||||||
|
|
||||||
|
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/needrestart.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/needrestart.py)
|
||||||
|
|
||||||
|
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.nsd_control"></a>
|
<a id="jc.parsers.nsd_control"></a>
|
||||||
|
|
||||||
# jc.parsers.nsd\_control
|
# jc.parsers.nsd_control
|
||||||
|
|
||||||
jc - JSON Convert `nsd-control` command output parser
|
jc - JSON Convert `nsd-control` command output parser
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.os_prober"></a>
|
<a id="jc.parsers.os_prober"></a>
|
||||||
|
|
||||||
# jc.parsers.os\_prober
|
# jc.parsers.os_prober
|
||||||
|
|
||||||
jc - JSON Convert `os-prober` command output parser
|
jc - JSON Convert `os-prober` command output parser
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.os_release"></a>
|
<a id="jc.parsers.os_release"></a>
|
||||||
|
|
||||||
# jc.parsers.os\_release
|
# jc.parsers.os_release
|
||||||
|
|
||||||
jc - JSON Convert `/etc/os-release` file parser
|
jc - JSON Convert `/etc/os-release` file parser
|
||||||
|
|
||||||
@ -65,7 +65,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.path_list"></a>
|
<a id="jc.parsers.path_list"></a>
|
||||||
|
|
||||||
# jc.parsers.path\_list
|
# jc.parsers.path_list
|
||||||
|
|
||||||
jc - JSON Convert POSIX path list string parser
|
jc - JSON Convert POSIX path list string parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.pci_ids"></a>
|
<a id="jc.parsers.pci_ids"></a>
|
||||||
|
|
||||||
# jc.parsers.pci\_ids
|
# jc.parsers.pci_ids
|
||||||
|
|
||||||
jc - JSON Convert `pci.ids` file parser
|
jc - JSON Convert `pci.ids` file parser
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -54,7 +54,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.pidstat_s"></a>
|
<a id="jc.parsers.pidstat_s"></a>
|
||||||
|
|
||||||
# jc.parsers.pidstat\_s
|
# jc.parsers.pidstat_s
|
||||||
|
|
||||||
jc - JSON Convert `pidstat -H` command output streaming parser
|
jc - JSON Convert `pidstat -H` command output streaming parser
|
||||||
|
|
||||||
@ -86,7 +86,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data: Iterable[str],
|
def parse(data: Iterable[str],
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False,
|
quiet: bool = False,
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.ping_s"></a>
|
<a id="jc.parsers.ping_s"></a>
|
||||||
|
|
||||||
# jc.parsers.ping\_s
|
# jc.parsers.ping_s
|
||||||
|
|
||||||
jc - JSON Convert `ping` command output streaming parser
|
jc - JSON Convert `ping` command output streaming parser
|
||||||
|
|
||||||
@ -86,7 +86,6 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@add_jc_meta
|
|
||||||
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
def parse(data, raw=False, quiet=False, ignore_exceptions=False)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.pip_list"></a>
|
<a id="jc.parsers.pip_list"></a>
|
||||||
|
|
||||||
# jc.parsers.pip\_list
|
# jc.parsers.pip_list
|
||||||
|
|
||||||
jc - JSON Convert `pip-list` command output parser
|
jc - JSON Convert `pip-list` command output parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.pip_show"></a>
|
<a id="jc.parsers.pip_show"></a>
|
||||||
|
|
||||||
# jc.parsers.pip\_show
|
# jc.parsers.pip_show
|
||||||
|
|
||||||
jc - JSON Convert `pip-show` command output parser
|
jc - JSON Convert `pip-show` command output parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.pkg_index_apk"></a>
|
<a id="jc.parsers.pkg_index_apk"></a>
|
||||||
|
|
||||||
# jc.parsers.pkg\_index\_apk
|
# jc.parsers.pkg_index_apk
|
||||||
|
|
||||||
jc - JSON Convert Alpine Linux Package Index files
|
jc - JSON Convert Alpine Linux Package Index files
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.pkg_index_deb"></a>
|
<a id="jc.parsers.pkg_index_deb"></a>
|
||||||
|
|
||||||
# jc.parsers.pkg\_index\_deb
|
# jc.parsers.pkg_index_deb
|
||||||
|
|
||||||
jc - JSON Convert Debian Package Index file parser
|
jc - JSON Convert Debian Package Index file parser
|
||||||
|
|
||||||
@ -132,7 +132,7 @@ Examples:
|
|||||||
```python
|
```python
|
||||||
def parse(data: str,
|
def parse(data: str,
|
||||||
raw: bool = False,
|
raw: bool = False,
|
||||||
quiet: bool = False) -> List[JSONDictType]
|
quiet: bool = False) -> List[Dict[str, Any]]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_buddyinfo"></a>
|
<a id="jc.parsers.proc_buddyinfo"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_buddyinfo
|
# jc.parsers.proc_buddyinfo
|
||||||
|
|
||||||
jc - JSON Convert `/proc/buddyinfo` file parser
|
jc - JSON Convert `/proc/buddyinfo` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_cmdline"></a>
|
<a id="jc.parsers.proc_cmdline"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_cmdline
|
# jc.parsers.proc_cmdline
|
||||||
|
|
||||||
jc - JSON Convert `/proc/cmdline` file parser
|
jc - JSON Convert `/proc/cmdline` file parser
|
||||||
|
|
||||||
@ -71,7 +71,7 @@ Examples:
|
|||||||
### parse
|
### parse
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def parse(data: str, raw: bool = False, quiet: bool = False) -> JSONDictType
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict[str, Any]
|
||||||
```
|
```
|
||||||
|
|
||||||
Main text parsing function
|
Main text parsing function
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_consoles"></a>
|
<a id="jc.parsers.proc_consoles"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_consoles
|
# jc.parsers.proc_consoles
|
||||||
|
|
||||||
jc - JSON Convert `/proc/consoles` file parser
|
jc - JSON Convert `/proc/consoles` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_cpuinfo"></a>
|
<a id="jc.parsers.proc_cpuinfo"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_cpuinfo
|
# jc.parsers.proc_cpuinfo
|
||||||
|
|
||||||
jc - JSON Convert `/proc/cpuinfo` file parser
|
jc - JSON Convert `/proc/cpuinfo` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_crypto"></a>
|
<a id="jc.parsers.proc_crypto"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_crypto
|
# jc.parsers.proc_crypto
|
||||||
|
|
||||||
jc - JSON Convert `/proc/crypto` file parser
|
jc - JSON Convert `/proc/crypto` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_devices"></a>
|
<a id="jc.parsers.proc_devices"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_devices
|
# jc.parsers.proc_devices
|
||||||
|
|
||||||
jc - JSON Convert `/proc/devices` file parser
|
jc - JSON Convert `/proc/devices` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_diskstats"></a>
|
<a id="jc.parsers.proc_diskstats"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_diskstats
|
# jc.parsers.proc_diskstats
|
||||||
|
|
||||||
jc - JSON Convert `/proc/diskstats` file parser
|
jc - JSON Convert `/proc/diskstats` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_driver_rtc"></a>
|
<a id="jc.parsers.proc_driver_rtc"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_driver\_rtc
|
# jc.parsers.proc_driver_rtc
|
||||||
|
|
||||||
jc - JSON Convert `/proc/driver/rtc` file parser
|
jc - JSON Convert `/proc/driver/rtc` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_filesystems"></a>
|
<a id="jc.parsers.proc_filesystems"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_filesystems
|
# jc.parsers.proc_filesystems
|
||||||
|
|
||||||
jc - JSON Convert `/proc/filesystems` file parser
|
jc - JSON Convert `/proc/filesystems` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_interrupts"></a>
|
<a id="jc.parsers.proc_interrupts"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_interrupts
|
# jc.parsers.proc_interrupts
|
||||||
|
|
||||||
jc - JSON Convert `/proc/interrupts` file parser
|
jc - JSON Convert `/proc/interrupts` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_iomem"></a>
|
<a id="jc.parsers.proc_iomem"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_iomem
|
# jc.parsers.proc_iomem
|
||||||
|
|
||||||
jc - JSON Convert `/proc/iomem` file parser
|
jc - JSON Convert `/proc/iomem` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_ioports"></a>
|
<a id="jc.parsers.proc_ioports"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_ioports
|
# jc.parsers.proc_ioports
|
||||||
|
|
||||||
jc - JSON Convert `/proc/ioports` file parser
|
jc - JSON Convert `/proc/ioports` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_loadavg"></a>
|
<a id="jc.parsers.proc_loadavg"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_loadavg
|
# jc.parsers.proc_loadavg
|
||||||
|
|
||||||
jc - JSON Convert `/proc/loadavg` file parser
|
jc - JSON Convert `/proc/loadavg` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_locks"></a>
|
<a id="jc.parsers.proc_locks"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_locks
|
# jc.parsers.proc_locks
|
||||||
|
|
||||||
jc - JSON Convert `/proc/locks` file parser
|
jc - JSON Convert `/proc/locks` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_meminfo"></a>
|
<a id="jc.parsers.proc_meminfo"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_meminfo
|
# jc.parsers.proc_meminfo
|
||||||
|
|
||||||
jc - JSON Convert `/proc/meminfo` file parser
|
jc - JSON Convert `/proc/meminfo` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_modules"></a>
|
<a id="jc.parsers.proc_modules"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_modules
|
# jc.parsers.proc_modules
|
||||||
|
|
||||||
jc - JSON Convert `/proc/modules` file parser
|
jc - JSON Convert `/proc/modules` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_mtrr"></a>
|
<a id="jc.parsers.proc_mtrr"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_mtrr
|
# jc.parsers.proc_mtrr
|
||||||
|
|
||||||
jc - JSON Convert `/proc/mtrr` file parser
|
jc - JSON Convert `/proc/mtrr` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_arp"></a>
|
<a id="jc.parsers.proc_net_arp"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_arp
|
# jc.parsers.proc_net_arp
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/arp` file parser
|
jc - JSON Convert `/proc/net/arp` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_dev"></a>
|
<a id="jc.parsers.proc_net_dev"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_dev
|
# jc.parsers.proc_net_dev
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/dev` file parser
|
jc - JSON Convert `/proc/net/dev` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_dev_mcast"></a>
|
<a id="jc.parsers.proc_net_dev_mcast"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_dev\_mcast
|
# jc.parsers.proc_net_dev_mcast
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/dev_mcast` file parser
|
jc - JSON Convert `/proc/net/dev_mcast` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_if_inet6"></a>
|
<a id="jc.parsers.proc_net_if_inet6"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_if\_inet6
|
# jc.parsers.proc_net_if_inet6
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/if_inet6` file parser
|
jc - JSON Convert `/proc/net/if_inet6` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_igmp"></a>
|
<a id="jc.parsers.proc_net_igmp"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_igmp
|
# jc.parsers.proc_net_igmp
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/igmp` file parser
|
jc - JSON Convert `/proc/net/igmp` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_igmp6"></a>
|
<a id="jc.parsers.proc_net_igmp6"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_igmp6
|
# jc.parsers.proc_net_igmp6
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/igmp6` file parser
|
jc - JSON Convert `/proc/net/igmp6` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_ipv6_route"></a>
|
<a id="jc.parsers.proc_net_ipv6_route"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_ipv6\_route
|
# jc.parsers.proc_net_ipv6_route
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/ipv6_route` file parser
|
jc - JSON Convert `/proc/net/ipv6_route` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_netlink"></a>
|
<a id="jc.parsers.proc_net_netlink"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_netlink
|
# jc.parsers.proc_net_netlink
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/netlink` file parser
|
jc - JSON Convert `/proc/net/netlink` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_netstat"></a>
|
<a id="jc.parsers.proc_net_netstat"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_netstat
|
# jc.parsers.proc_net_netstat
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/netstat` file parser
|
jc - JSON Convert `/proc/net/netstat` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_packet"></a>
|
<a id="jc.parsers.proc_net_packet"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_packet
|
# jc.parsers.proc_net_packet
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/packet` file parser
|
jc - JSON Convert `/proc/net/packet` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_protocols"></a>
|
<a id="jc.parsers.proc_net_protocols"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_protocols
|
# jc.parsers.proc_net_protocols
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/protocols` file parser
|
jc - JSON Convert `/proc/net/protocols` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_route"></a>
|
<a id="jc.parsers.proc_net_route"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_route
|
# jc.parsers.proc_net_route
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/route` file parser
|
jc - JSON Convert `/proc/net/route` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_tcp"></a>
|
<a id="jc.parsers.proc_net_tcp"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_tcp
|
# jc.parsers.proc_net_tcp
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/tcp` and `proc/net/tcp6` file parser
|
jc - JSON Convert `/proc/net/tcp` and `proc/net/tcp6` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_net_unix"></a>
|
<a id="jc.parsers.proc_net_unix"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_net\_unix
|
# jc.parsers.proc_net_unix
|
||||||
|
|
||||||
jc - JSON Convert `/proc/net/unix` file parser
|
jc - JSON Convert `/proc/net/unix` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pagetypeinfo"></a>
|
<a id="jc.parsers.proc_pagetypeinfo"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pagetypeinfo
|
# jc.parsers.proc_pagetypeinfo
|
||||||
|
|
||||||
jc - JSON Convert `/proc/pagetypeinfo` file parser
|
jc - JSON Convert `/proc/pagetypeinfo` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_partitions"></a>
|
<a id="jc.parsers.proc_partitions"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_partitions
|
# jc.parsers.proc_partitions
|
||||||
|
|
||||||
jc - JSON Convert `/proc/partitions` file parser
|
jc - JSON Convert `/proc/partitions` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_fdinfo"></a>
|
<a id="jc.parsers.proc_pid_fdinfo"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_fdinfo
|
# jc.parsers.proc_pid_fdinfo
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/fdinfo/<fd>` file parser
|
jc - JSON Convert `/proc/<pid>/fdinfo/<fd>` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_io"></a>
|
<a id="jc.parsers.proc_pid_io"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_io
|
# jc.parsers.proc_pid_io
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/io` file parser
|
jc - JSON Convert `/proc/<pid>/io` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_maps"></a>
|
<a id="jc.parsers.proc_pid_maps"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_maps
|
# jc.parsers.proc_pid_maps
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/maps` file parser
|
jc - JSON Convert `/proc/<pid>/maps` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_mountinfo"></a>
|
<a id="jc.parsers.proc_pid_mountinfo"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_mountinfo
|
# jc.parsers.proc_pid_mountinfo
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/mountinfo` file parser
|
jc - JSON Convert `/proc/<pid>/mountinfo` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_numa_maps"></a>
|
<a id="jc.parsers.proc_pid_numa_maps"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_numa\_maps
|
# jc.parsers.proc_pid_numa_maps
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/numa_maps` file parser
|
jc - JSON Convert `/proc/<pid>/numa_maps` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_smaps"></a>
|
<a id="jc.parsers.proc_pid_smaps"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_smaps
|
# jc.parsers.proc_pid_smaps
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/smaps` file parser
|
jc - JSON Convert `/proc/<pid>/smaps` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_stat"></a>
|
<a id="jc.parsers.proc_pid_stat"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_stat
|
# jc.parsers.proc_pid_stat
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/stat` file parser
|
jc - JSON Convert `/proc/<pid>/stat` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_statm"></a>
|
<a id="jc.parsers.proc_pid_statm"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_statm
|
# jc.parsers.proc_pid_statm
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/statm` file parser
|
jc - JSON Convert `/proc/<pid>/statm` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_pid_status"></a>
|
<a id="jc.parsers.proc_pid_status"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_pid\_status
|
# jc.parsers.proc_pid_status
|
||||||
|
|
||||||
jc - JSON Convert `/proc/<pid>/status` file parser
|
jc - JSON Convert `/proc/<pid>/status` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_slabinfo"></a>
|
<a id="jc.parsers.proc_slabinfo"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_slabinfo
|
# jc.parsers.proc_slabinfo
|
||||||
|
|
||||||
jc - JSON Convert `/proc/slabinfo` file parser
|
jc - JSON Convert `/proc/slabinfo` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_softirqs"></a>
|
<a id="jc.parsers.proc_softirqs"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_softirqs
|
# jc.parsers.proc_softirqs
|
||||||
|
|
||||||
jc - JSON Convert `/proc/softirqs` file parser
|
jc - JSON Convert `/proc/softirqs` file parser
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Home](https://kellyjonbrazil.github.io/jc/)
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
||||||
<a id="jc.parsers.proc_stat"></a>
|
<a id="jc.parsers.proc_stat"></a>
|
||||||
|
|
||||||
# jc.parsers.proc\_stat
|
# jc.parsers.proc_stat
|
||||||
|
|
||||||
jc - JSON Convert `/proc/stat` file parser
|
jc - JSON Convert `/proc/stat` file parser
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user