1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-23 00:29:59 +02:00
Files
jc/docs/parsers/tracepath.md
2022-01-25 17:07:47 -08:00

3.1 KiB

Home

jc.parsers.tracepath

jc - JSON CLI output utility tracepath command output parser

Supports tracepath and tracepath6 output.

Usage (cli):

$ tracepath 1.2.3.4 | jc --tracepath

or

$ jc tracepath 1.2.3.4

Usage (module):

import jc result = jc.parse('tracepath', tracepath_command_output)

or

import jc.parsers.tracepath result = jc.parsers.tracepath.parse(tracepath_command_output)

Schema:

{ "pmtu": integer, "forward_hops": integer, "return_hops": integer, "hops": [ { "ttl": integer, "guess": boolean, "host": string, "reply_ms": float, "pmtu": integer, "asymmetric_difference": integer, "reached": boolean } ] }

Examples:

$ tracepath6 3ffe:2400:0:109::2 | jc --tracepath -p {

  • "pmtu" - 1480,

  • "forward_hops" - 2,

  • "return_hops" - 2,

  • "hops" - [ {

  • "ttl" - 1,

  • "guess" - true,

  • "host" - "[LOCALHOST]",

  • "reply_ms" - null,

  • "pmtu" - 1500,

  • "asymmetric_difference" - null,

  • "reached" - false }, {

  • "ttl" - 1,

  • "guess" - false,

  • "host" - "dust.inr.ac.ru",

  • "reply_ms" - 0.411,

  • "pmtu" - null,

  • "asymmetric_difference" - null,

  • "reached" - false }, {

  • "ttl" - 2,

  • "guess" - false,

  • "host" - "dust.inr.ac.ru",

  • "reply_ms" - 0.39,

  • "pmtu" - 1480,

  • "asymmetric_difference" - 1,

  • "reached" - false }, {

  • "ttl" - 2,

  • "guess" - false,

  • "host" - "3ffe:2400:0:109::2",

  • "reply_ms" - 463.514,

  • "pmtu" - null,

  • "asymmetric_difference" - null,

  • "reached" - true } ] }

    $ tracepath6 3ffe:2400:0:109::2 | jc --tracepath -p -r {

  • "pmtu" - "1480",

  • "forward_hops" - "2",

  • "return_hops" - "2",

  • "hops" - [ {

  • "ttl" - "1",

  • "guess" - true,

  • "host" - "[LOCALHOST]",

  • "reply_ms" - null,

  • "pmtu" - "1500",

  • "asymmetric_difference" - null,

  • "reached" - false }, {

  • "ttl" - "1",

  • "guess" - false,

  • "host" - "dust.inr.ac.ru",

  • "reply_ms" - "0.411",

  • "pmtu" - null,

  • "asymmetric_difference" - null,

  • "reached" - false }, {

  • "ttl" - "2",

  • "guess" - false,

  • "host" - "dust.inr.ac.ru",

  • "reply_ms" - "0.390",

  • "pmtu" - "1480",

  • "asymmetric_difference" - "1",

  • "reached" - false }, {

  • "ttl" - "2",

  • "guess" - false,

  • "host" - "3ffe:2400:0:109::2",

  • "reply_ms" - "463.514",

  • "pmtu" - null,

  • "asymmetric_difference" - null,

  • "reached" - true } ] }

info Objects

class info()

Provides parser metadata (version, author, etc.)

parse

def parse(data, raw=False, quiet=False)

Main text parsing function

Arguments:

  • 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

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