ethxmlextract - Man Page

Name

ethxmlextract

Extracts element values from XML input and outputs the data in CSV format. ethxmlextract is intended to be used with ethreport, to parse and filter its XML output, and to allow the filtered output to be imported into other tools such as spreadsheets and customer-written scripts. ethxmlextract can also be used with any well-formed XML stream to extract element values into a delimited format.

Five sample scripts are available as prototypes for customized scripts. They combine various calls to ethreport with a call to ethxmlextract with commonly used parameters.

Syntax

ethxmlextract [-v][-H][-d  delimiter][-e  extract_element]

[-s  suppress_element][-X  input_file] [-P  param_file]

Options

--help

Produces full help text.

-v/--verbose

Produces verbose output. Includes output progress reports during extraction and output prepended wildcard characters on element names in output header record.

-H/--noheader

Does not output element name header record.

-d/--delimit delimiter

Uses single character or string as the delimiter between element names and element values. Default is semicolon.

-e/--extract extract_element

Specifies the name of an XML element to extract. Elements can be nested in any order, but are output in the order specified. Elements can be specified multiple times, with a different attribute name or attribute value. An optional attribute (or attribute and value) can also be specified with elements:

  • -e element
  • -e element:attrName
  • -e element:attrName:attrValue
NOTE:
  • Elements can be compound values separated by a dot. For example, Switches.Node is a Node element contained within a Switches element.
  • To output the attribute value as opposed to the element value, a specification such as -e NICs.Node:id can be used. This will output the value of the id attribute of any Node elements within NICs element.
  • If desired, a specific element can be selected by its attribute value, such as -e NICs.Node.PortInfo:LinkSpeedActive:100Gb, which will output the value of the PortInfo element within Node element where the PortInfo element has an attribute of LinkSpeedActive with a value of 100Gb.
  • A given element can be specified multiple times each with a different AttrName or attrValue.
-s/--suppress suppress_element

Specifies the name of an XML element to suppress extraction. Can be used multiple times (in any order). Supports the same syntax as -e.

-X/--infile input_file

Parses XML from input_file.

-P/--pfile param_file

Reads command parameters from param_file.

Example

Here is an example of ethreport output filtered by ethxmlextract :

# ethreport -o comps -x | ethxmlextract -d \; -e NodeDesc -e ChassisID -e NumPorts -s Neighbor

Getting All Fabric Records...

Done Getting All Fabric Records

NodeDesc;ChassisID;NumPorts

hdarei001;0x0000444ca8e9ddd5;41

hds1fnc7041-eno1;0x0000a4bf01553c89;1

hds1fnc7041-eth1;0x0000a4bf01553c89;1

hds1fnc7061-eth2;0x0000a4bf015540f0;1

hds1fnc7061-eno1;0x0000a4bf015540f0;1

hds1fnc7061-eth1;0x0000a4bf015540f0;1

hds1fnc7081-eth2;0x0000a4bf01554175;1

hds1fnc7081-eno1;0x0000a4bf01554175;1

hds1fnc7081-eth1;0x0000a4bf01554175;1

Details

ethxmlextract is a flexible and powerful tool to process an XML stream. The tool:

ethxmlextract takes the XML input stream from either stdin or a specified input file. ethxmlextract does not use or require a connection to a fabric.

ethxmlextract works from two lists of elements supplied as command line or input parameters. The first is a list of elements whose values are to be extracted, called extraction elements

suppression elements

When a suppression element is encountered, then no extraction is performed during the extent of that element, from start through end. Suppression is maintained for elements specified inside the suppression element, including elements that may happen to match extraction elements. Suppression can be used to prevent extraction in sections of XML that are present, but not of current interest. For example, NodeDesc or IfAddr inside a Neighbor specification of ethreport can be suppressed.

ethxmlextract attempts to generate extraction records with data values that are valid at the same time. Specifying extraction elements that are valid in the same scope produces a single record for each group of extraction elements. However, mixing extraction elements from different scopes (including different XML levels) may cause ethxmlextract to produce multiple records.

ethxmlextract outputs an extraction record under the following conditions:

Element names (extraction or suppression) can be made context-sensitive with an enclosing element name using the syntax element1.element2. In this case, element2 is extracted (or extraction is suppressed) only when element2 is enclosed by element1.

The syntax also allows ' * ' to be specified as a wildcard. In this case, *.element3 specifies element3 enclosed by any element or sequence of elements (for example, element1.element3 or element1.element2.element3). Similarly, element1.*.element3 specifies element3 enclosed by element1 with any number of (but at least 1) intermediate elements.

ethxmlextract prepends any entered element name not containing a ' * ' (anywhere) with ' *. ', matching the element regardless of the enclosing elements.

NOTE: Any element names that include a wildcard should be quoted to the shell attempting to wildcard match against filenames.

At the beginning of operation, ethxmlextract, by default, outputs a delimited header record containing the names of the extraction elements. The order of the names is the same as specified on the command line and is the same order as that of the extraction record. Output of the header record can be disabled with the -H option. By default, element names are shown as they were entered on the command line. The -v option causes element names to be output as they are used during extraction, with any prepended wildcard characters.

Options (parameters) to ethxmlextract can be specified on the command line, with a parameter file, or using both methods. A parameter file is specified with -P param_file. When a parameter file specification is encountered on the command line, option processing on the command line is suspended, the parameter file is read and processed entirely, and then command line processing is resumed.

Option syntax within a parameter file is the same as on the command line. Multiple parameter file specifications can be made, on the command line or within other parameter files. At each point that a parameter file is specified, current option processing is suspended while the parameter file is processed, then resumed. Options are processed in the order they are encountered on the command line or in parameter files. A parameter file can be up to 8192 bytes in size and may contain up to 512 parameters.

Info

Intel Corporation Copyright(C) 2020-2024 EFSFFCLIRG (Man Page)