PodmanList - command /usr/bin/podman (images|ps)

Parse the output of command “podman_list_images” and “podman_list_containers”, which have very similar formats.

The header line is parsed and used as the names for the remaining columns. All fields in both header and data are assumed to be separated by at least three spaces. This allows single spaces in values and headers, so headers such as ‘IMAGE ID’ are captured as is.

If the header line and at least one data line are not found, no data is stored.

Each row is stored as a dictionary, keyed on the header fields. The data is available in two formats:

  • The old format is a list of row dictionaries.

  • The new format stores each dictionary in a dictionary keyed on the value of a given field, given by the subclass.

class insights.parsers.podman_list.PodmanList(context, extra_bad_lines=[])[source]

Bases: insights.core.CommandParser

A general class for parsing tabular podman list information. Parsing rules are:

  • The first line is the header line.

  • The other lines are data lines.

  • All fields line up vertically.

  • Fields are separated from each other by at least three spaces.

  • Some fields can contain nothing, and this is shown as spaces, so we need to catch that and turn it into None.

Why not just use hard-coded fields and columns? So that we can adapt to different output lists.

Raises
  • NotImplementedError -- If key_field or attr_name is not defined

  • SkipException -- If no data to parse

parse_content(content)[source]

This method must be implemented by classes based on this class.

class insights.parsers.podman_list.PodmanListContainers(context, extra_bad_lines=[])[source]

Bases: insights.parsers.podman_list.PodmanList

Handle the list of podman containers using the PodmanList parser class.

Sample output of command podman ps --all --no-trunc --size:

CONTAINER ID                                                       IMAGE                                                              COMMAND                                            CREATED             STATUS                        PORTS                  NAMES               SIZE
03e2861336a76e29155836113ff6560cb70780c32f95062642993b2b3d0fc216   rhel7_httpd                                                        "/usr/sbin/httpd -DFOREGROUND"                     45 seconds ago      Up 37 seconds                 0.0.0.0:8080->80/tcp   angry_saha          796 B (virtual 669.2 MB)
95516ea08b565e37e2a4bca3333af40a240c368131b77276da8dec629b7fe102   bd8638c869ea40a9269d87e9af6741574562af9ee013e03ac2745fb5f59e2478   "/bin/sh -c 'yum install -y vsftpd-2.2.2-6.el6'"   51 minutes ago      Exited (137) 50 minutes ago                          tender_rosalind     4.751 MB (virtual 200.4 MB)
rows

List of row dictionaries.

Type

list

containers

Dictionary keyed on the value of the “NAMES” field

Type

dict

Examples

>>> containers.rows[0]['NAMES']
'angry_saha'
>>> containers.rows[0]['STATUS']
'Up 37 seconds'
>>> containers.containers['tender_rosalind']['STATUS']
'Exited (137) 18 hours ago'
class insights.parsers.podman_list.PodmanListImages(context, extra_bad_lines=[])[source]

Bases: insights.parsers.podman_list.PodmanList

Handle the list of podman images using the PodmanList parser class.

Sample output of command podman images --all --no-trunc --digests:

REPOSITORY                           TAG                 DIGEST              IMAGE ID                                                           CREATED             SIZE
rhel6_vsftpd                         latest              <none>              412b684338a1178f0e5ad68a5fd00df01a10a18495959398b2cf92c2033d3d02   37 minutes ago      459.5 MB
rhel7_imagemagick                    latest              <none>              882ab98aae5394aebe91fe6d8a4297fa0387c3cfd421b2d892bddf218ac373b2   4 days ago          785.4 MB
rhel6_nss-softokn                    latest              <none>              dd87dad2c7841a19263ae2dc96d32c501ee84a92f56aed75bb67f57efe4e48b5   5 days ago          449.7 MB
rows

List of row dictionaries.

Type

list

images

Dictionary keyed on the value of the “REPOSITORY” fileld

Type

dict

Examples

>>> images.rows[0]['REPOSITORY']
'rhel6_vsftpd'
>>> images.rows[1]['SIZE']
'785.4 MB'
>>> images.images['rhel6_vsftpd']['CREATED']
'37 minutes ago'