API Documentation

insights.core

class insights.core.AttributeDict(*args, **kwargs)[source]

Bases: dict

Class to convert the access to each item in a dict as attribute.

Warning

Deprecated class, please set attributes explicitly.

Examples

>>> data = {
... "fact1":"fact 1"
... "fact2":"fact 2"
... "fact3":"fact 3"
... }
>>> d_obj = AttributeDict(data)
{'fact1': 'fact 1', 'fact2': 'fact 2', 'fact3': 'fact 3'}
>>> d_obj['fact1']
'fact 1'
>>> d_obj.get('fact1')
'fact 1'
>>> d_obj.fact1
'fact 1'
>>> 'fact2' in d_obj
True
>>> d_obj.get('fact3', default='no fact')
'fact 3'
>>> d_obj.get('fact4', default='no fact')
'no fact'
class insights.core.CommandParser(context, extra_bad_lines=[])[source]

Bases: insights.core.Parser

This class checks output from the command defined in the spec. If context.content contains a single line and that line is included in the bad_lines list a ContentException is raised

static validate_lines(results, bad_lines)[source]

If results contains a single line and that line is included in the bad_lines list, this function returns False. If no bad line is found the function returns True

Parameters

results (str) -- The results string of the output from the command defined by the command spec.

Returns

True for no bad lines or False for bad line found.

Return type

(Boolean)

class insights.core.ConfigCombiner(confs, main_file, include_finder)[source]

Bases: insights.core.ConfigComponent

Base Insights component class for Combiners of configuration files with include directives for supplementary configuration files. httpd and nginx are examples.

find_matches(confs, pattern)[source]
class insights.core.ConfigComponent[source]

Bases: object

property directives
find(*queries, **kwargs)[source]

Finds matching results anywhere in the configuration

find_all(*queries, **kwargs)

Finds matching results anywhere in the configuration

property sections
select(*queries, **kwargs)[source]

Given a list of queries, executes those queries against the set of Nodes. A Node has three primary attributes: name (str), attrs ([str|int]), and children ([Node]).

Nodes also have a value attribute that is either the first attribute (in the case of simple directives that only have one), or the string representation of all attributes joined by a single space.

Each positional argument to select represents a query against the name and/or attributes of the corresponding level of the configuration tree. The first argument queries root nodes, the second argument queries children of the root nodes, etc.

An individual query is either a single value or a tuple. A single value queries the name of a Node. A tuple queries the name and the attrs.

So: select(name_predicate) or select((name_predicate, attrs_predicate))

In general, select(pred1, pred2, pred3, …)

If a predicate is a simple value (string or int), an exact match is required for names, and an exact match of any attribute is required for attributes.

Examples: select(“Directory”) queries for all root nodes named Directory.

select(“Directory”, “Options”) queries for all root nodes named Directory that contain at least one child node named Options. Notice the argument positions: Directory is in position 1, and Options is in position 2.

select((“Directory”, “/”)) queries for all root nodes named Directory that contain an attribute exactly matching “/”. Notice this is one argument to select: a 2-tuple with predicates for name and attrs.

If you are only interested in attributes, just pass None for the name predicate in the tuple: select((None, “/”)) will return all root nodes with at least one attribute of “/”

In addition to exact matches, the elements of a query can be functions that accept the value corresponding to their position in the query. A handful of useful functions and boolean operators between them are provided.

select(startswith(“Dir”)) queries for all root nodes with names starting with “Dir”.

select(~startswith(“Dir”)) queries for all root nodes with names not starting with “Dir”.

select(startswith(“Dir”) | startswith(“Ali”)) queries for all root nodes with names starting with “Dir” or “Ali”. The return of | is a single callable passed in the first argument position of select.

select(~startswith(“Dir”) & ~startswith(“Ali”)) queries for all root nodes with names not starting with “Dir” or “Ali”.

If a function is in an attribute position, it is considered True if it returns True for any attribute.

For example, select((None, 80)) often will return the list of one Node [Listen 80]

select((“Directory”, startswith(“/var”))) will return all root nodes named Directory that also have an attribute starting with “/var”

If you know that your selection will only return one element, or you only want the first or last result of the query , pass one=first or one=last.

select((“Directory”, startswith(“/”)), one=last) will return the single root node for the last Directory entry starting with “/”

If instead of the root nodes that match you want the child nodes that caused the match, pass roots=False.

node = select((“Directory”, “/var/www/html”), “Options”, one=last, roots=False) might return the Options node if the Directory for “/var/www/html” was defined and contained an Options Directive. You could then access the attributes with node.attrs. If the query didn’t match anything, it would have returned None.

If you want to slide the query down the branches of the config, pass deep=True to select. That allows you to do conf.select(“Directory”, deep=True, roots=False) and get back all Directory nodes regardless of nesting depth.

conf.select() returns everything.

Available predicates are: & (infix boolean and) | (infix boolean or) ~ (prefix boolean not)

For ints or strings: eq (==) e.g. conf.select(“Directory, (“StartServers”, eq(4))) ge (>=) e.g. conf.select(“Directory, (“StartServers”, ge(4))) gt (>) le (<=) lt (<)

For strings: contains endswith startswith

class insights.core.ConfigParser(context)[source]

Bases: insights.core.Parser, insights.core.ConfigComponent

Base Insights component class for Parsers of configuration files.

Raises

SkipException -- When input content is empty.

lineat(pos)[source]
parse_content(content)[source]

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

parse_doc(content)[source]
class insights.core.FileListing(context)[source]

Bases: insights.core.Parser

Reads a series of concatenated directory listings and turns them into a dictionary of entities by name. Stores all the information for each directory entry for every entry that can be parsed, containing:

  • type (one of [bcdlps-])

  • permission string including ACL character

  • number of links

  • owner and group (as given in the listing)

  • size, or major and minor number for block and character devices

  • date (in the format given in the listing)

  • name

  • name of linked file, if a symlink

In addition, the raw line is always stored, even if the line doesn’t look like a directory entry.

Also provides a number of other conveniences, such as:

  • lists of regular and special files and subdirectory names for each directory, in the order found in the listing

  • total blocks allocated to all the entities in this directory

Note

For listings that only contain one directory, ls does not output the directory name. The directory is reverse engineered from the path given to the parser by Insights - this assumes the translation of spaces to underscores and ‘/’ to ‘.’ in paths. For example, ls -l /var/www/html will be translated to ls_-l_.var.www.html. The reverse translation will make mistakes, for example in translating .etc.yum.repos.d to /etc/yum/repos/d. Use caution in checking the paths when requesting single directories.

Parses the SELinux information if present in the listing. SELinux directory listings contain:

  • the type of file

  • the permissions block

  • the owner and group as given in the directory listing

  • the SELinux user, role, type and MLS

  • the name, and link destination if it’s a symlink

Sample input data looks like this:

/example_dir:
total 20
dr-xr-xr-x. 3 0 0 4096 Mar 4 16:19 .
-rw-r--r--. 1 0 0 123891 Aug 25 2015 config-3.10.0-229.14.1.el7.x86_64
lrwxrwxrwx. 1 0 0 11 Aug 4 2014 menu.lst -> ./grub.conf
brw-rw----. 1 0 6 253, 10 Aug 4 16:56 dm-10
crw-------. 1 0 0 10, 236 Jul 25 10:00 control

Examples

>>> file_listing
<insights.core.FileListing at 0x7f5319407450>
>>> '/example_dir' in file_listing
True
>>> file_listing.dir_contains('/example_dir', 'menu.lst')
True
>>> dir = file_listing.listing_of('/example_dir')
>>> dir['.']['type']
'd'
>>> dir['config-3.10.0-229.14.q.el7.x86_64']['size']
123891
>>> dir['dm-10']['major']
253
>>> dir['menu.lst']['link']
'./grub.conf'
dir_contains(directory, name)[source]

Does this directory contain this entry name?

dir_entry(directory, name)[source]

The parsed data for the given entry name in the given directory.

dirs_of(directory)[source]

The list of subdirectories in the given directory.

files_of(directory)[source]

The list of non-special files (i.e. not block or character files) in the given directory.

listing_of(directory)[source]

The listing of this directory, in a dictionary by entry name. All entries contain the original line as is in the ‘raw_entry’ key. Entries that can be parsed then have fields as described in the class description above.

parse_content(content)[source]

Called automatically to process the directory listing(s) contained in the content.

path_entry(path)[source]

The parsed data given a path, which is separated into its directory and entry name.

specials_of(directory)[source]

The list of block and character special files in the given directory.

total_of(directory)[source]

The total blocks of storage consumed by entries in this directory.

class insights.core.IniConfigFile(context)[source]

Bases: insights.core.ConfigParser

A class specifically for reading configuration files in ‘ini’ format.

The input file format supported by this class is:

[section 1]
key = value
; comment
# comment
[section 2]
key with spaces = value string
[section 3]
# Must implement parse_content in child class
# and pass allow_no_value=True to parent class
# to enable keys with no values
key_with_no_value

References

See Python RawConfigParser documentation for more information https://docs.python.org/2/library/configparser.html#rawconfigparser-objects

Examples

>>> class MyConfig(IniConfigFile):
...     pass
>>> content = '''
... [defaults]
... admin_token = ADMIN
... [program opts]
... memsize = 1024
... delay = 1.5
... [logging]
... log = true
... logging level = verbose
... '''.split()
>>> my_config = MyConfig(context_wrap(content, path='/etc/myconfig.conf'))
>>> 'program opts' in my_config
True
>>> my_config.sections()
['program opts', 'logging']
>>> my_config.defaults()
{'admin_token': 'ADMIN'}
>>> my_config.items('program opts')
{'memsize': 1024, 'delay': 1.5}
>>> my_config.get('logging', 'logging level')
'verbose'
>>> my_config.getint('program opts', 'memsize')
1024
>>> my_config.getfloat('program opts', 'delay')
1.5
>>> my_config.getboolean('logging', 'log')
True
>>> my_config.has_option('logging', 'log')
True
defaults()[source]

list: Return a dict of key/value pairs in the [default] section.

get(section, key)[source]

value: Get value for section and key.

getboolean(section, key)[source]

boolean: Get boolean value for section and key.

getfloat(section, key)[source]

float: Get float value for section and key.

getint(section, key)[source]

int: Get int value for section and key.

has_option(section, key)[source]

boolean: Returns True of section is present and has option key.

items(section)[source]

dict: Return a dictionary of key/value pairs for section.

parse_content(content, allow_no_value=False)[source]

Parses content of the config file.

In child class overload and call super to set flag allow_no_values and allow keys with no value in config file:

def parse_content(self, content):
    super(YourClass, self).parse_content(content,
                                         allow_no_values=True)
parse_doc(content)[source]
sections()[source]

list: Return a list of section names.

class insights.core.JSONParser(context)[source]

Bases: insights.core.Parser, insights.core.LegacyItemAccess

A parser class that reads JSON files. Base your own parser on this.

parse_content(content)[source]

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

class insights.core.LegacyItemAccess[source]

Bases: object

Mixin class to provide legacy access to self.data attribute.

Provides expected passthru functionality for classes that still use self.data as the primary data structure for all parsed information. Use this as a mixin on parsers that expect these methods to be present as they were previously.

Examples

>>> class MyParser(LegacyItemAccess, Parser):
...     def parse_content(self, content):
...         self.data = {}
...         for line in content:
...             if 'fact' in line:
...                 k, v = line.split('=')
...                 self.data[k.strip()] = v.strip()
>>> content = '''
... # Comment line
... fact1=fact 1
... fact2=fact 2
... fact3=fact 3
... '''.strip()
>>> my_parser = MyParser(context_wrap(content, path='/etc/path_to_content/content.conf'))
>>> my_parser.data
{'fact1': 'fact 1', 'fact2': 'fact 2', 'fact3': 'fact 3'}
>>> my_parser.file_path
'/etc/path_to_content/content.conf'
>>> my_parser.file_name
'content.conf'
>>> my_parser['fact1']
'fact 1'
>>> 'fact2' in my_parser
True
>>> my_parser.get('fact3', default='no fact')
'fact 3'
get(item, default=None)[source]

Returns value of key item in self.data or default if key is not present.

Parameters
  • item -- Key to get from self.data.

  • default -- Default value to return if key is not present.

Returns

String value of the stored item, or the default if not found.

Return type

(str)

class insights.core.LogFileOutput(context)[source]

Bases: insights.core.Parser

Class for parsing log file content.

Log file content is stored in raw format in the lines attribute.

Assume the log file content is:

Log file line one
Log file line two
Log file line three, and more

Examples

>>> class MyLogger(LogFileOutput):
...     pass
>>> MyLogger.keep_scan('get_one', 'one')
>>> MyLogger.keep_scan('get_three_and_more', ['three', 'more'])
>>> MyLogger.keep_scan('get_one_or_two', ['one', 'two'], check=any)
>>> MyLogger.last_scan('last_line_contains_file', 'file')
>>> MyLogger.keep_scan('last_2_lines_contain_file', 'file', num=2, reverse=True)
>>> MyLogger.keep_scan('last_3_lines_contain_line_and_t', ['line', 't'], num=3, reverse=True)
>>> MyLogger.token_scan('find_more', 'more')
>>> MyLogger.token_scan('find_four_and_more', ['four', 'more'])
>>> MyLogger.token_scan('find_four_or_more', ['four', 'more'], check=any)
>>> my_logger = MyLogger(context_wrap(contents, path='/var/log/mylog'))
>>> my_logger.file_path
'/var/log/mylog'
>>> my_logger.file_name
'mylog'
>>> my_logger.get('two')
[{'raw_message': 'Log file line two'}]
>>> 'line three,' in my_logger
True
>>> my_logger.get(['three', 'more'])
[{'raw_message': 'Log file line three, and more'}]
>>> my_logger.lines[0]
'Log file line one'
>>> my_logger.get_one
[{'raw_message': 'Log file line one'}]
>>> my_logger.get_three_and_more == my_logger.get(['three', 'more'])
True
>>> my_logger.last_line_contains_file
{'raw_message': 'Log file line three, and more'}
>>> len(my_logger.last_2_lines_contain_file)
2
>>> len(my_logger.last_3_lines_contain_line_and_t)  # Only 2 lines contain 'line' and 't'
2
>>> my_logger.find_more
True
>>> my_logger.find_four_and_more
False
>>> my_logger.find_four_or_more
True
lines

List of the lines from the log file content.

Type

list

get(s, check=<built-in function all>, num=None, reverse=False)[source]

Returns all lines that contain s anywhere and wrap them in a list of dictionaries. s can be either a single string or a string list. For list, all keywords in the list must be found in each line.

Parameters
  • s (str or list) -- one or more strings to search for

  • check (func) -- built-in function all or any applied to each line

  • num (int) -- the number of lines to get, None for unlimited

  • reverse (bool) -- scan start from the head when False by default, otherwise start from the tail

Returns

list of dictionaries corresponding to the parsed lines contain the s.

Return type

(list)

Raises

TypeError -- When s is not a string or a list of strings, or num is not an integer.

get_after(timestamp, s=None)[source]

Find all the (available) logs that are after the given time stamp.

If s is not supplied, then all lines are used. Otherwise, only the lines contain the s are used. s can be either a single string or a string list. For list, all keywords in the list must be found in each line.

This method then finds all lines which have a time stamp after the given timestamp. Lines that do not contain a time stamp are considered to be part of the previous line and are therefore included if the last log line was included or excluded otherwise.

Time stamps are recognised by converting the time format into a regular expression which matches the time format in the string. This is then searched for in each line in turn. Only lines with a time stamp matching this expression will trigger the decision to include or exclude lines. Therefore, if the log for some reason does not contain a time stamp that matches this format, no lines will be returned.

The time format is given in strptime() format, in the object’s time_format property. Users of the object should not change this property; instead, the parser should subclass LogFileOutput and change the time_format property.

Some logs, regrettably, change time stamps formats across different lines, or change time stamp formats in different versions of the program. In order to accommodate this, the timestamp format can be a list of strptime() format strings. These are combined as alternatives in the regular expression, and are given to strptime in order. These can also be listed as the values of a dict, e.g.:

{'pre_10.1.5': '%y%m%d %H:%M:%S', 'post_10.1.5': '%Y-%m-%d %H:%M:%S'}

Note

Some logs - notably /var/log/messages - do not contain a year in the timestamp. This detected by the absence of a ‘%y’ or ‘%Y’ in the time format. If that year field is absent, the year is assumed to be the year in the given timestamp being sought. Some attempt is made to handle logs with a rollover from December to January, by finding when the log’s timestamp (with current year assumed) is over eleven months (specifically, 330 days) ahead of or behind the timestamp date and shifting that log date by 365 days so that it is more likely to be in the sought range. This paragraph is sponsored by syslog.

Parameters
  • timestamp (datetime.datetime) -- lines before this time are ignored.

  • s (str or list) -- one or more strings to search for. If not supplied, all available lines are searched.

Yields

dict -- The parsed lines with timestamps after this date in the same format they were supplied. It at least contains the raw_message as a key.

Raises

ParseException -- If the format conversion string contains a format that we don’t recognise. In particular, no attempt is made to recognise or parse the time zone or other obscure values like day of year or week of year.

classmethod keep_scan(result_key, token, check=<built-in function all>, num=None, reverse=False)[source]

Define a property that is set to the list of dictionaries of the lines that contain the given token. Uses the get method of the log file.

Parameters
  • result_key (str) -- the scanner key to register

  • token (str or list) -- one or more strings to search for

  • check (func) -- built-in function all or any applied to each line

  • num (int) -- the number of lines to get, None for unlimited

  • reverse (bool) -- scan start from the head when False by default, otherwise start from the tail

Returns

list of dictionaries corresponding to the parsed lines contain the token.

Return type

(list)

classmethod last_scan(result_key, token, check=<built-in function all>)[source]

Define a property that is set to the dictionary of the last line that contains the given token. Uses the get method of the log file.

Parameters
  • result_key (str) -- the scanner key to register

  • token (str or list) -- one or more strings to search for

  • check (func) -- built-in function all or any applied to each line

Returns

dictionary corresponding to the last parsed line contains the token.

Return type

(dict)

parse_content(content)[source]

Use all the defined scanners to search the log file, setting the properties defined in the scanner.

classmethod scan(result_key, func)[source]

Define computed fields based on a string to “grep for”. This is preferred to utilizing raw log lines in plugins because computed fields will be serialized, whereas raw log lines will not.

Raises

ValueError -- When result_key is already a registered scanner key.

scanner_keys = {}
scanners = []
time_format = '%Y-%m-%d %H:%M:%S'

The timestamp format assumed for the log files. A subclass can override this for files that have a different timestamp format. This can be:

  • A string in strptime() format.

  • A list of strptime() strings.

  • A dictionary with each item’s value being a strptime() string. This allows the item keys to provide some form of documentation.

classmethod token_scan(result_key, token, check=<built-in function all>)[source]

Define a property that is set to true if the given token is found in the log file. Uses the __contains__ method of the log file.

Parameters
  • result_key (str) -- the scanner key to register

  • token (str or list) -- one or more strings to search for

  • check (func) -- built-in function all or any applied to each line

Returns

the property will contain True if a line contained (any or all) of the tokens given.

Return type

(bool)

class insights.core.Parser(context)[source]

Bases: object

Base class designed to be subclassed by parsers.

The framework will construct your object with a Context that will provide at least the content as an interable of lines and the path that the content was retrieved from.

Facts should be exposed as instance members where applicable. For example:

self.fact = "123"

Examples

>>> class MyParser(Parser):
...     def parse_content(self, content):
...         self.facts = []
...         for line in content:
...             if 'fact' in line:
...                 self.facts.append(line)
>>> content = '''
... # Comment line
... fact=fact 1
... fact=fact 2
... fact=fact 3
... '''.strip()
>>> my_parser = MyParser(context_wrap(content, path='/etc/path_to_content/content.conf'))
>>> my_parser.facts
['fact=fact 1', 'fact=fact 2', 'fact=fact 3']
>>> my_parser.file_path
'/etc/path_to_content/content.conf'
>>> my_parser.file_name
'content.conf'
file_name = None

Filename portion of the input file.

Type

str

file_path = None

Full context path of the input file.

Type

str

parse_content(content)[source]

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

class insights.core.ScanMeta[source]

Bases: type

class insights.core.Scannable(context)[source]

Bases: insights.core.Parser

A class to enable early and easy collection of data in a file.

The Scannable class makes it easy to collect two common types of information from a data file:

  • A flag to indicate that the data contains one or more lines with a given string.

  • a list of lines containing a given string.

To create a parser from the Scannable parser class, the main job is to override the parse() method, returning your choice of data structure to represent the information in the file. This takes the form of a generator that yields structures for users of your parser. You can yield more than object per line, or you can condense multiple lines into one object. Each object is then scanned with all the defined scanners for this class.

How does that work? Well, the individual rules using your parser will use the any() and collect() methods on the class object itself to set up new attributes of the class that will be given values based on the results of a function that checks each object from your parser for the properties it’s looking for. That’s pretty vague, so let’s give some examples - imagine a parser defined as:

class AnacondaLog(Scannable):

pass

(Which uses the default parse() function that simply yields each line in turn.) A rule using this parser then does:

def warnings(line):

return line if ‘WARNING’ in line

def has_fcoe_edd(line):

return ‘/usr/libexec/fcoe/fcoe_edd.sh’ in line

AnacondaLog.any(‘has_fcoe’, has_fcoe_edd) AnacondaLog.collect(‘warnings’, warnings)

These then act in the following way:

  • When an object is instantiated from the AnacondaLog class, it will have the ‘has_fcoe’ attribute. This will be set to True if ‘/usr/libexec/fcoe/fcoe_edd.sh’ was found in any line in the file, or False otherwise.

  • When an object is instantiated from the AnacondaLog class, it will have the ‘warnings’ attribute. This will be a list containing all the lines found.

Users of your class can supply any function to either any() or collect(). Functions given to collect() can return anything they want to be collected - if they return something that evaluates to False then nothing is collected (so avoid returning empty lists, empty dicts, empty strings or False).

classmethod any(result_key, func)[source]

Sets the result_key to the output of func if func ever returns truthy

classmethod collect(result_key, func)[source]

Sets the result_key to an iterable of objects for which func(obj) returns True

parse(content)[source]

Default ‘parsing’ method. Subclasses should override this method with their own custom parsing as necessary.

parse_content(content)[source]

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

scanner_keys = {}
scanners = []
class insights.core.StreamParser(context)[source]

Bases: insights.core.Parser

Parsers that don’t have to store lines or look back in the data stream should implement StreamParser instead of Parser as it is more memory efficient. The only difference between StreamParser and Parser is that StreamParser.parse_content will receive a generator instead of a list.

class insights.core.SysconfigOptions(context)[source]

Bases: insights.core.Parser, insights.core.LegacyItemAccess

A parser to handle the standard ‘keyword=value’ format of files in the /etc/sysconfig directory. These are provided in the standard ‘data’ dictionary.

Examples

>>> 'OPTIONS' in ntpconf
True
>>> 'NOT_SET' in ntpconf
False
>>> 'COMMENTED_OUT' in ntpconf
False
>>> ntpconf['OPTIONS']
'-x -g'

For common variables such as OPTIONS, it is recommended to set a specific property in the subclass that fetches this option with a fallback to a default value.

Example subclass:

class DirsrvSysconfig(SysconfigOptions):

    @property
    def options(self):
        return self.data.get('OPTIONS', '')
keys()[source]

Return the list of keys (in no order) in the underlying dictionary.

parse_content(content)[source]

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

class insights.core.Syslog(context)[source]

Bases: insights.core.LogFileOutput

Class for parsing syslog file content.

The important function is get(s)(), which finds all lines with the string s and parses them into dictionaries with the following keys:

  • timestamp - the time the log line was written

  • procname - the process or facility that wrote the line

  • hostname - the host that generated the log line

  • message - the rest of the message (after the process name)

  • raw_message - the raw message before being split.

It is best to use filters and/or scanners with the messages log, to speed up parsing. These work on the raw message, before being parsed.

Sample log lines:

May  9 15:13:34 lxc-rhel68-sat56 jabberd/sm[11057]: session started: jid=rhn-dispatcher-sat@lxc-rhel6-sat56.redhat.com/superclient
May  9 15:13:36 lxc-rhel68-sat56 wrapper[11375]: --> Wrapper Started as Daemon
May  9 15:13:36 lxc-rhel68-sat56 wrapper[11375]: Launching a JVM...
May 10 15:24:28 lxc-rhel68-sat56 yum[11597]: Installed: lynx-2.8.6-27.el6.x86_64
May 10 15:36:19 lxc-rhel68-sat56 yum[11954]: Updated: sos-3.2-40.el6.noarch

Examples

>>> Syslog.token_scan('daemon_start', 'Wrapper Started as Daemon')
>>> Syslog.token_scan('yum_updated', ['yum', 'Updated'])
>>> Syslog.keep_scan('yum_lines', 'yum')
>>> Syslog.keep_scan('yum_installed_lines', ['yum', 'Installed'])
>>> syslog.get('wrapper')[0]
{'timestamp': 'May  9 15:13:36', 'hostname': 'lxc-rhel68-sat56',
 'procname': wrapper[11375]', 'message': '--> Wrapper Started as Daemon',
 'raw_message': 'May  9 15:13:36 lxc-rhel68-sat56 wrapper[11375]: --> Wrapper Started as Daemon'
}
>>> syslog.daemon_start
True
>>> syslog.yum_updated
True
>>> len(syslog.yum_lines)
2
>>> len(syslog.yum_updated_lines)
1

Note

Because syslog timestamps by default have no year, the year of the logs will be inferred from the year in your timestamp. This will also work around December/January crossovers.

get_logs_by_procname(proc)[source]
Parameters

proc (str) -- The process or facility that you’re looking for

Yields

(dict) -- The parsed syslog messages produced by that process or facility

scanner_keys = {}
scanners = []
time_format = '%b %d %H:%M:%S'
class insights.core.XMLParser(context)[source]

Bases: insights.core.LegacyItemAccess, insights.core.Parser

A parser class that reads XML files. Base your own parser on this.

Examples

>>> content = '''
... <?xml version="1.0"?>
... <data xmlns:fictional="http://characters.example.com"
...       xmlns="http://people.example.com">
...     <country name="Liechtenstein">
...         <rank updated="yes">2</rank>
...         <year>2008</year>
...         <gdppc>141100</gdppc>
...         <neighbor name="Austria" direction="E"/>
...         <neighbor name="Switzerland" direction="W"/>
...     </country>
...     <country name="Singapore">
...         <rank updated="yes">5</rank>
...         <year>2011</year>
...         <gdppc>59900</gdppc>
...         <neighbor name="Malaysia" direction="N"/>
...     </country>
...     <country name="Panama">
...         <rank>68</rank>
...         <year>2011</year>
...         <gdppc>13600</gdppc>
...         <neighbor name="Costa Rica" direction="W"/>
...     </country>
... </data>
... '''.strip()
>>> xml_parser = XMLParser(context_wrap(content))
>>> xml_parser.xmlns
'http://people.example.com'
>>> xml_parser.get_elements(".")[0].tag # Top-level elements
'data'
>>> len(xml_parser.get_elements("./country/neighbor", None)) # All 'neighbor' grand-children of 'country' children of the top-level elements
3
>>> len(xml_parser.get_elements(".//year/..[@name='Singapore']")[0]) # Nodes with name='Singapore' that have a 'year' child
1
>>> xml_parser.get_elements(".//*[@name='Singapore']/year")[0].text # 'year' nodes that are children of nodes with name='Singapore'
'2011'
>>> xml_parser.get_elements(".//neighbor[2]", "http://people.example.com")[0].get('name') # All 'neighbor' nodes that are the second child of their parent
'Switzerland'
raw

raw XML content

Type

str

dom

Root element of parsed XML file

Type

Element

xmlns

The default XML namespace, an empty string when no namespace is declared.

Type

str

data

All required specific properties can be included in data.

Type

dict

get_elements(element, xmlns=None)[source]

Return a list of elements those match the searching condition. If the XML input has namespaces, elements and attributes with prefixes in the form prefix:sometag get expanded to {namespace}element where the prefix is replaced by the full URI. Also, if there is a default namespace, that full URI gets prepended to all of the non-prefixed tags. Element names can contain letters, digits, hyphens, underscores, and periods. But element names must start with a letter or underscore. Here the while-clause is to set searching condition from /element1/element2 to /{namespace}element1/{namespace}/element2

Parameters
  • element -- Searching condition to search certain elements in an XML file. For more details about how to set searching condition, refer to section 19.7.2.1. Example and 19.7.2.2. Supported XPath syntax in https://docs.python.org/2/library/xml.etree.elementtree.html

  • xmlns -- XML namespace, default value to None. None means that xmlns equals to the self.xmlns (default namespace) instead of “” all the time. Only string type parameter (including “”) will be regarded as a valid xml namespace.

Returns

List of elements those match the searching condition

Return type

(list)

parse_content(content)[source]

All child classes inherit this function to parse XML file automatically. It will call the function parse_dom() by default to parser all necessary data to data and the xmlns (the default namespace) is ready for this function.

parse_dom()[source]

If self.data is required, all child classes need to overwrite this function to set it

class insights.core.YAMLParser(context)[source]

Bases: insights.core.Parser, insights.core.LegacyItemAccess

A parser class that reads YAML files. Base your own parser on this.

parse_content(content)[source]

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

insights.core.default_parser_deserializer(_type, data)[source]
insights.core.default_parser_serializer(obj)[source]
insights.core.find_main(confs, name)[source]
insights.core.flatten(docs, pred)[source]

Replace include nodes with their config trees. Allows the same files to be included more than once so long as they don’t induce a recursion.

insights.core.context

class insights.core.context.ClusterArchiveContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

class insights.core.context.Context(**kwargs)[source]

Bases: object

product()[source]
stream()[source]
class insights.core.context.Docker(role=None)[source]

Bases: insights.core.context.MultiNodeProduct

name = 'docker'
parent_type = 'host'
class insights.core.context.DockerImageContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

class insights.core.context.ExecutionContext(root='/', timeout=None, all_files=None)[source]

Bases: object

check_output(cmd, timeout=None, keep_rc=False, env=None)[source]

Subclasses can override to provide special environment setup, command prefixes, etc.

connect(*args, **kwargs)[source]
classmethod handles(files)[source]
locate_path(path)[source]
marker = None
shell_out(cmd, split=True, timeout=None, keep_rc=False, env=None)[source]
stream(*args, **kwargs)[source]
class insights.core.context.ExecutionContextMeta(name, bases, dct)[source]

Bases: type

classmethod identify(files)[source]
registry = [<class 'insights.core.context.HostContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.DockerImageContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.OpenStackContext'>, <class 'insights.core.context.OpenShiftContext'>]
class insights.core.context.HostArchiveContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

marker = 'insights_commands'
class insights.core.context.HostContext(root='/', timeout=30, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

class insights.core.context.InsightsOperatorContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

Recognizes insights-operator archives

marker = 'config/featuregate'
class insights.core.context.JBossContext(root='/', timeout=30, all_files=None)[source]

Bases: insights.core.context.HostContext

class insights.core.context.JDRContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

locate_path(path)[source]
marker = 'JBOSS_HOME'
class insights.core.context.MultiNodeProduct(role=None)[source]

Bases: object

is_parent()[source]
class insights.core.context.MustGatherContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

Recognizes must-gather archives

marker = 'namespaces'
class insights.core.context.OSP(role=None)[source]

Bases: insights.core.context.MultiNodeProduct

name = 'osp'
parent_type = 'Director'
class insights.core.context.OpenShiftContext(hostname)[source]

Bases: insights.core.context.ExecutionContext

class insights.core.context.OpenStackContext(hostname)[source]

Bases: insights.core.context.ExecutionContext

class insights.core.context.RHEL(version=['-1', '-1'], release=None)[source]

Bases: object

classmethod from_metadata(metadata, processor_obj)[source]
name = 'rhel'
class insights.core.context.RHEV(role=None)[source]

Bases: insights.core.context.MultiNodeProduct

name = 'rhev'
parent_type = 'Manager'
class insights.core.context.SerializedArchiveContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

marker = 'insights_archive.txt'
class insights.core.context.SosArchiveContext(root='/', timeout=None, all_files=None)[source]

Bases: insights.core.context.ExecutionContext

marker = 'sos_commands'
insights.core.context.create_product(metadata, hostname)[source]
insights.core.context.fs_root(thing)[source]
insights.core.context.get_system(metadata, hostname)[source]
insights.core.context.product(klass)[source]

insights.core.dr

This module implements an inversion of control framework. It allows dependencies among functions and classes to be declared with decorators and the resulting dependency graphs to be executed.

A decorator used to declare dependencies is called a ComponentType, a decorated function or class is called a component, and a collection of interdependent components is called a graph.

In the example below, needs is a ComponentType, one, two, and add are components, and the relationship formed by their dependencies is a graph.

from insights import dr

class needs(dr.ComponentType):
    pass

@needs()
def one():
    return 1

@needs()
def two():
    return 2

@needs(one, two)
def add(a, b):
    return a + b

results = dr.run(add)

Once all components have been imported, the graphs they form can be run. To execute a graph, dr sorts its components into an order that guarantees dependencies are tried before dependents. Components that raise exceptions are considered invalid, and their dependents will not be executed. If a component is skipped because of a missing dependency, its dependents also will not be executed.

During evaluation, results are accumulated into an object called a Broker, which is just a fancy dictionary. Brokers can be inspected after a run for results, exceptions, tracebacks, and execution times. You also can register callbacks with a broker that get invoked after the attempted execution of every component, so you can inspect it during an evaluation instead of at the end.

class insights.core.dr.Broker(seed_broker=None)[source]

Bases: object

The Broker is a fancy dictionary that keeps up with component instances as a graph is evaluated. It’s the state of the evaluation. Once a graph has executed, the broker will contain everything about the evaluation: component instances, timings, exceptions, and tracebacks.

You can either inspect the broker at the end of an evaluation, or you can register callbacks with it, and they’ll get invoked after each component is called.

instances

the component instances with components as keys.

Type

dict

missing_requirements

components that didn’t have their dependencies met. Values are a two-tuple. The first element is the list of required dependencies that were missing. The second element is the list of “at least one” dependencies that were missing. For more information on dependency types, see the ComponentType docs.

Type

dict

exceptions

Components that raise any type of exception except SkipComponent during evaluation. The key is the component, and the value is a list of exceptions. It’s a list because some components produce multiple instances.

Type

defaultdict(list)

tracebacks

keys are exceptions and values are their text tracebacks.

Type

dict

exec_times

component -> float dictionary where values are the number of seconds the component took to execute. Calculated using time.time(). For components that produce multiple instances, the execution time here is the sum of their individual execution times.

Type

dict

add_exception(component, ex, tb=None)[source]
add_observer(o, component_type=<class 'insights.core.dr.ComponentType'>)[source]

Add a callback that will get invoked after each component is called.

Parameters

o (func) -- the callback function

Keyword Arguments

component_type (ComponentType) -- the ComponentType to observe. The callback will fire any time an instance of the class or its subclasses is invoked.

The callback should look like this:

def callback(comp, broker):
    value = broker.get(comp)
    # do something with value
    pass
fire_observers(component)[source]
get(component, default=None)[source]
get_by_type(_type)[source]

Return all of the instances of ComponentType _type.

items()[source]
keys()[source]
observer(component_type=<class 'insights.core.dr.ComponentType'>)[source]

You can use @broker.observer() as a decorator to your callback instead of Broker.add_observer().

print_component(component_type)[source]
values()[source]
exception insights.core.dr.MissingRequirements(requirements)[source]

Bases: Exception

Raised during evaluation if a component’s dependencies aren’t met.

exception insights.core.dr.SkipComponent[source]

Bases: Exception

This class should be raised by components that want to be taken out of dependency resolution.

insights.core.dr.add_dependency(component, dep)[source]
insights.core.dr.add_dependent(component, dep)[source]
insights.core.dr.add_ignore(c, i)[source]
insights.core.dr.add_observer(o, component_type=<class 'insights.core.dr.ComponentType'>)[source]

Add a callback that will get invoked after each component is called.

Parameters

o (func) -- the callback function

Keyword Arguments

component_type (ComponentType) -- the ComponentType to observe. The callback will fire any time an instance of the class or its subclasses is invoked.

The callback should look like this:

def callback(comp, broker):
    value = broker.get(comp)
    # do something with value
    pass
insights.core.dr.first_of(dependencies, broker)[source]
insights.core.dr.generate_incremental(components=None, broker=None)[source]
insights.core.dr.get_base_module_name(obj)[source]
insights.core.dr.get_component(name)[source]

Returns the class or function specified, importing it if necessary.

insights.core.dr.get_component_by_name(name)[source]

Look up a component by its fully qualified name. Return None if the component hasn’t been loaded.

insights.core.dr.get_component_type(component)[source]
insights.core.dr.get_components_of_type(_type)[source]
insights.core.dr.get_delegate(component)[source]
insights.core.dr.get_dependencies(component)[source]
insights.core.dr.get_dependency_graph(component)[source]

Generate a component’s graph of dependencies, which can be passed to run() or run_incremental().

insights.core.dr.get_dependents(component)[source]
insights.core.dr.get_group(component)[source]

Return the dictionary of links associated with the component. Defaults to dict().

insights.core.dr.get_metadata(component)[source]

Return any metadata dictionary associated with the component. Defaults to an empty dictionary.

insights.core.dr.get_missing_requirements(func, requires, d)[source]

Deprecated since version 1.x.

insights.core.dr.get_module_name(obj)[source]
insights.core.dr.get_name(component)[source]

Attempt to get the string name of component, including module and class if applicable.

insights.core.dr.get_simple_name(component)[source]
insights.core.dr.get_subgraphs(graph=None)[source]

Given a graph of possibly disconnected components, generate all graphs of connected components. graph is a dictionary of dependencies. Keys are components, and values are sets of components on which they depend.

insights.core.dr.get_tags(component)[source]

Return the set of tags associated with the component. Defaults to set().

insights.core.dr.hashable(v)[source]
insights.core.dr.is_enabled(component)[source]

Check to see if a component is enabled.

Parameters

component (callable) -- The component to check. The component must already be loaded.

Returns

True if the component is enabled. False otherwise.

insights.core.dr.is_hidden(component)[source]
insights.core.dr.load_components(*paths, **kwargs)[source]

Loads all components on the paths. Each path should be a package or module. All components beneath a path are loaded.

Parameters

paths (str) -- A package or module to load

Keyword Arguments
  • include (str) -- A regular expression of packages and modules to include. Defaults to ‘.*’

  • exclude (str) -- A regular expression of packges and modules to exclude. Defaults to ‘test’

  • continue_on_error (bool) -- If True, continue importing even if something raises an ImportError. If False, raise the first ImportError.

Returns

The total number of modules loaded.

Return type

int

Raises

ImportError --

insights.core.dr.mark_hidden(component)[source]
insights.core.dr.observer(component_type=<class 'insights.core.dr.ComponentType'>)[source]

You can use @broker.observer() as a decorator to your callback instead of add_observer().

insights.core.dr.run(components=None, broker=None)[source]

Executes components in an order that satisfies their dependency relationships.

Keyword Arguments
  • components -- Can be one of a dependency graph, a single component, a component group, or a component type. If it’s anything other than a dependency graph, the appropriate graph is built for you and before evaluation.

  • broker (Broker) -- Optionally pass a broker to use for evaluation. One is created by default, but it’s often useful to seed a broker with an initial dependency.

Returns

The broker after evaluation.

Return type

Broker

insights.core.dr.run_all(components=None, broker=None, pool=None)[source]
insights.core.dr.run_incremental(components=None, broker=None)[source]

Executes components in an order that satisfies their dependency relationships. Disjoint subgraphs are executed one at a time and a broker containing the results for each is yielded. If a broker is passed here, its instances are used to seed the broker used to hold state for each sub graph.

Keyword Arguments
  • components -- Can be one of a dependency graph, a single component, a component group, or a component type. If it’s anything other than a dependency graph, the appropriate graph is built for you and before evaluation.

  • broker (Broker) -- Optionally pass a broker to use for evaluation. One is created by default, but it’s often useful to seed a broker with an initial dependency.

Yields

Broker -- the broker used to evaluate each subgraph.

insights.core.dr.run_order(graph)[source]

Returns components in an order that satisfies their dependency relationships.

insights.core.dr.set_enabled(component, enabled=True)[source]

Enable a component for evaluation. If set to False, the component is skipped, and all components that require it will not execute. If component is a fully qualified name string of a callable object instead of the callable object itself, the component’s module is loaded as a side effect of calling this function.

Parameters
  • component (str or callable) -- fully qualified name of the component or the component object itself.

  • enabled (bool) -- whether the component is enabled for evaluation.

Returns

None

insights.core.dr.split_requirements(requires)[source]
insights.core.dr.stringify_requirements(requires)[source]
insights.core.dr.walk_dependencies(root, visitor)[source]

Call visitor on root and all dependencies reachable from it in breadth first order.

Parameters
  • root (component) -- component function or class

  • visitor (function) -- signature is func(component, parent). The call on root is visitor(root, None).

insights.core.dr.walk_tree(root, method=<function get_dependencies>)[source]
class insights.core.dr.ComponentType(*deps, **kwargs)[source]

ComponentType is the base class for all component type decorators.

For Example:

class my_component_type(ComponentType):
    pass

@my_component_type(SshDConfig, InstalledRpms, [ChkConfig, UnitFiles], optional=[IPTables, IpAddr])
def my_func(sshd_config, installed_rpms, chk_config, unit_files, ip_tables, ip_addr):
    return installed_rpms.newest("bash")

Notice that the arguments to my_func correspond to the dependencies in the @my_component_type and are in the same order.

When used, a my_component_type instance is created whose __init__ gets passed dependencies and whose __call__ gets passed the component to run if dependencies are met.

Parameters to the decorator have these forms:

Criteria

Example Decorator Arguments

Description

Required

SshDConfig, InstalledRpms

A regular argument

At Least One

[ChkConfig, UnitFiles]

An argument as a list

Optional

optional=[IPTables, IpAddr]

A list following optional=

If a parameter is required, the value provided for it is guaranteed not to be None. In the example above, sshd_config and installed_rpms will not be None.

At least one of the arguments to parameters of an “at least one” list will not be None. In the example, either or both of chk_config and unit_files will not be None.

Any or all arguments for optional parameters may be None.

The following keyword arguments may be passed to the decorator:

requires

a list of components that all components decorated with this type will implicitly require. Additional components passed to the decorator will be appended to this list.

Type

list

optional

a list of components that all components decorated with this type will implicitly depend on optionally. Additional components passed as optional to the decorator will be appended to this list.

Type

list

metadata

an arbitrary dictionary of information to associate with the component you’re decorating. It can be retrieved with get_metadata.

Type

dict

tags

a list of strings that categorize the component. Useful for formatting output or sifting through results for components you care about.

Type

list

group

GROUPS.single or GROUPS.cluster. Used to organize components into “groups” that run together with insights.core.dr.run().

cluster

if True will put the component into the GROUPS.cluster group. Defaults to False. Overrides group if True.

Type

bool

get_missing_dependencies(broker)[source]

Gets required and at-least-one dependencies not provided by the broker.

invoke(results)[source]

Handles invocation of the component. The default implementation invokes it with positional arguments based on order of dependency declaration.

process(broker)[source]

Ensures dependencies have been met before delegating to self.invoke.

insights.core.filters

The filters module allows developers to apply filters to datasources, by adding them directly or through dependent components like parsers and combiners. A filter is a simple string, and it matches if it is contained anywhere within a line.

If a datasource has filters defined, it will return only lines matching at least one of them. If a datasource has no filters, it will return all lines.

Filters can be added to components like parsers and combiners, to apply consistent filtering to multiple underlying datasources that are configured as filterable.

Filters aren’t applicable to “raw” datasources, which are created with kind=RawFileProvider and have RegistryPoint instances with raw=True.

The addition of a single filter can cause a datasource to change from returning all lines to returning just those that match. Therefore, any filtered datasource should have at least one filter in the commit introducing it so downstream components don’t inadvertently change its behavior.

The benefit of this fragility is the ability to drastically reduce in-memory footprint and archive sizes. An additional benefit is the ability to evaluate only lines known to be free of sensitive information.

Filters added to a RegistryPoint will be applied to all datasources that implement it. Filters added to a datasource implementation apply only to that implementation.

For example, a filter added to Specs.ps_auxww will apply to DefaultSpecs.ps_auxww, InsightsArchiveSpecs.ps_auxww, SosSpecs.ps_auxww, etc. But a filter added to DefaultSpecs.ps_auxww will only apply to DefaultSpecs.ps_auxww. See the modules in insights.specs for those classes.

Filtering can be disabled globally by setting the environment variable INSIGHTS_FILTERS_ENABLED=False. This means that no datasources will be filtered even if filters are defined for them.

insights.core.filters.add_filter(component, patterns)[source]

Add a filter or list of filters to a component. When the component is a datasource, the filter will be directly added to that datasouce. In cases when the component is a parser or combiner, the filter will be added to underlying filterable datasources by traversing dependency graph. A filter is a simple string, and it matches if it is contained anywhere within a line.

Parameters
  • component (component) -- The component to filter, can be datasource, parser or combiner.

  • patterns (str, [str]) -- A string, list of strings, or set of strings to add to the datasource’s filters.

insights.core.filters.apply_filters(target, lines)[source]

Applys filters to the lines of a datasource. This function is used only in integration tests. Filters are applied in an equivalent but more performant way at run time.

insights.core.filters.dump(stream=None)[source]

Dumps a string representation of FILTERS to a stream, normally an open file. If none is passed, FILTERS is dumped to a default location within the project.

insights.core.filters.dumps()[source]

Returns a string representation of the FILTERS dictionary.

insights.core.filters.get_filters(component)[source]

Get the set of filters for the given datasource.

Filters added to a RegistryPoint will be applied to all datasources that implement it. Filters added to a datasource implementation apply only to that implementation.

For example, a filter added to Specs.ps_auxww will apply to DefaultSpecs.ps_auxww, InsightsArchiveSpecs.ps_auxww, SosSpecs.ps_auxww, etc. But a filter added to DefaultSpecs.ps_auxww will only apply to DefaultSpecs.ps_auxww. See the modules in insights.specs for those classes.

Parameters

component (a datasource) -- The target datasource

Returns

The set of filters defined for the datasource

Return type

set

insights.core.filters.load(stream=None)[source]

Loads filters from a stream, normally an open file. If one is not passed, filters are loaded from a default location within the project.

insights.core.filters.loads(string)[source]

Loads the filters dictionary given a string.

insights.core.plugins

The plugins module defines the components used by the rest of insights and specializes their interfaces and execution model where required.

This module includes the following CompoentType subclasses:

It also contains the following Response subclasses that rules may return:

exception insights.core.plugins.ContentException[source]

Bases: insights.core.dr.SkipComponent

Raised whenever a datasource fails to get data.

class insights.core.plugins.PluginType(*deps, **kwargs)[source]

Bases: insights.core.dr.ComponentType

PluginType is the base class of plugin types like datasource, rule, etc. It provides a default invoke method that catches exceptions we don’t want bubbling to the top of the evaluation loop. These exceptions are commonly raised by datasource components but could be in the context of any component since most datasource runtime errors are lazy.

It’s possible for a datasource to “succeed” and return an object but for an exception to be raised when the parser tries to access the content of that object. For example, when a command datasource is evaluated, it only checks that the command exists and is executable. Invocation of the command itself is delayed until the parser asks for its value. This helps with performance and memory consumption.

invoke(broker)[source]

Handles invocation of the component. The default implementation invokes it with positional arguments based on order of dependency declaration.

class insights.core.plugins.Response(key, **kwargs)[source]

Bases: dict

Response is the base class of response types that can be returned from rules.

Subclasses must call __init__ of this class via super() and must provide the response_type class attribute.

The key_name class attribute is optional, but if one is specified, the first argument to __init__ must not be None. If key_name is None, then the first argument to __init__ should be None. It’s best to override __init__ in subclasses so users aren’t required to pass None explicitly.

adjust_for_length(key, r, kwargs)[source]

Converts the response to a string and compares its length to a max length specified in settings. If the response is too long, an error is logged, and an abbreviated response is returned instead.

get_key()[source]

Helper function that uses the response’s key_name to look up the response identifier. For a rule, this is like response.get(“error_key”).

key_name = None

key_name is something like ‘error_key’, ‘fingerprint_key’, etc. It is the key downstream systems use to look up the exact response returned by a rule.

response_type = None

response_type is something like ‘rule’, ‘metadata’, ‘fingerprint’, etc. It is how downstream systems identify the type of information returned by a rule.

validate_key(key)[source]

Called if the key_name class attribute is not None.

validate_kwargs(kwargs)[source]

Validates expected subclass attributes and constructor keyword arguments.

exception insights.core.plugins.ValidationException(msg, r=None)[source]

Bases: Exception

class insights.core.plugins.combiner(*deps, **kwargs)[source]

Bases: insights.core.plugins.PluginType

A decorator for a component that composes or “combines” other components.

A typical use case is hiding slight variations in related parser interfaces. Another use case is to combine several related parsers behind a single, cohesive, higher level interface.

class insights.core.plugins.component(*deps, **kwargs)[source]

Bases: insights.core.plugins.PluginType

class insights.core.plugins.condition(*deps, **kwargs)[source]

Bases: insights.core.plugins.PluginType

ComponentType used to encapsulate boolean logic you’d like to have analyzed by a rule analysis system. Conditions should return truthy values. None is also a valid return type for conditions, so rules that depend on conditions that might return None should check their validity.

class insights.core.plugins.datasource(*deps, **kwargs)[source]

Bases: insights.core.plugins.PluginType

Decorates a component that one or more insights.core.Parser subclasses will consume.

filterable = False
invoke(broker)[source]

Handles invocation of the component. The default implementation invokes it with positional arguments based on order of dependency declaration.

multi_output = False
raw = False
class insights.core.plugins.fact(*deps, **kwargs)[source]

Bases: insights.core.plugins.PluginType

ComponentType for a component that surfaces a dictionary or list of dictionaries that will be used later by cluster rules. The data from a fact is converted to a pandas Dataframe

class insights.core.plugins.incident(*deps, **kwargs)[source]

Bases: insights.core.plugins.PluginType

ComponentType for a component used by rules that allows automated statistical analysis.

insights.core.plugins.is_combiner(component)[source]
insights.core.plugins.is_component(obj)[source]
insights.core.plugins.is_datasource(component)[source]
insights.core.plugins.is_parser(component)[source]
insights.core.plugins.is_rule(component)[source]
insights.core.plugins.is_type(component, _type)[source]
class insights.core.plugins.make_fail(key, **kwargs)[source]

Bases: insights.core.plugins.make_response

Returned by a rule to signal that its conditions have been met.

Example:

# completely made up package
buggy = InstalledRpms.from_package("bash-3.4.23-1.el7")

@rule(InstalledRpms)
def report(installed_rpms):
   bash = installed_rpms.newest("bash")
   if bash == buggy:
       return make_fail("BASH_BUG_123", bash=bash)
   return make_pass("BASH", bash=bash)
class insights.core.plugins.make_fingerprint(key, **kwargs)[source]

Bases: insights.core.plugins.Response

key_name = 'fingerprint_key'
response_type = 'fingerprint'
class insights.core.plugins.make_info(key, **kwargs)[source]

Bases: insights.core.plugins.Response

Returned by a rule to surface information about a system.

Example:

@rule(InstalledRpms)
def report(rpms):
   bash = rpms.newest("bash")
   return make_info("BASH_VERSION", bash=bash.nvra)
key_name = 'info_key'
response_type = 'info'
class insights.core.plugins.make_metadata(**kwargs)[source]

Bases: insights.core.plugins.Response

Allows a rule to convey addtional metadata about a system to downstream systems. It doesn’t convey success or failure but purely information that may be aggregated with other make_metadata responses. As such, it has no response key.

response_type = 'metadata'
class insights.core.plugins.make_metadata_key(key, value)[source]

Bases: insights.core.plugins.Response

adjust_for_length(key, r, kwargs)[source]

Converts the response to a string and compares its length to a max length specified in settings. If the response is too long, an error is logged, and an abbreviated response is returned instead.

key_name = 'key'
response_type = 'metadata_key'
class insights.core.plugins.make_pass(key, **kwargs)[source]

Bases: insights.core.plugins.Response

Returned by a rule to signal that its conditions explicitly have not been met. In other words, the rule has all of the information it needs to determine that the system it’s analyzing is not in the state the rule was meant to catch.

An example rule might check whether a system is vulnerable to a well defined exploit or has a bug in a specific version of a package. If it can say for sure “the system does not have this exploit” or “the system does not have the buggy version of the package installed”, then it should return an instance of make_pass.

Example:

# completely made up package
buggy = InstalledRpms.from_package("bash-3.4.23-1.el7")

@rule(InstalledRpms)
def report(installed_rpms):
   bash = installed_rpms.newest("bash")
   if bash == buggy:
       return make_fail("BASH_BUG_123", bash=bash)
   return make_pass("BASH", bash=bash)
key_name = 'pass_key'
response_type = 'pass'
class insights.core.plugins.make_response(key, **kwargs)[source]

Bases: insights.core.plugins.Response

Returned by a rule to signal that its conditions have been met.

Example:

# completely made up package
buggy = InstalledRpms.from_package("bash-3.4.23-1.el7")

@rule(InstalledRpms)
def report(installed_rpms):
   bash = installed_rpms.newest("bash")
   if bash == buggy:
       return make_response("BASH_BUG_123", bash=bash)
   return make_pass("BASH", bash=bash)

Deprecated since version Use: make_fail instead.

key_name = 'error_key'
response_type = 'rule'
class insights.core.plugins.metadata(*args, **kwargs)[source]

Bases: insights.core.plugins.parser

Used for old cluster uber-archives.

Deprecated since version 1.x.

Warning

Do not use this component type.

requires = ['metadata.json']
class insights.core.plugins.parser(*args, **kwargs)[source]

Bases: insights.core.plugins.PluginType

Decorates a component responsible for parsing the output of a datasource. @parser should accept multiple arguments, the first will ALWAYS be the datasource the parser component should handle. Any subsequent argument will be a component used to determine if the parser should fire. @parser should only decorate subclasses of insights.core.Parser.

Warning

If a Parser component handles a datasource that returns a list, a Parser instance will be created for each element of the list. Combiners or rules that depend on the Parser will be passed the list of instances and not a single parser instance. By default, if any parser in the list succeeds, those parsers are passed on to dependents, even if others fail. If all parsers should succeed or fail together, pass continue_on_error=False.

invoke(broker)[source]

Handles invocation of the component. The default implementation invokes it with positional arguments based on order of dependency declaration.

class insights.core.plugins.remoteresource(*deps, **kwargs)[source]

Bases: insights.core.plugins.PluginType

ComponentType for a component for remote web resources.

class insights.core.plugins.rule(*args, **kwargs)[source]

Bases: insights.core.plugins.PluginType

Decorator for components that encapsulate some logic that depends on the data model of a system. Rules can depend on datasource instances, parser instances, combiner instances, or anything else.

For example:

@rule(SshDConfig, InstalledRpms, [ChkConfig, UnitFiles], optional=[IPTables, IpAddr])
def report(sshd_config, installed_rpms, chk_config, unit_files, ip_tables, ip_addr):
    # ...
    # ... some complicated logic
    # ...
    bash = installed_rpms.newest("bash")
    return make_pass("BASH", bash=bash)

Notice that the arguments to report correspond to the dependencies in the @rule decorator and are in the same order.

Parameters to the decorator have these forms:

Criteria

Example Decorator Arguments

Description

Required

SshDConfig, InstalledRpms

Regular arguments

At Least One

[ChkConfig, UnitFiles]

An argument as a list

Optional

optional=[IPTables, IpAddr]

A list following optional=

If a parameter is required, the value provided for it is guaranteed not to be None. In the example above, sshd_config and installed_rpms will not be None.

At least one of the arguments to parameters of an “at least one” list will not be None. In the example, either or both of chk_config and unit_files will not be None.

Any or all arguments for optional parameters may be None.

The following keyword arguments may be passed to the decorator:

Keyword Arguments
  • requires (list) -- a list of components that all components decorated with this type will require. Instead of using requires=[...], just pass dependencies as variable arguments to @rule as in the example above.

  • optional (list) -- a list of components that all components decorated with this type will implicitly depend on optionally. Additional components passed as optional to the decorator will be appended to this list.

  • metadata (dict) -- an arbitrary dictionary of information to associate with the component you’re decorating. It can be retrieved with get_metadata.

  • tags (list) -- a list of strings that categorize the component. Useful for formatting output or sifting through results for components you care about.

  • group -- GROUPS.single or GROUPS.cluster. Used to organize components into “groups” that run together with insights.core.dr.run().

  • cluster (bool) -- if True will put the component into the GROUPS.cluster group. Defaults to False. Overrides group if True.

  • content (string or dict) -- a jinja2 template or dictionary of jinja2 templates. The Response subclasses rules can return are dictionaries. make_pass, make_fail, and make_response all accept first a key and then a list of arbitrary keyword arguments. If content is a dictionary, the key is used to look up the template that the rest of the keyword argments will be interpolated into. If content is a string, then it is used for all return values of the rule. If content isn’t defined but a CONTENT variable is declared in the module, it will be used for every rule in the module and also can be a string or list of dictionaries

  • links (dict) -- a dictionary with strings as keys and lists of urls as values. The keys categorize the urls, e.g. “kcs” for kcs urls and “bugzilla” for bugzilla urls.

content = None
process(broker)[source]

Ensures dependencies have been met before delegating to self.invoke.

insights.core.remote_resource

class insights.core.remote_resource.CachedRemoteResource[source]

Bases: insights.core.remote_resource.RemoteResource

RemoteResource subclass that sets up caching for subsequent Web resource requests.

expire_after

Amount of time in seconds that the cache will expire

Type

float

backend

Type of storage for cache DictCache1, FileCache or RedisCache

Type

str

redis_host

Hostname of redis instance if RedisCache backend is specified

Type

str

redis_port

Port used to contact the redis instance if RedisCache backend is specified

Type

int

file_cache_path

Path to where file cache will be stored if FileCache backend is specified

Type

string

Examples

>>> from insights.core.remote_resource import CachedRemoteResource
>>> crr = CachedRemoteResource()
>>> rtn = crr.get("http://google.com")
>>> print (rtn.content)
backend = 'DictCache'
expire_after = 180
file_cache_path = '.web_cache'
redis_host = 'localhost'
redis_port = 6379
class insights.core.remote_resource.DefaultHeuristic(expire_after)[source]

Bases: cachecontrol.heuristics.BaseHeuristic

BaseHeuristic subclass that sets the default caching headers if not supplied by the remote service.

default_cache_vars

Message content warning that the response from the remote server did not return proper HTTP cache headers so we will use default cache settings

Type

str

server_cache_headers

Message content warning that we are using cache settings returned by the remote server.

Type

str

default_cache_vars = 'Remote service caching headers not set correctly, using default caching'
server_cache_headers = 'Caching being done based on caching headers returned by remote service'
update_headers(response)[source]

Returns the updated caching headers.

Parameters

response (HttpResponse) -- The response from the remote service

Returns

(HttpResponse.Headers): Http caching headers

Return type

response

warning(response)[source]

Return a valid 1xx warning header value describing the cache adjustments.

The response is provided too allow warnings like 113 http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need to explicitly say response is over 24 hours old.

class insights.core.remote_resource.RemoteResource(session=None)[source]

Bases: object

RemoteResource class for accessing external Web resources.

timeout

Time in seconds for the requests.get api call to wait before returning a timeout exception

Type

float

Examples

>>> from insights.core.remote_resource import RemoteResource
>>> rr = RemoteResource()
>>> rtn = rr.get("http://google.com")
>>> print (rtn.content)
get(url, params={}, headers={}, auth=(), certificate_path=None)[source]

Returns the response payload from the request to the given URL.

Parameters
  • url (str) -- The URL for the WEB API that the request is being made too.

  • params (dict) -- Dictionary containing the query string parameters.

  • headers (dict) -- HTTP Headers that may be needed for the request.

  • auth (tuple) -- User ID and password for Basic Auth

  • certificate_path (str) -- Path to the ssl certificate.

Returns

(HttpResponse): Response object from requests.get api request

Return type

response

timeout = 10

insights.core.spec_factory

class insights.core.spec_factory.CommandOutputProvider(cmd, ctx, args=None, split=True, keep_rc=False, ds=None, timeout=None, inherit_env=None)[source]

Bases: insights.core.spec_factory.ContentProvider

Class used in datasources to return output from commands.

create_args()[source]
create_env()[source]
load()[source]
validate()[source]
write(dst)[source]
class insights.core.spec_factory.ContentProvider[source]

Bases: object

property content
load()[source]
property path
stream()[source]

Returns a generator of lines instead of a list of lines.

class insights.core.spec_factory.DatasourceProvider(content, relative_path, root='/', ds=None, ctx=None)[source]

Bases: insights.core.spec_factory.ContentProvider

load()[source]
write(dst)[source]
class insights.core.spec_factory.FileProvider(relative_path, root='/', ds=None, ctx=None)[source]

Bases: insights.core.spec_factory.ContentProvider

validate()[source]
class insights.core.spec_factory.RawFileProvider(relative_path, root='/', ds=None, ctx=None)[source]

Bases: insights.core.spec_factory.FileProvider

Class used in datasources that returns the contents of a file a single string. The file is not filtered.

load()[source]
write(dst)[source]
class insights.core.spec_factory.RegistryPoint(metadata=None, multi_output=False, raw=False, filterable=False)[source]

Bases: object

insights.core.spec_factory.SAFE_ENV = {'LANG': 'C.UTF-8', 'LC_ALL': 'C', 'PATH': '/bin:/usr/bin:/sbin:/usr/sbin:/usr/share/Modules/bin'}

A minimal set of environment variables for use in subprocess calls

class insights.core.spec_factory.SerializedOutputProvider(relative_path, root='/', ds=None, ctx=None)[source]

Bases: insights.core.spec_factory.TextFileProvider

create_args()[source]
class insights.core.spec_factory.SerializedRawOutputProvider(relative_path, root='/', ds=None, ctx=None)[source]

Bases: insights.core.spec_factory.RawFileProvider

class insights.core.spec_factory.SpecDescriptor(func)[source]

Bases: object

class insights.core.spec_factory.SpecSet[source]

Bases: object

The base class for all spec declarations. Extend this class and define your datasources directly or with a SpecFactory.

context_handlers = {}
registry = {}
class insights.core.spec_factory.SpecSetMeta(name, bases, dct)[source]

Bases: type

The metaclass that converts RegistryPoint markers to registry point datasources and hooks implementations for them into the registry.

class insights.core.spec_factory.TextFileProvider(relative_path, root='/', ds=None, ctx=None)[source]

Bases: insights.core.spec_factory.FileProvider

Class used in datasources that returns the contents of a file a list of lines. Each line is filtered if filters are defined for the datasource.

create_args()[source]
load()[source]
write(dst)[source]
class insights.core.spec_factory.command_with_args(cmd, provider, context=<class 'insights.core.context.HostContext'>, deps=None, split=True, keep_rc=False, timeout=None, inherit_env=None, **kwargs)[source]

Bases: object

Execute a command that has dynamic arguments

Parameters
  • cmd (list of lists) -- the command to execute. Breaking apart a command string that might require arguments.

  • provider (str or tuple) -- argument string or a tuple of argument strings.

  • context (ExecutionContext) -- the context under which the datasource should run.

  • split (bool) -- whether the output of the command should be split into a list of lines

  • keep_rc (bool) -- whether to return the error code returned by the process executing the command. If False, any return code other than zero with raise a CalledProcessError. If True, the return code and output are always returned.

  • timeout (int) -- Number of seconds to wait for the command to complete. If the timeout is reached before the command returns, a CalledProcessError is raised. If None, timeout is infinite.

  • inherit_env (list) -- The list of environment variables to inherit from the calling process when the command is invoked.

Returns

A datasource that returns the output of a command that takes

specified arguments passed by the provider.

Return type

function

insights.core.spec_factory.deserialize_command_output(_type, data, root)[source]
insights.core.spec_factory.deserialize_datasource_provider(_type, data, root)[source]
insights.core.spec_factory.deserialize_raw_file_provider(_type, data, root)[source]
insights.core.spec_factory.deserialize_text_provider(_type, data, root)[source]
insights.core.spec_factory.enc(s)[source]
insights.core.spec_factory.escape(s)[source]
class insights.core.spec_factory.find(spec, pattern)[source]

Bases: object

Helper class for extracting specific lines from a datasource for direct consumption by a rule.

service_starts = find(Specs.audit_log, "SERVICE_START")

@rule(service_starts)
def report(starts):
    return make_info("SERVICE_STARTS", num_starts=len(starts))
Parameters
  • spec (datasource) -- some datasource, ideally filterable.

  • pattern (string / list) -- a string or list of strings to match (no patterns supported)

Returns

A dict where each key is a command, path, or spec name, and each value is a non-empty list of matching lines. Only paths with matching lines are included.

Raises

dr.SkipComponent if no paths have matching lines. --

class insights.core.spec_factory.first_file(paths, context=None, deps=[], kind=<class 'insights.core.spec_factory.TextFileProvider'>, **kwargs)[source]

Bases: object

Creates a datasource that returns the first existing and readable file in files.

Parameters
  • files (str) -- list of paths to find and read

  • context (ExecutionContext) -- the context under which the datasource should run.

  • kind (FileProvider) -- One of TextFileProvider or RawFileProvider.

Returns

A datasource that returns the first file in files that exists

and is readable

Return type

function

class insights.core.spec_factory.first_of(deps)[source]

Bases: object

Given a list of dependencies, returns the first of the list that exists in the broker. At least one must be present, or this component won’t fire.

class insights.core.spec_factory.foreach_collect(provider, path, ignore=None, context=<class 'insights.core.context.HostContext'>, deps=[], kind=<class 'insights.core.spec_factory.TextFileProvider'>, **kwargs)[source]

Bases: object

Subtitutes each element in provider into path and collects the files at the resulting paths.

Parameters
  • provider (list) -- a list of elements or tuples.

  • path (str) -- a path template with substitution parameters.

  • context (ExecutionContext) -- the context under which the datasource should run.

  • kind (FileProvider) -- one of TextFileProvider or RawFileProvider

Returns

A datasource that returns a list of file contents created by

substituting each element of provider into the path template.

Return type

function

class insights.core.spec_factory.foreach_execute(provider, cmd, context=<class 'insights.core.context.HostContext'>, deps=[], split=True, keep_rc=False, timeout=None, inherit_env=[], **kwargs)[source]

Bases: object

Execute a command for each element in provider. Provider is the output of a different datasource that returns a list of single elements or a list of tuples. The command should have %s substitution parameters equal to the number of elements in each tuple of the provider.

Parameters
  • provider (list) -- a list of elements or tuples.

  • cmd (list of lists) -- a command with substitution parameters. Breaking apart a command string that might contain multiple commands separated by a pipe, getting them ready for subproc operations. IE. A command with filters applied

  • context (ExecutionContext) -- the context under which the datasource should run.

  • split (bool) -- whether the output of the command should be split into a list of lines

  • keep_rc (bool) -- whether to return the error code returned by the process executing the command. If False, any return code other than zero with raise a CalledProcessError. If True, the return code and output are always returned.

  • timeout (int) -- Number of seconds to wait for the command to complete. If the timeout is reached before the command returns, a CalledProcessError is raised. If None, timeout is infinite.

  • inherit_env (list) -- The list of environment variables to inherit from the calling process when the command is invoked.

Returns

A datasource that returns a list of outputs for each command

created by substituting each element of provider into the cmd template.

Return type

function

class insights.core.spec_factory.glob_file(patterns, ignore=None, context=None, deps=[], kind=<class 'insights.core.spec_factory.TextFileProvider'>, max_files=1000, **kwargs)[source]

Bases: object

Creates a datasource that reads all files matching the glob pattern(s).

Parameters
  • patterns (str or [str]) -- glob pattern(s) of paths to read.

  • ignore (regex) -- a regular expression that is used to filter the paths matched by pattern(s).

  • context (ExecutionContext) -- the context under which the datasource should run.

  • kind (FileProvider) -- One of TextFileProvider or RawFileProvider.

  • max_files (int) -- Maximum number of glob files to process.

Returns

A datasource that reads all files matching the glob patterns.

Return type

function

class insights.core.spec_factory.head(dep, **kwargs)[source]

Bases: object

Return the first element of any datasource that produces a list.

class insights.core.spec_factory.listdir(path, context=None, ignore=None, deps=[])[source]

Bases: object

Execute a simple directory listing of all the files and directories in path.

Parameters
  • path (str) -- directory or glob pattern to list.

  • context (ExecutionContext) -- the context under which the datasource should run.

  • ignore (str) -- regular expression defining paths to ignore.

Returns

A datasource that returns the list of files and directories

in the directory specified by path

Return type

function

insights.core.spec_factory.mangle_command(command, name_max=255)[source]

Mangle a command line string into something suitable for use as the basename of a filename. At minimum this function must remove slashes, but it also does other things to clean the basename: removing directory names from the command name, replacing many non- characters with undersores, in addition to replacing slashes with dots.

By default, curly braces, ‘{‘ and ‘}’, are replaced with underscore, set ‘has_variables’ to leave curly braces alone.

This function was copied from the function that insights-client uses to create the name it to capture the output of the command.

Here, server side, it is used to figure out what file in the archive contains the output a command. Server side, the command may contain references to variables (names matching curly braces) that will be expanded before the name is actually used as a file name.

To completly mimic the insights-client behavior, curly braces need to be replaced underscores. If the command has variable references, the curly braces must be left alone. Set has_variables, to leave curly braces alone.

This implementation of ‘has_variables’ assumes that variable names only contain that are not replaced by mangle_command.

insights.core.spec_factory.serialize_command_output(obj, root)[source]
insights.core.spec_factory.serialize_datasource_provider(obj, root)[source]
insights.core.spec_factory.serialize_raw_file_provider(obj, root)[source]
insights.core.spec_factory.serialize_text_file_provider(obj, root)[source]
class insights.core.spec_factory.simple_command(cmd, context=<class 'insights.core.context.HostContext'>, deps=[], split=True, keep_rc=False, timeout=None, inherit_env=[], **kwargs)[source]

Bases: object

Execute a simple command that has no dynamic arguments

Parameters
  • cmd (list of lists) -- the command(s) to execute. Breaking apart a command string that might contain multiple commands separated by a pipe, getting them ready for subproc operations. IE. A command with filters applied

  • context (ExecutionContext) -- the context under which the datasource should run.

  • split (bool) -- whether the output of the command should be split into a list of lines

  • keep_rc (bool) -- whether to return the error code returned by the process executing the command. If False, any return code other than zero with raise a CalledProcessError. If True, the return code and output are always returned.

  • timeout (int) -- Number of seconds to wait for the command to complete. If the timeout is reached before the command returns, a CalledProcessError is raised. If None, timeout is infinite.

  • inherit_env (list) -- The list of environment variables to inherit from the calling process when the command is invoked.

Returns

A datasource that returns the output of a command that takes

no arguments

Return type

function

class insights.core.spec_factory.simple_file(path, context=None, deps=[], kind=<class 'insights.core.spec_factory.TextFileProvider'>, **kwargs)[source]

Bases: object

Creates a datasource that reads the file at path when evaluated.

Parameters
  • path (str) -- path to the file to read

  • context (ExecutionContext) -- the context under which the datasource should run.

  • kind (FileProvider) -- One of TextFileProvider or RawFileProvider.

Returns

A datasource that reads all files matching the glob patterns.

Return type

function

insights.core.taglang

Simple language for defining predicates against a list or set of strings.

Operator Precedence:
  • ! high - opposite truth value of its predicate

  • / high - starts a regex that continues until whitespace unless quoted

  • & medium - “and” of two predicates

  • | low - “or” of two predicates

  • , low - “or” of two predicates. Synonym for |.

It supports grouping with parentheses and quoted strings/regexes surrounded with either single or double quotes.

Examples

>>> pred = parse("a | b & !c")  # means (a or (b and (not c)))
>>> pred(["a"])
True
>>> pred(["b"])
True
>>> pred(["b", "c"])
False
>>> pred = parse("/net | apache")
>>> pred(["networking"])
True
>>> pred(["mynetwork"])
True
>>> pred(["apache"])
True
>>> pred(["security"])
False
>>> pred = parse("(a | b) & c")
>>> pred(["a", "c"])
True
>>> pred(["b", "c"])
True
>>> pred(["a"])
False
>>> pred(["b"])
False
>>> pred(["c"])
False

Regular expressions start with a forward slash / and continue until whitespace unless they are quoted with either single or double quotes. This means that they can consume what would normally be considered an operator or a closing parenthesis if you aren’t careful.

For example, this is a parse error because the regex consumes the comma:
>>> pred = parse("/net, apache")
Exception
Instead, do this:
>>> pred = parse("/net , apache")
or this:
>>> pred = parse("/net | apache")
or this:
>>> pred = parse("'/net', apache")
class insights.core.taglang.And(left, right)[source]

Bases: insights.core.taglang.Predicate

The values must satisfy both the left and the right condition.

test(value)[source]
class insights.core.taglang.Eq(value)[source]

Bases: insights.core.taglang.Predicate

The value must be in the set of values.

test(values)[source]
class insights.core.taglang.Not(pred)[source]

Bases: insights.core.taglang.Predicate

The values must not satisfy the wrapped condition.

test(value)[source]
class insights.core.taglang.Or(left, right)[source]

Bases: insights.core.taglang.Predicate

The values must satisfy either the left or the right condition.

test(value)[source]
class insights.core.taglang.Predicate[source]

Bases: object

Provides __call__ for invoking the Predicate like a function without having to explictly call its test method.

class insights.core.taglang.Regex(value)[source]

Bases: insights.core.taglang.Predicate

The regex must match at least one of the values.

test(values)[source]
insights.core.taglang.negate(args)[source]
insights.core.taglang.oper(args)[source]

insights.parsers

exception insights.parsers.ParseException[source]

Bases: Exception

Exception that should be thrown from parsers that encounter exceptions they recognize while parsing. When this exception is thrown, the exception message and data are logged and no parser output data is saved.

exception insights.parsers.SkipException[source]

Bases: insights.core.dr.SkipComponent

Exception that should be thrown from parsers that are explicitly written to look for errors in input data. If the expected error is not found then the parser should throw this exception to signal to the infrastructure that the parser’s output should not be retained.

insights.parsers.calc_offset(lines, target, invert_search=False)[source]

Function to search for a line in a list starting with a target string. If target is None or an empty string then 0 is returned. This allows checking target here instead of having to check for an empty target in the calling function. Each line is stripped of leading spaces prior to comparison with each target however target is not stripped. See parse_fixed_table in this module for sample usage.

Parameters
  • lines (list) -- List of strings.

  • target (list) -- List of strings to search for at the beginning of any line in lines.

  • invert_search (boolean) -- If True this flag causes the search to continue until the first line is found not matching anything in target. An empty line is implicitly included in target. Default is False. This would typically be used if trimming trailing lines off of a file by passing reversed(lines) as the lines argument.

Returns

index into the lines indicating the location of target. If target is None or an empty string 0 is returned as the offset. If invert_search is True the index returned will point to the line after the last target was found.

Return type

int

Raises

ValueError -- Exception is raised if target string is specified and it was not found in the input lines.

Examples

>>> lines = [
... '#   ',
... 'Warning line',
... 'Error line',
... '    data 1 line',
... '    data 2 line']
>>> target = ['data']
>>> calc_offset(lines, target)
3
>>> target = ['#', 'Warning', 'Error']
>>> calc_offset(lines, target, invert_search=True)
3
insights.parsers.get_active_lines(lines, comment_char='#')[source]

Returns lines, or parts of lines, from content that are not commented out or completely empty. The resulting lines are all individually stripped.

This is useful for parsing many config files such as ifcfg.

Parameters
  • lines (list) -- List of strings to parse.

  • comment_char (str) -- String indicating that all chars following are part of a comment and will be removed from the output.

Returns

List of valid lines remaining in the input.

Return type

list

Examples

>>> lines = [
... 'First line',
... '   ',
... '# Comment line',
... 'Inline comment # comment',
... '          Whitespace          ',
... 'Last line']
>>> get_active_lines(lines)
['First line', 'Inline comment', 'Whitespace', 'Last line']

Takes a list of dictionaries and finds all the dictionaries where the keys and values match those found in the keyword arguments.

Keys in the row data have ‘ ‘ and ‘-‘ replaced with ‘_’, so they can match the keyword argument parsing. For example, the keyword argument ‘fix_up_path’ will match a key named ‘fix-up path’.

In addition, several suffixes can be added to the key name to do partial matching of values:

  • ‘__contains’ will test whether the data value contains the given value.

  • ‘__startswith’ tests if the data value starts with the given value

  • ‘__lower_value’ compares the lower-case version of the data and given values.

Parameters
  • rows (list) -- A list of dictionaries representing the data to be searched.

  • **kwargs (dict) -- keyword-value pairs corresponding to the fields that need to be found and their required values in the data rows.

Returns

The list of rows that match the search keywords. If no keyword arguments are given, no rows are returned.

Return type

(list)

Examples

>>> rows = [
...     {'domain': 'oracle', 'type': 'soft', 'item': 'nofile', 'value': 1024},
...     {'domain': 'oracle', 'type': 'hard', 'item': 'nofile', 'value': 65536},
...     {'domain': 'oracle', 'type': 'soft', 'item': 'stack', 'value': 10240},
...     {'domain': 'oracle', 'type': 'hard', 'item': 'stack', 'value': 3276},
...     {'domain': 'root', 'type': 'soft', 'item': 'nproc', 'value': -1}]
...
>>> keyword_search(rows, domain='root')
[{'domain': 'root', 'type': 'soft', 'item': 'nproc', 'value': -1}]
>>> keyword_search(rows, item__contains='c')
[{'domain': 'oracle', 'type': 'soft', 'item': 'stack', 'value': 10240},
 {'domain': 'oracle', 'type': 'hard', 'item': 'stack', 'value': 3276},
 {'domain': 'root', 'type': 'soft', 'item': 'nproc', 'value': -1}]
>>> keyword_search(rows, domain__startswith='r')
[{'domain': 'root', 'type': 'soft', 'item': 'nproc', 'value': -1}]
insights.parsers.optlist_to_dict(optlist, opt_sep=', ', kv_sep='=', strip_quotes=False)[source]

Parse an option list into a dictionary.

Takes a list of options separated by opt_sep and places them into a dictionary with the default value of True. If kv_sep option is specified then key/value options key=value are parsed. Useful for parsing options such as mount options in the format rw,ro,rsize=32168,xyz.

Parameters
  • optlist (str) -- String of options to parse.

  • opt_sep (str) -- Separater used to split options.

  • kv_sep (str) -- If not None then optlist includes key=value pairs to be split, and this str is used to split them.

  • strip_quotes (bool) -- If set, will remove matching ‘”’ and ‘”’ characters from start and end of line. No quotes are removed from inside the string and mismatched quotes are not removed.

Returns

Returns a dictionary of names present in the list. If kv_sep is not None then the values will be the str on the right-hand side of kv_sep. If kv_sep is None then each key will have a default value of True.

Return type

dict

Examples

>>> optlist = 'rw,ro,rsize=32168,xyz'
>>> optlist_to_dict(optlist)
{'rw': True, 'ro': True, 'rsize': '32168', 'xyz': True}
insights.parsers.parse_delimited_table(table_lines, delim=None, max_splits=-1, strip=True, header_delim='same as delimiter', heading_ignore=None, header_substitute=None, trailing_ignore=None, raw_line_key=None)[source]

Parses table-like text. Uses the first (non-ignored) row as the list of column names, which cannot contain the delimiter. Fields cannot contain the delimiter but can be blank if a printable delimiter is used.

Parameters
  • table_lines (list) -- List of strings with the first line containing column headings separated by spaces, and the remaining lines containing table data.

  • delim (str) -- String used in the content to separate fields. If left as None (the default), white space is used as the field separator.

  • max_splits (int) -- Maximum number of fields to create by splitting the line. After this number of fields has been found, the rest of the line is left un-split and may contain the delimiter. Lines may contain less than this number of fields.

  • strip (bool) -- If set to True, fields and headings will be stripped of leading and trailing space. If set to False, fields and headings will be left as is. The delimiter is always removed, so strip need not be set if delim is set to None (but will not change output in that case).

  • header_delim (str) -- When set, uses a different delimiter to the content for splitting the header into keywords. Set to None, this will split on white space. When left at the special value of ‘same as delimiter’, the content delimiter will be used to split the header line as well.

  • heading_ignore (list) -- Optional list of strings to search for at beginning of line. All lines before this line will be ignored. If specified then it must be present in the file or ValueError will be raised.

  • header_substitute (list) -- Optional list of tuples containing (old_string_value, new_string_value) to be used to modify header values. If whitespace is present in a column it must be replaced with non-whitespace characters in order for the table to be parsed correctly.

  • trailing_ignore (list) -- Optional list of strings to look for at the end rows of the content. Lines starting with these strings will be ignored, thereby truncating the rows of data.

  • raw_line_key (str) -- Key under which to save the raw line. If None, line is not saved.

Returns

Returns a list of dictionaries for each row of column data, keyed on the column headings in the same case as input.

Return type

list

insights.parsers.parse_fixed_table(table_lines, heading_ignore=[], header_substitute=[], trailing_ignore=[], empty_exception=False)[source]

Function to parse table data containing column headings in the first row and data in fixed positions in each remaining row of table data. Table columns must not contain spaces within the column name. Column headings are assumed to be left justified and the column data width is the width of the heading label plus all whitespace to the right of the label. This function will handle blank columns.

Parameters
  • table_lines (list) -- List of strings with the first line containing column headings separated by spaces, and the remaining lines containing table data in left justified format.

  • heading_ignore (list) -- Optional list of strings to search for at beginning of line. All lines before this line will be ignored. If specified then it must be present in the file or ValueError will be raised.

  • header_substitute (list) -- Optional list of tuples containing (old_string_value, new_string_value) to be used to modify header values. If whitespace is present in a column it must be replaced with non-whitespace characters in order for the table to be parsed correctly.

  • trailing_ignore (list) -- Optional list of strings to look for at the end rows of the content. Lines starting with these strings will be ignored, thereby truncating the rows of data.

  • empty_exception (bool) -- If True, raise a ParseException when the value if empty. False by default.

Returns

Returns a list of dict for each row of column data. Dict keys

are the column headings in the same case as input.

Return type

list

Raises
  • ValueError -- Raised if heading_ignore is specified and not found in table_lines.

  • ParseException -- Raised if there are empty values when empty_exception is True

Sample input:

Column1    Column2    Column3
data1      data 2     data   3
data4      data5      data6

Examples

>>> table_data = parse_fixed_table(table_lines)
>>> table_data
[{'Column1': 'data1', 'Column2': 'data 2', 'Column3': 'data   3'},
 {'Column1': 'data4', 'Column2': 'data5', 'Column3': 'data6'}]
insights.parsers.split_kv_pairs(lines, comment_char='#', filter_string=None, split_on='=', use_partition=False, ordered=False)[source]

Split lines of a list into key/value pairs

Use this function to filter and split all lines of a list of strings into a dictionary. Named arguments may be used to control how the line is split, how lines are filtered and the type of output returned. See parameters for more information. When splitting key/value, the first occurence of the split character is used, other occurrences of the split char in the line will be ignored. :get_active_lines() is called to strip comments and blank lines from the data.

Parameters
  • lines (list of str) -- List of the strings to be split.

  • comment_char (str) -- Char that when present in the line indicates all following chars are part of a comment. If this is present, all comments and all blank lines are removed from list before further processing. The default comment char is the # character.

  • filter_string (str) -- If the filter string is present, then only lines containing the filter will be processed, other lines will be ignored.

  • split_on (str) -- Character to use when splitting a line. Only the first occurence of the char is used when splitting, so only one split is performed at the first occurrence of split_on. The default string is =.

  • use_partition (bool) -- If this parameter is True then the python partition function will be used to split the line. If False then the pyton split function will be used. The difference is that when False, if the split character is not present in the line then the line is ignored and when True the line will be parsed regardless. Set use_partition to True if you have valid lines that do not contain the split_on character. Set use_partition to False if you want to ignore lines that do not contain the split_on character. The default value is False.

  • ordered (bool) -- If this parameter is True then the resulting dictionary will be in the same order as in the original file, a python OrderedDict type is used. If this parameter is False then the resulting dictionary is in no particular order, a base python dict type is used. The default is False.

Returns

Return value is a dictionary of the key/value pairs. If parameter keyword is True then an OrderedDict is returned, otherwise a dict is returned.

Return type

dict

Examples

>>> from .. import split_kv_pairs
>>> for line in lines:
...     print line
# Comment line
# Blank lines will also be removed
keyword1 = value1   # Inline comments
keyword2 = value2a=True, value2b=100M
keyword3     # Key with no separator
>>> split_kv_pairs(lines)
{'keyword2': 'value2a=True, value2b=100M', 'keyword1': 'value1'}
>>> split_kv_pairs(lines, comment_char='#')
{'keyword2': 'value2a=True, value2b=100M', 'keyword1': 'value1'}
>>> split_kv_pairs(lines, filter_string='keyword2')
{'keyword2': 'value2a=True, value2b=100M'}
>>> split_kv_pairs(lines, use_partition=True)
{'keyword3': '', 'keyword2': 'value2a=True, value2b=100M', 'keyword1': 'value1'}
>>> split_kv_pairs(lines, use_partition=True, ordered=True)
OrderedDict([('keyword1', 'value1'), ('keyword2', 'value2a=True, value2b=100M'), ('keyword3', '')])
insights.parsers.unsplit_lines(lines, cont_char='\\', keep_cont_char=False)[source]

Recombine lines having a continuation character at end.

Generator that recombines lines in the list that have the char cont_char at the end of a line. If cont_char is found in a line then then next line will be appended to the current line, this will continue for multiple continuation lines until the next line is found with no continuation character at the end. All lines found will be combined and returned.

If the keep_cont_char option is set to True, the continuation character will be left on the end of the line. Otherwise, by default, it is removed.

Parameters
  • lines (list) -- List of strings to be evaluated.

  • cont_char (char) -- Char to search for at end of line. Default is \.

  • keep_cont_char (bool) -- Whether to keep the continuation on the end of the line. Defaults to False, which causes the continuation character to be removed.

Yields

line (str) -- Yields unsplit lines

Examples

>>> lines = ['Line one \', '     line one part 2', 'Line two']
>>> list(unsplit_lines(lines))
['Line one      line one part 2', 'Line two']
>>> list(unsplit_lines(lines, cont_char='2'))
['Line one \', '     line one part Line two']
>>> list(unsplit_lines(lines, keep_cont_char=True)
['Line one \     line one part 2', 'Line two']

insights.parsr

parsr is a library for building parsers based on parsing expression grammars or PEGs.

You build a parser by making subparsers to match simple building blocks like numbers, strings, symbols, etc. and then composing them to reflect the higher level structure of your language.

Some means of combination are like those of regular expressions: sequences, alternatives, repetition, optional matching, etc. However, matching is always greedy. parsr also allows recursive definitions and the ability to transform the match of any subparser with a function. The parser can recognize and interpret its input at the same time.

Here’s an example that evaluates arithmetic expressions.

from insights.parsr import EOF, Forward, InSet, Many, Number, WS

def op(args):
    ans, rest = args
    for op, arg in rest:
        if op == "+":
            ans += arg
        elif op == "-":
            ans -= arg
        elif op == "*":
            ans *= arg
        else:
            ans /= arg
    return ans


LP = Char("(")
RP = Char(")")

expr = Forward()  # Forward declarations allow recursive structure
factor = WS >> (Number | (LP >> expr << RP)) << WS
term = (factor + Many(InSet("*/") + factor)).map(op)

# Notice the funny assignment of Forward definitions.
expr <= (term + Many(InSet("+-") + term)).map(op)

evaluate = expr << EOF
class insights.parsr.Char(char)[source]

Bases: insights.parsr.Parser

Char matches a single character.

a = Char("a")     # parses a single "a"
val = a("a")      # produces an "a" from the data.
val = a("b")      # raises an exception
process(pos, data, ctx)[source]
class insights.parsr.Choice(children)[source]

Bases: insights.parsr.Parser

A Choice requires at least one of its children to succeed, and it returns the value of the one that matched. Alternatives in a choice are tried left to right, so they have a definite priority. This a feature of PEGs over context free grammars.

Additional uses of | on the parser will cause it to accumulate parsers onto itself instead of creating new Choices. This has the desirable effect of increasing efficiency, but it can also have unintended consequences if a choice is used in multiple parts of a grammar as the initial element of another choice. Use a Wrapper to prevent that from happening.

abc = a | b | c   # alternation or choice.
val = abc("a")    # parses a single "a"
val = abc("b")    # parses a single "b"
val = abc("c")    # parses a single "c"
val = abc("d")    # raises an exception
process(pos, data, ctx)[source]
class insights.parsr.Context(lines, src=None)[source]

Bases: object

An instance of Context is threaded through the process call to every parser. It stores an indention stack to track hanging indents, a tag stack for grammars like xml or apache configuration, the active parser stack for error reporting, and accumulated errors for the farthest position reached.

col(pos)[source]
line(pos)[source]
set(pos, msg)[source]

Every parser that encounters an error calls set with the current position and a message. If the error is at the farthest position reached by any other parser, the active parser stack and message are accumulated onto a list of errors for that position. If the position is beyond any previous errors, the error list is cleared before the active stack and new error are recorded. This is the “farthest failure heurstic.”

class insights.parsr.EnclosedComment(s, e)[source]

Bases: insights.parsr.Parser

EnclosedComment matches a start literal, an end literal, and all characters between. It returns the content between the start and end.

Comment = EnclosedComment("/*", "*/")
process(pos, data, ctx)[source]
class insights.parsr.EndTagName(parser, ignore_case=False)[source]

Bases: insights.parsr.Wrapper

Wraps a parser that represents an end tag for grammars like xml, html, etc. The result is captured and compared to the last tag on the tag stack in the Context object. The tags must match for the parse to be successful.

process(pos, data, ctx)[source]
class insights.parsr.FollowedBy(child, follow)[source]

Bases: insights.parsr.Parser

FollowedBy takes a parser and a predicate parser. The initial parser matches only if the predicate matches the input after it. On success, input for the predicate is left unread, and the result of the first parser is returned.

ab = Char("a") & Char("b") # matches an "a" followed by a "b", but
                           # the "b" isn't consumed from the input.
val = ab("ab")             # returns "a" and leaves "b" to be
                           # consumed.
val = ab("ac")             # raises an exception and doesn't
                           # consume "a".
process(pos, data, ctx)[source]
class insights.parsr.Forward[source]

Bases: insights.parsr.Parser

Forward allows recursive grammars where a nonterminal’s definition includes itself directly or indirectly. You initially create a Forward nonterminal with regular assignment.

expr = Forward()

You later give it its real definition with the <= operator.

expr <= (term + Many(LowOps + term)).map(op)
process(pos, data, ctx)[source]
class insights.parsr.HangingString(chars, echars=None, min_length=1)[source]

Bases: insights.parsr.Parser

HangingString matches lines with indented continuations like in ini files.

Key = WS >> PosMarker(String(key_chars)) << WS
Sep = InSet(sep_chars, "Sep")
Value = WS >> (Boolean | HangingString(value_chars))
KVPair = WithIndent(Key + Opt(Sep >> Value))
process(pos, data, ctx)[source]
class insights.parsr.InSet(s, name=None)[source]

Bases: insights.parsr.Parser

InSet matches any single character from a set.

vowel = InSet("aeiou")  # or InSet(set("aeiou"))
val = vowel("a")  # okay
val = vowel("e")  # okay
val = vowel("i")  # okay
val = vowel("o")  # okay
val = vowel("u")  # okay
val = vowel("y")  # raises an exception
process(pos, data, ctx)[source]
class insights.parsr.KeepLeft(left, right)[source]

Bases: insights.parsr.Parser

KeepLeft takes two parsers. It requires them both to succeed but only returns results for the first one. It consumes input for both.

a = Char("a")
q = Char('"')

aq = a << q      # like a + q except only the result of a is
                 # returned
val = aq('a"')   # returns "a". Keeps the thing on the left of the
                 # <<
process(pos, data, ctx)[source]
class insights.parsr.KeepRight(left, right)[source]

Bases: insights.parsr.Parser

KeepRight takes two parsers. It requires them both to succeed but only returns results for the second one. It consumes input for both.

q = Char('"')
a = Char("a")

qa = q >> a      # like q + a except only the result of a is
                 # returned
val = qa('"a')   # returns "a". Keeps the thing on the right of the
                 # >>
process(pos, data, ctx)[source]
class insights.parsr.Lift(func)[source]

Bases: insights.parsr.Parser

Lift wraps a function of multiple arguments. Use it with the multiplication operator on as many parsers as function arguments, and the results of those parsers will be passed to the function. The result of a Lift parser is the result of the wrapped function.

Example:

.. code-block:: python

    def comb(a, b, c):
        return "".join([a, b, c])

    # You'd normally invoke comb like comb("x", "y", "z"), but you can
    # "lift" it for use with parsers like this:

    x = Char("x")
    y = Char("y")
    z = Char("z")
    p = Lift(comb) * x * y * z

    # The * operator separates parsers whose results will go into the
    # arguments of the lifted function. I've used Char above, but x, y,
    # and z can be arbitrarily complex.

    val = p("xyz")  # would return "xyz"
    val = p("xyx")  # raises an exception. nothing would be consumed
process(pos, data, ctx)[source]
class insights.parsr.Literal(chars, value=<object object>, ignore_case=False)[source]

Bases: insights.parsr.Parser

Match a literal string. The value keyword lets you return a python value instead of the matched input. The ignore_case keyword makes the match case insensitive.

lit = Literal("true")
val = lit("true")  # returns "true"
val = lit("True")  # raises an exception
val = lit("one")   # raises an exception

lit = Literal("true", ignore_case=True)
val = lit("true")  # returns "true"
val = lit("TRUE")  # returns "TRUE"
val = lit("one")   # raises an exception

t = Literal("true", value=True)
f = Literal("false", value=False)
val = t("true")  # returns the boolean True
val = t("True")  # raises an exception

val = f("false") # returns the boolean False
val = f("False") # raises and exception

t = Literal("true", value=True, ignore_case=True)
f = Literal("false", value=False, ignore_case=True)
val = t("true")  # returns the boolean True
val = t("True")  # returns the boolean True

val = f("false") # returns the boolean False
val = f("False") # returns the boolean False
process(pos, data, ctx)[source]
class insights.parsr.Many(parser, lower=0)[source]

Bases: insights.parsr.Parser

Many wraps another parser and requires it to match a certain number of times.

When Many matches zero occurences (lower=0), it always succeeds. Keep this in mind when using it in a list of alternatives or with FollowedBy or NotFollowedBy.

The results are returned as a list.

x = Char("x")
xs = Many(x)      # parses many (or no) x's in a row
val = xs("")      # returns []
val = xs("a")     # returns []
val = xs("x")     # returns ["x"]
val = xs("xxxxx") # returns ["x", "x", "x", "x", "x"]
val = xs("xxxxb") # returns ["x", "x", "x", "x"]

ab = Many(a + b)  # parses "abab..."
val = ab("")      # produces []
val = ab("ab")    # produces [["a", b"]]
val = ab("ba")    # produces []
val = ab("ababab")# produces [["a", b"], ["a", "b"], ["a", "b"]]

ab = Many(a | b)  # parses any combination of "a" and "b" like
                  # "aababbaba..."
val = ab("aababb")# produces ["a", "a", "b", "a", "b", "b"]
bs = Many(Char("b"), lower=1) # requires at least one "b"
process(pos, data, ctx)[source]
class insights.parsr.Map(child, func)[source]

Bases: insights.parsr.Parser

Map wraps a parser and a function. It returns the result of using the function to transform the wrapped parser’s result.

Example:

.. code-block:: python

    Digit = InSet("0123456789")
    Digits = Many(Digit, lower=1)
    Number = Digits.map(lambda x: int("".join(x)))
process(pos, data, ctx)[source]
class insights.parsr.Mark(lineno, col, value)[source]

Bases: object

An object created by PosMarker to capture a value at a position in the input. Marks can give more context to a value transformed by mapped functions.

class insights.parsr.Node[source]

Bases: object

Node is the base class of all parsers. It’s a generic tree structure with each instance containing a list of its children. Its main purpose is to simplify pretty printing.

add_child(child)[source]
set_children(children)[source]
class insights.parsr.NotFollowedBy(child, follow)[source]

Bases: insights.parsr.Parser

NotFollowedBy takes a parser and a predicate parser. The initial parser matches only if the predicate parser fails to match the input after it. On success, input for the predicate is left unread, and the result of the first parser is returned.

anb = Char("a") / Char("b") # matches an "a" not followed by a "b".
val = anb("ac")             # returns "a" and leaves "c" to be
                            # consumed
val = anb("ab")             # raises an exception and doesn't
                            # consume "a".
process(pos, data, ctx)[source]
class insights.parsr.OneLineComment(s)[source]

Bases: insights.parsr.Parser

OneLineComment matches everything from a literal to the end of a line, excluding the end of line characters themselves. It returns the content between the start literal and the end of the line.

Comment = OneLineComment("#") | OneLineComment("//")
process(pos, data, ctx)[source]
class insights.parsr.Opt(p, default=None)[source]

Bases: insights.parsr.Parser

Opt wraps a single parser and returns its value if it succeeds. It returns a default value otherwise. The input pointer is advanced only if the wrapped parser succeeds.

a = Char("a")
o = Opt(a)      # matches an "a" if its available. Still succeeds
                # otherwise but doesn't advance the read pointer.
val = o("a")    # returns "a"
val = o("b")    # returns None. Read pointer is not advanced.

o = Opt(a, default="x") # matches an "a" if its available. Returns
                        # "x" otherwise.
val = o("a")    # returns "a"
val = o("b")    # returns "x". Read pointer is not advanced.
process(pos, data, ctx)[source]
class insights.parsr.Parser[source]

Bases: insights.parsr.Node

Parser is the common base class of all Parsers.

debug(d=True)[source]

Set to True to enable diagnostic messages before and after the parser is invoked.

map(func)[source]

Return a Map parser that transforms the results of the current parser with the function func.

process(pos, data, ctx)[source]
sep_by(sep)[source]

Return a parser that matches zero or more instances of the current parser separated by instances of the parser sep.

until(pred)[source]

Return an Until parser that matches zero or more instances of the current parser until the pred parser succeeds.

class insights.parsr.PosMarker(parser)[source]

Bases: insights.parsr.Wrapper

Save the line number and column of a subparser by wrapping it in a PosMarker. The value of the parser that handled the input as well as the initial input position will be returned as a Mark.

process(pos, data, ctx)[source]
class insights.parsr.Sequence(children)[source]

Bases: insights.parsr.Parser

A Sequence requires all of its children to succeed. It returns a list of the values they matched.

Additional uses of + on the parser will cause it to accumulate parsers onto itself instead of creating new Sequences. This has the desirable effect of causing sequence results to be represented as flat lists instead of trees, but it can also have unintended consequences if a sequence is used in multiple parts of a grammar as the initial element of another sequence. Use a Wrapper to prevent that from happening.

a = Char("a")     # parses a single "a"
b = Char("b")     # parses a single "b"
c = Char("c")     # parses a single "c"

ab = a + b        # parses a single "a" followed by a single "b"
                  # (a + b) creates a "Sequence" object. Using `ab`
                  # as an element in a later sequence would modify
                  # its original definition.

abc = a + b + c   # parses "abc"
                  # (a + b) creates a "Sequence" object to which c
                  # is appended

val = ab("ab")    # produces a list ["a", "b"]
val = ab("a")     # raises an exception
val = ab("b")     # raises an exception
val = ab("ac")    # raises an exception
val = ab("cb")    # raises an exception

val = abc("abc")  # produces ["a", "b", "c"]
process(pos, data, ctx)[source]
class insights.parsr.StartTagName(parser)[source]

Bases: insights.parsr.Wrapper

Wraps a parser that represents a starting tag for grammars like xml, html, etc. The tag result is captured and put onto a tag stack in the Context object.

process(pos, data, ctx)[source]
class insights.parsr.String(chars, echars=None, min_length=1)[source]

Bases: insights.parsr.Parser

Match one or more characters in a set. Matching is greedy.

vowels = String("aeiou")
val = vowels("a")            # returns "a"
val = vowels("u")            # returns "u"
val = vowels("aaeiouuoui")   # returns "aaeiouuoui"
val = vowels("uoiea")        # returns "uoiea"
val = vowels("oouieaaea")    # returns "oouieaaea"
val = vowels("ga")           # raises an exception
process(pos, data, ctx)[source]
class insights.parsr.Until(parser, predicate)[source]

Bases: insights.parsr.Parser

Until wraps a parser and a terminal parser. It accumulates matches of the first parser until the terminal parser succeeds. Input for the terminal parser is left unread, and the results of the first parser are returned as a list.

Since Until can match zero occurences, it always succeeds. Keep this in mind when using it in a list of alternatives or with FollowedBy or NotFollowedBy.

cs = AnyChar.until(Char("y")) # parses many (or no) characters
                              # until a "y" is encountered.

val = cs("")                  # returns []
val = cs("a")                 # returns ["a"]
val = cs("x")                 # returns ["x"]
val = cs("ccccc")             # returns ["c", "c", "c", "c", "c"]
val = cs("abcdycc")           # returns ["a", "b", "c", "d"]
process(pos, data, ctx)[source]
class insights.parsr.WithIndent(parser)[source]

Bases: insights.parsr.Wrapper

Consumes whitespace until a non-whitespace character is encountered, pushes the column position onto an indentation stack in the Context, and then calls the parser it’s wrapping. The wrapped parser and any of its children can make use of the saved indentation. Returns the value of the wrapped parser.

WithIndent allows HangingString to work by giving a way to mark how indented following lines must be to count as continuations.

Key = WS >> PosMarker(String(key_chars)) << WS
Sep = InSet(sep_chars, "Sep")
Value = WS >> (Boolean | HangingString(value_chars))
KVPair = WithIndent(Key + Opt(Sep >> Value))
process(pos, data, ctx)[source]
class insights.parsr.Wrapper(parser)[source]

Bases: insights.parsr.Parser

Parser that wraps another parser. This can be used to prevent sequences and choices from accidentally accumulating other parsers when used in multiple parts of a grammar.

process(pos, data, ctx)[source]
insights.parsr.render(tree)[source]

Pretty prints a PEG.

insights.parsr.skip_none(x)[source]

Filters None values from a list. Often used with map.

insights.parsr.text_format(tree)[source]

Converts a PEG into a pretty printed string.

insights.parsr.query

insights.parsr.query defines a common data model and query language for parsers created with insights.parsr to target.

The model allows duplicate keys, and it allows values with unnamed attributes and recursive substructure. This is a common model for many kinds of configuration.

Simple key/value pairs can be represented as a key with a value that has a single attribute. Most dictionary shapes used to represent configuration are made of keys with simple values (key/single attr), lists of simple values (key/multiple attrs), or nested dictionaries (key/substructure).

Something like XML allows duplicate keys, and it allows values to have named attributes and substructure. This module doesn’t cover that case.

Entry, Directive, Section, and Result have overloaded __getitem__ functions that respond to queries. This allows their instances to be accessed like simple dictionaries, but the key passed to [] is converted to a query of immediate child instances instead of a simple lookup.

class insights.parsr.query.ChildQuery(expr)[source]

Bases: insights.parsr.query._EntryQuery

Returns True if any child node passes the query.

test(node)[source]
class insights.parsr.query.Directive(name=None, attrs=None, children=None, lineno=None, src=None)[source]

Bases: insights.parsr.query.Entry

A Directive is an Entry that represents a single option or named value. They are normally found in Section instances.

attrs
children
lineno
parent
property section
property section_name
src
class insights.parsr.query.Entry(name=None, attrs=None, children=None, lineno=None, src=None)[source]

Bases: object

Entry is the base class for the data model, which is a tree of Entry instances. Each instance has a name, attributes, a parent, and children.

attrs
children
property directives

Returns all immediate children that are instances of Directive.

find(*queries, **kwargs)[source]

Finds matching results anywhere in the configuration. The arguments are the same as those accepted by compile_queries(), and it accepts a keyword called roots that will return the ultimate root nodes of any results.

get_crumbs()[source]

Get the unique name from the current entry to the root.

get_keys()[source]

Returns the unique names of all the children as a list.

property grandchildren

Returns a flattened list of all grandchildren.

property line

Returns the original first line of text that generated the Entry.

lineno
parent
property root

Returns the furthest ancestor Entry. If the node is already the furthest ancestor, None is returned.

property section
property section_name
property sections

Returns all immediate children that are instances of Section.

select(*queries, **kwargs)[source]

select uses compile_queries() to compile queries into a query function and then passes the function, the current Entry instances children, and kwargs on to select().

src
property string_value

Returns the string representation of all attributes separated by a single whilespace.

upto(query)[source]

Go up from the current node to the first node that matches query.

property value

Returns None if no attributes exist, the first attribute if only one exists, or the string_value if more than one exists.

where(name, value=None)[source]

Selects current nodes based on name and value queries of child nodes. If any immediate children match the queries, the parent is included in the results. The :py:func:where_query function can be used to construct queries that act on the children as a whole instead of one at a time.

Example: >>> from insights.parsr.query import where_query as q >>> from insights.parsr.query import from_dict >>> r = from_dict(load_config()) >>> r = conf.status.conditions.where(q(“status”, “False”) | q(“type”, “Progressing”)) >>> r.message >>> r = conf.status.conditions.where(q(“status”, “False”) | q(“type”, “Progressing”)) >>> r.message >>> r.lastTransitionTime.values [‘2019-08-04T23:17:08Z’, ‘2019-08-04T23:32:14Z’]

class insights.parsr.query.NameQuery(expr)[source]

Bases: insights.parsr.query._EntryQuery

A query against the name of an Entry.

test(n)[source]
class insights.parsr.query.Result(children=None)[source]

Bases: insights.parsr.query.Entry

Result is an Entry whose children are the results of a query.

attrs
children
get_crumbs()[source]

Get the unique names from the current locations to the roots.

get_keys()[source]

Returns the unique names of all the grandchildren as a list.

lineno
nth(n)[source]

If the results are from a list beneath a node, get the nth element of the results for each unique parent.

Example: conf.status.conditions.nth(0) will get the 0th condition of each status.

parent
property parents

Returns all of the deduplicated parents as a list. If a child has no parent, the child itself is treated as the parent.

property roots

Returns the furthest ancestor Entry instances of all children. If a child has no furthest ancestor, the child itself is treated as a root.

select(*queries, **kwargs)[source]

select uses compile_queries() to compile queries into a query function and then passes the function, the current Entry instances children, and kwargs on to select().

src
property string_value

Returns the string value of the child if only one child exists. This helps queries behave more like dictionaries when you know only one result should exist.

property unique_values

Returns the unique values of all the children as a list.

upto(query)[source]

Go up from the current results to the first nodes that match query.

property value

Returns the value of the child if only one child exists. This helps queries behave more like dictionaries when you know only one result should exist.

property values

Returns the values of all the children as a list.

where(name, value=None)[source]

Selects current nodes based on name and value queries of child nodes. If any immediate children match the queries, the parent is included in the results. The :py:func:where_query function can be used to construct queries that act on the children as a whole instead of one at a time.

Example: >>> from insights.parsr.query import where_query as q >>> from insights.parsr.query import from_dict >>> r = from_dict(load_config()) >>> r = conf.status.conditions.where(q(“status”, “False”) | q(“type”, “Progressing”)) >>> r.message >>> r = conf.status.conditions.where(q(“status”, “False”) | q(“type”, “Progressing”)) >>> r.message >>> r.lastTransitionTime.values [‘2019-08-04T23:17:08Z’, ‘2019-08-04T23:32:14Z’]

class insights.parsr.query.Section(name=None, attrs=None, children=None, lineno=None, src=None)[source]

Bases: insights.parsr.query.Entry

A Section is an Entry composed of other Sections and Directive instances.

attrs
children
lineno
parent
property section

Returns the name of the section.

property section_name

Returns the value of the section.

src
class insights.parsr.query.SimpleQuery(expr)[source]

Bases: insights.parsr.query._EntryQuery

Automatically used in Entry.where or Result.where. SimpleQuery wraps a function or a lambda that will be passed each Entry of the current result. The passed function should return True or False.

test(node)[source]
insights.parsr.query.all_(expr)[source]

Use to express that expr must succeed on all attributes for the query to be successful. Only works against Entry attributes.

insights.parsr.query.any_(expr)[source]

Use to express that expr can succeed on any attribute for the query to be successful. Only works against Entry attributes.

insights.parsr.query.child_query(name, value=None)[source]

Converts a query into a ChildQuery that works on all child nodes at once to determine if the current node is accepted.

insights.parsr.query.compile_queries(*queries)[source]

compile_queries returns a function that will execute a list of query expressions against an Entry. The first query is run against the current entry’s children, the second query is run against the children of the children remaining from the first query, and so on.

If a query is a single object, it matches against the name of an Entry. If it’s a tuple, the first element matches against the name, and subsequent elements are tried against each individual attribute. The attribute results are or’d together and that result is anded with the name query. Any query that raises an exception is treated as False.

insights.parsr.query.from_dict(orig)[source]

from_dict is a helper function that does its best to convert a python dict into a tree of Entry instances that can be queried.

insights.parsr.query.make_child_query(name, value=None)

Converts a query into a ChildQuery that works on all child nodes at once to determine if the current node is accepted.

insights.parsr.query.pretty_format(root, indent=4)[source]

pretty_format generates a text representation of a model as a list of lines.

insights.parsr.query.select(query, nodes, deep=False, roots=False)[source]

select runs query, a function returned by compile_queries(), against a list of Entry instances. If you pass deep=True, select recursively walks each entry in the list and accumulates the results of running the query against it. If you pass roots=True, select returns the deduplicated set of final ancestors of all successful queries. Otherwise, it returns the matching entries.

insights.parsr.query.boolean

The boolean module allows delayed evaluation of boolean expressions. You wrap predicates in objects that have overloaded operators so they can be connected symbolically to express and, or, and not. This is useful if you want to build up a complicated predicate and pass it to something else for evaluation, in particular insights.parsr.query.Entry instances.

def is_even(n):
    return (n % 2) == 0

def is_positive(n):
    return n > 0

even_and_positive = pred(is_even) & pred(is_positive)

even_and_positive(6) == True
even_and_positive(-2) == False
even_and_positive(3) == False

You can also convert two parameter functions to which you want to partially apply an argument. The arguments partially applied will be those after the first argument. The first argument is the value the function should evaluate when it’s fully applied.

import operator
lt = pred2(operator.lt)  # operator.lt is lt(a, b) == (a < b)
gt = pred2(operator.gt)  # operator.gt is gt(a, b) == (a > b)

gt_five = gt(5)  # creates a function of one argument that when called
                 # returns operator.gt(x, 5)

lt_ten = lt(10)  # creates a function of one argument that when called
                 # returns operator.lt(x, 5)

gt_five_and_lt_10 = gt(5) & lt(10)
class insights.parsr.query.boolean.All(*exprs)[source]

Bases: insights.parsr.query.boolean.Boolean

test(value)[source]
insights.parsr.query.boolean.And

alias of insights.parsr.query.boolean.All

class insights.parsr.query.boolean.Any(*exprs)[source]

Bases: insights.parsr.query.boolean.Boolean

test(value)[source]
class insights.parsr.query.boolean.Boolean[source]

Bases: object

test(value)[source]
class insights.parsr.query.boolean.CaselessPredicate(func, *args)[source]

Bases: insights.parsr.query.boolean.Predicate

test(lhs)[source]
class insights.parsr.query.boolean.Not(query)[source]

Bases: insights.parsr.query.boolean.Boolean

test(value)[source]
insights.parsr.query.boolean.Or

alias of insights.parsr.query.boolean.Any

class insights.parsr.query.boolean.Predicate(func, *args)[source]

Bases: insights.parsr.query.boolean.Boolean

test(value)[source]
insights.parsr.query.boolean.pred(func, ignore_case=False)[source]
insights.parsr.query.boolean.pred2(func, ignore_case=False)[source]

insights.specs

class insights.specs.Openshift[source]

Bases: insights.core.spec_factory.SpecSet

cluster_operators = insights.specs.Openshift.cluster_operators
crds = insights.specs.Openshift.crds
crs = insights.specs.Openshift.crs
machine_configs = insights.specs.Openshift.machine_configs
machine_id = insights.specs.Openshift.machine_id
machines = insights.specs.Openshift.machines
namespaces = insights.specs.Openshift.namespaces
nodes = insights.specs.Openshift.nodes
pods = insights.specs.Openshift.pods
pvcs = insights.specs.Openshift.pvcs
storage_classes = insights.specs.Openshift.storage_classes
class insights.specs.Specs[source]

Bases: insights.core.spec_factory.SpecSet

amq_broker = insights.specs.Specs.amq_broker
audit_log = insights.specs.Specs.audit_log
auditctl_status = insights.specs.Specs.auditctl_status
auditd_conf = insights.specs.Specs.auditd_conf
autofs_conf = insights.specs.Specs.autofs_conf
avc_cache_threshold = insights.specs.Specs.avc_cache_threshold
avc_hash_stats = insights.specs.Specs.avc_hash_stats
aws_instance_id_doc = insights.specs.Specs.aws_instance_id_doc
aws_instance_id_pkcs7 = insights.specs.Specs.aws_instance_id_pkcs7
aws_instance_type = insights.specs.Specs.aws_instance_type
azure_instance_type = insights.specs.Specs.azure_instance_type
bios_uuid = insights.specs.Specs.bios_uuid
blkid = insights.specs.Specs.blkid
bond = insights.specs.Specs.bond
bond_dynamic_lb = insights.specs.Specs.bond_dynamic_lb
boot_loader_entries = insights.specs.Specs.boot_loader_entries
branch_info = insights.specs.Specs.branch_info
brctl_show = insights.specs.Specs.brctl_show
candlepin_error_log = insights.specs.Specs.candlepin_error_log
candlepin_log = insights.specs.Specs.candlepin_log
catalina_out = insights.specs.Specs.catalina_out
catalina_server_log = insights.specs.Specs.catalina_server_log
cciss = insights.specs.Specs.cciss
cdc_wdm = insights.specs.Specs.cdc_wdm
ceilometer_central_log = insights.specs.Specs.ceilometer_central_log
ceilometer_collector_log = insights.specs.Specs.ceilometer_collector_log
ceilometer_compute_log = insights.specs.Specs.ceilometer_compute_log
ceilometer_conf = insights.specs.Specs.ceilometer_conf
ceph_conf = insights.specs.Specs.ceph_conf
ceph_config_show = insights.specs.Specs.ceph_config_show
ceph_df_detail = insights.specs.Specs.ceph_df_detail
ceph_health_detail = insights.specs.Specs.ceph_health_detail
ceph_insights = insights.specs.Specs.ceph_insights
ceph_log = insights.specs.Specs.ceph_log
ceph_osd_df = insights.specs.Specs.ceph_osd_df
ceph_osd_dump = insights.specs.Specs.ceph_osd_dump
ceph_osd_ec_profile_get = insights.specs.Specs.ceph_osd_ec_profile_get
ceph_osd_ec_profile_ls = insights.specs.Specs.ceph_osd_ec_profile_ls
ceph_osd_log = insights.specs.Specs.ceph_osd_log
ceph_osd_tree = insights.specs.Specs.ceph_osd_tree
ceph_osd_tree_text = insights.specs.Specs.ceph_osd_tree_text
ceph_report = insights.specs.Specs.ceph_report
ceph_s = insights.specs.Specs.ceph_s
ceph_v = insights.specs.Specs.ceph_v
certificates_enddate = insights.specs.Specs.certificates_enddate
cgroups = insights.specs.Specs.cgroups
checkin_conf = insights.specs.Specs.checkin_conf
chkconfig = insights.specs.Specs.chkconfig
chrony_conf = insights.specs.Specs.chrony_conf
chronyc_sources = insights.specs.Specs.chronyc_sources
cib_xml = insights.specs.Specs.cib_xml
cinder_api_log = insights.specs.Specs.cinder_api_log
cinder_conf = insights.specs.Specs.cinder_conf
cinder_volume_log = insights.specs.Specs.cinder_volume_log
cloud_init_custom_network = insights.specs.Specs.cloud_init_custom_network
cloud_init_log = insights.specs.Specs.cloud_init_log
cluster_conf = insights.specs.Specs.cluster_conf
cmdline = insights.specs.Specs.cmdline
cobbler_modules_conf = insights.specs.Specs.cobbler_modules_conf
cobbler_settings = insights.specs.Specs.cobbler_settings
corosync = insights.specs.Specs.corosync
corosync_conf = insights.specs.Specs.corosync_conf
cpe = insights.specs.Specs.cpe
cpu_cores = insights.specs.Specs.cpu_cores
cpu_siblings = insights.specs.Specs.cpu_siblings
cpu_smt_active = insights.specs.Specs.cpu_smt_active
cpu_smt_control = insights.specs.Specs.cpu_smt_control
cpu_vulns = insights.specs.Specs.cpu_vulns
cpu_vulns_meltdown = insights.specs.Specs.cpu_vulns_meltdown
cpu_vulns_spec_store_bypass = insights.specs.Specs.cpu_vulns_spec_store_bypass
cpu_vulns_spectre_v1 = insights.specs.Specs.cpu_vulns_spectre_v1
cpu_vulns_spectre_v2 = insights.specs.Specs.cpu_vulns_spectre_v2
cpuinfo = insights.specs.Specs.cpuinfo
cpuinfo_max_freq = insights.specs.Specs.cpuinfo_max_freq
cpupower_frequency_info = insights.specs.Specs.cpupower_frequency_info
cpuset_cpus = insights.specs.Specs.cpuset_cpus
crt = insights.specs.Specs.crt
crypto_policies_bind = insights.specs.Specs.crypto_policies_bind
crypto_policies_config = insights.specs.Specs.crypto_policies_config
crypto_policies_opensshserver = insights.specs.Specs.crypto_policies_opensshserver
crypto_policies_state_current = insights.specs.Specs.crypto_policies_state_current
current_clocksource = insights.specs.Specs.current_clocksource
date = insights.specs.Specs.date
date_iso = insights.specs.Specs.date_iso
date_utc = insights.specs.Specs.date_utc
db2licm_l = insights.specs.Specs.db2licm_l
dcbtool_gc_dcb = insights.specs.Specs.dcbtool_gc_dcb
df__al = insights.specs.Specs.df__al
df__alP = insights.specs.Specs.df__alP
df__li = insights.specs.Specs.df__li
dig = insights.specs.Specs.dig
dig_dnssec = insights.specs.Specs.dig_dnssec
dig_edns = insights.specs.Specs.dig_edns
dig_noedns = insights.specs.Specs.dig_noedns
dirsrv = insights.specs.Specs.dirsrv
dirsrv_access = insights.specs.Specs.dirsrv_access
dirsrv_errors = insights.specs.Specs.dirsrv_errors
display_java = insights.specs.Specs.display_java
display_name = insights.specs.Specs.display_name
dmesg = insights.specs.Specs.dmesg
dmesg_log = insights.specs.Specs.dmesg_log
dmidecode = insights.specs.Specs.dmidecode
dmsetup_info = insights.specs.Specs.dmsetup_info
dnf_module_info = insights.specs.Specs.dnf_module_info
dnf_module_list = insights.specs.Specs.dnf_module_list
dnf_modules = insights.specs.Specs.dnf_modules
dnsmasq_config = insights.specs.Specs.dnsmasq_config
docker_container_inspect = insights.specs.Specs.docker_container_inspect
docker_host_machine_id = insights.specs.Specs.docker_host_machine_id
docker_image_inspect = insights.specs.Specs.docker_image_inspect
docker_info = insights.specs.Specs.docker_info
docker_list_containers = insights.specs.Specs.docker_list_containers
docker_list_images = insights.specs.Specs.docker_list_images
docker_network = insights.specs.Specs.docker_network
docker_storage = insights.specs.Specs.docker_storage
docker_storage_setup = insights.specs.Specs.docker_storage_setup
docker_sysconfig = insights.specs.Specs.docker_sysconfig
dumpe2fs_h = insights.specs.Specs.dumpe2fs_h
engine_config_all = insights.specs.Specs.engine_config_all
engine_log = insights.specs.Specs.engine_log
etc_journald_conf = insights.specs.Specs.etc_journald_conf
etc_journald_conf_d = insights.specs.Specs.etc_journald_conf_d
etc_machine_id = insights.specs.Specs.etc_machine_id
etcd_conf = insights.specs.Specs.etcd_conf
ethernet_interfaces = insights.specs.Specs.ethernet_interfaces
ethtool = insights.specs.Specs.ethtool
ethtool_S = insights.specs.Specs.ethtool_S
ethtool_T = insights.specs.Specs.ethtool_T
ethtool_a = insights.specs.Specs.ethtool_a
ethtool_c = insights.specs.Specs.ethtool_c
ethtool_g = insights.specs.Specs.ethtool_g
ethtool_i = insights.specs.Specs.ethtool_i
ethtool_k = insights.specs.Specs.ethtool_k
exim_conf = insights.specs.Specs.exim_conf
facter = insights.specs.Specs.facter
fc_match = insights.specs.Specs.fc_match
fcoeadm_i = insights.specs.Specs.fcoeadm_i
fdisk_l = insights.specs.Specs.fdisk_l
fdisk_l_sos = insights.specs.Specs.fdisk_l_sos
findmnt_lo_propagation = insights.specs.Specs.findmnt_lo_propagation
firewalld_conf = insights.specs.Specs.firewalld_conf
foreman_production_log = insights.specs.Specs.foreman_production_log
foreman_proxy_conf = insights.specs.Specs.foreman_proxy_conf
foreman_proxy_log = insights.specs.Specs.foreman_proxy_log
foreman_rake_db_migrate_status = insights.specs.Specs.foreman_rake_db_migrate_status
foreman_satellite_log = insights.specs.Specs.foreman_satellite_log
foreman_ssl_access_ssl_log = insights.specs.Specs.foreman_ssl_access_ssl_log
foreman_tasks_config = insights.specs.Specs.foreman_tasks_config
freeipa_healthcheck_log = insights.specs.Specs.freeipa_healthcheck_log
fstab = insights.specs.Specs.fstab
galera_cnf = insights.specs.Specs.galera_cnf
getcert_list = insights.specs.Specs.getcert_list
getconf_page_size = insights.specs.Specs.getconf_page_size
getenforce = insights.specs.Specs.getenforce
getsebool = insights.specs.Specs.getsebool
glance_api_conf = insights.specs.Specs.glance_api_conf
glance_api_log = insights.specs.Specs.glance_api_log
glance_cache_conf = insights.specs.Specs.glance_cache_conf
glance_registry_conf = insights.specs.Specs.glance_registry_conf
gluster_peer_status = insights.specs.Specs.gluster_peer_status
gluster_v_info = insights.specs.Specs.gluster_v_info
gluster_v_status = insights.specs.Specs.gluster_v_status
gnocchi_conf = insights.specs.Specs.gnocchi_conf
gnocchi_metricd_log = insights.specs.Specs.gnocchi_metricd_log
grub1_config_perms = insights.specs.Specs.grub1_config_perms
grub2_cfg = insights.specs.Specs.grub2_cfg
grub2_efi_cfg = insights.specs.Specs.grub2_efi_cfg
grub_conf = insights.specs.Specs.grub_conf
grub_config_perms = insights.specs.Specs.grub_config_perms
grub_efi_conf = insights.specs.Specs.grub_efi_conf
grubby_default_index = insights.specs.Specs.grubby_default_index
grubby_default_kernel = insights.specs.Specs.grubby_default_kernel
hammer_ping = insights.specs.Specs.hammer_ping
hammer_task_list = insights.specs.Specs.hammer_task_list
haproxy_cfg = insights.specs.Specs.haproxy_cfg
heat_api_log = insights.specs.Specs.heat_api_log
heat_conf = insights.specs.Specs.heat_conf
heat_crontab = insights.specs.Specs.heat_crontab
heat_crontab_container = insights.specs.Specs.heat_crontab_container
heat_engine_log = insights.specs.Specs.heat_engine_log
hostname = insights.specs.Specs.hostname
hostname_default = insights.specs.Specs.hostname_default
hostname_short = insights.specs.Specs.hostname_short
hosts = insights.specs.Specs.hosts
hponcfg_g = insights.specs.Specs.hponcfg_g
httpd24_httpd_error_log = insights.specs.Specs.httpd24_httpd_error_log
httpd_M = insights.specs.Specs.httpd_M
httpd_V = insights.specs.Specs.httpd_V
httpd_access_log = insights.specs.Specs.httpd_access_log
httpd_conf = insights.specs.Specs.httpd_conf
httpd_conf_scl_httpd24 = insights.specs.Specs.httpd_conf_scl_httpd24
httpd_conf_scl_jbcs_httpd24 = insights.specs.Specs.httpd_conf_scl_jbcs_httpd24
httpd_conf_sos = insights.specs.Specs.httpd_conf_sos
httpd_error_log = insights.specs.Specs.httpd_error_log
httpd_limits = insights.specs.Specs.httpd_limits
httpd_on_nfs = insights.specs.Specs.httpd_on_nfs
httpd_pid = insights.specs.Specs.httpd_pid
httpd_ssl_access_log = insights.specs.Specs.httpd_ssl_access_log
httpd_ssl_error_log = insights.specs.Specs.httpd_ssl_error_log
ifcfg = insights.specs.Specs.ifcfg
ifcfg_static_route = insights.specs.Specs.ifcfg_static_route
ifconfig = insights.specs.Specs.ifconfig
imagemagick_policy = insights.specs.Specs.imagemagick_policy
init_ora = insights.specs.Specs.init_ora
init_process_cgroup = insights.specs.Specs.init_process_cgroup
initscript = insights.specs.Specs.initscript
installed_rpms = insights.specs.Specs.installed_rpms
interrupts = insights.specs.Specs.interrupts
ip6tables = insights.specs.Specs.ip6tables
ip6tables_permanent = insights.specs.Specs.ip6tables_permanent
ip_addr = insights.specs.Specs.ip_addr
ip_addresses = insights.specs.Specs.ip_addresses
ip_neigh_show = insights.specs.Specs.ip_neigh_show
ip_netns_exec_namespace_lsof = insights.specs.Specs.ip_netns_exec_namespace_lsof
ip_route_show_table_all = insights.specs.Specs.ip_route_show_table_all
ipaupgrade_log = insights.specs.Specs.ipaupgrade_log
ipcs_m = insights.specs.Specs.ipcs_m
ipcs_m_p = insights.specs.Specs.ipcs_m_p
ipcs_s = insights.specs.Specs.ipcs_s
ipcs_s_i = insights.specs.Specs.ipcs_s_i
iptables = insights.specs.Specs.iptables
iptables_permanent = insights.specs.Specs.iptables_permanent
ipv4_neigh = insights.specs.Specs.ipv4_neigh
ipv6_neigh = insights.specs.Specs.ipv6_neigh
ironic_conf = insights.specs.Specs.ironic_conf
ironic_inspector_log = insights.specs.Specs.ironic_inspector_log
iscsiadm_m_session = insights.specs.Specs.iscsiadm_m_session
jbcs_httpd24_httpd_error_log = insights.specs.Specs.jbcs_httpd24_httpd_error_log
jboss_domain_server_log = insights.specs.Specs.jboss_domain_server_log
jboss_standalone_main_config = insights.specs.Specs.jboss_standalone_main_config
jboss_standalone_server_log = insights.specs.Specs.jboss_standalone_server_log
jboss_version = insights.specs.Specs.jboss_version
journal_since_boot = insights.specs.Specs.journal_since_boot
katello_service_status = insights.specs.Specs.katello_service_status
kdump_conf = insights.specs.Specs.kdump_conf
kerberos_kdc_log = insights.specs.Specs.kerberos_kdc_log
kernel_config = insights.specs.Specs.kernel_config
kexec_crash_loaded = insights.specs.Specs.kexec_crash_loaded
kexec_crash_size = insights.specs.Specs.kexec_crash_size
keystone_conf = insights.specs.Specs.keystone_conf
keystone_crontab = insights.specs.Specs.keystone_crontab
keystone_crontab_container = insights.specs.Specs.keystone_crontab_container
keystone_log = insights.specs.Specs.keystone_log
kpatch_list = insights.specs.Specs.kpatch_list
kpatch_patch_files = insights.specs.Specs.kpatch_patch_files
krb5 = insights.specs.Specs.krb5
ksmstate = insights.specs.Specs.ksmstate
kubepods_cpu_quota = insights.specs.Specs.kubepods_cpu_quota
lastupload = insights.specs.Specs.lastupload
libkeyutils = insights.specs.Specs.libkeyutils
libkeyutils_objdumps = insights.specs.Specs.libkeyutils_objdumps
libvirtd_log = insights.specs.Specs.libvirtd_log
libvirtd_qemu_log = insights.specs.Specs.libvirtd_qemu_log
limits_conf = insights.specs.Specs.limits_conf
locale = insights.specs.Specs.locale
localtime = insights.specs.Specs.localtime
logrotate_conf = insights.specs.Specs.logrotate_conf
lpstat_p = insights.specs.Specs.lpstat_p
ls_R_var_lib_nova_instances = insights.specs.Specs.ls_R_var_lib_nova_instances
ls_boot = insights.specs.Specs.ls_boot
ls_dev = insights.specs.Specs.ls_dev
ls_disk = insights.specs.Specs.ls_disk
ls_docker_volumes = insights.specs.Specs.ls_docker_volumes
ls_edac_mc = insights.specs.Specs.ls_edac_mc
ls_etc = insights.specs.Specs.ls_etc
ls_lib_firmware = insights.specs.Specs.ls_lib_firmware
ls_ocp_cni_openshift_sdn = insights.specs.Specs.ls_ocp_cni_openshift_sdn
ls_origin_local_volumes_pods = insights.specs.Specs.ls_origin_local_volumes_pods
ls_osroot = insights.specs.Specs.ls_osroot
ls_run_systemd_generator = insights.specs.Specs.ls_run_systemd_generator
ls_sys_firmware = insights.specs.Specs.ls_sys_firmware
ls_usr_lib64 = insights.specs.Specs.ls_usr_lib64
ls_usr_sbin = insights.specs.Specs.ls_usr_sbin
ls_var_lib_mongodb = insights.specs.Specs.ls_var_lib_mongodb
ls_var_lib_nova_instances = insights.specs.Specs.ls_var_lib_nova_instances
ls_var_log = insights.specs.Specs.ls_var_log
ls_var_opt_mssql = insights.specs.Specs.ls_var_opt_mssql
ls_var_opt_mssql_log = insights.specs.Specs.ls_var_opt_mssql_log
ls_var_run = insights.specs.Specs.ls_var_run
ls_var_spool_clientmq = insights.specs.Specs.ls_var_spool_clientmq
ls_var_spool_postfix_maildrop = insights.specs.Specs.ls_var_spool_postfix_maildrop
ls_var_tmp = insights.specs.Specs.ls_var_tmp
ls_var_www = insights.specs.Specs.ls_var_www
lsblk = insights.specs.Specs.lsblk
lsblk_pairs = insights.specs.Specs.lsblk_pairs
lscpu = insights.specs.Specs.lscpu
lsinitrd = insights.specs.Specs.lsinitrd
lsinitrd_lvm_conf = insights.specs.Specs.lsinitrd_lvm_conf
lsmod = insights.specs.Specs.lsmod
lsof = insights.specs.Specs.lsof
lspci = insights.specs.Specs.lspci
lssap = insights.specs.Specs.lssap
lsscsi = insights.specs.Specs.lsscsi
lvdisplay = insights.specs.Specs.lvdisplay
lvm_conf = insights.specs.Specs.lvm_conf
lvs = insights.specs.Specs.lvs
lvs_noheadings = insights.specs.Specs.lvs_noheadings
lvs_noheadings_all = insights.specs.Specs.lvs_noheadings_all
mac_addresses = insights.specs.Specs.mac_addresses
machine_id = insights.specs.Specs.machine_id
manila_conf = insights.specs.Specs.manila_conf
mariadb_log = insights.specs.Specs.mariadb_log
max_uid = insights.specs.Specs.max_uid
md5chk_files = insights.specs.Specs.md5chk_files
mdstat = insights.specs.Specs.mdstat
meminfo = insights.specs.Specs.meminfo
messages = insights.specs.Specs.messages
metadata_json = insights.specs.Specs.metadata_json
mistral_executor_log = insights.specs.Specs.mistral_executor_log
mlx4_port = insights.specs.Specs.mlx4_port
modinfo = insights.specs.Specs.modinfo
modinfo_all = insights.specs.Specs.modinfo_all
modinfo_i40e = insights.specs.Specs.modinfo_i40e
modinfo_igb = insights.specs.Specs.modinfo_igb
modinfo_ixgbe = insights.specs.Specs.modinfo_ixgbe
modinfo_veth = insights.specs.Specs.modinfo_veth
modinfo_vmxnet3 = insights.specs.Specs.modinfo_vmxnet3
modprobe = insights.specs.Specs.modprobe
module = insights.specs.Specs.module
mongod_conf = insights.specs.Specs.mongod_conf
mount = insights.specs.Specs.mount
mounts = insights.specs.Specs.mounts
mssql_conf = insights.specs.Specs.mssql_conf
multicast_querier = insights.specs.Specs.multicast_querier
multipath__v4__ll = insights.specs.Specs.multipath__v4__ll
multipath_conf = insights.specs.Specs.multipath_conf
multipath_conf_initramfs = insights.specs.Specs.multipath_conf_initramfs
mysql_log = insights.specs.Specs.mysql_log
mysqladmin_status = insights.specs.Specs.mysqladmin_status
mysqladmin_vars = insights.specs.Specs.mysqladmin_vars
mysqld_limits = insights.specs.Specs.mysqld_limits
named_checkconf_p = insights.specs.Specs.named_checkconf_p
namespace = insights.specs.Specs.namespace
netconsole = insights.specs.Specs.netconsole
netstat = insights.specs.Specs.netstat
netstat_agn = insights.specs.Specs.netstat_agn
netstat_i = insights.specs.Specs.netstat_i
netstat_s = insights.specs.Specs.netstat_s
networkmanager_dispatcher_d = insights.specs.Specs.networkmanager_dispatcher_d
neutron_conf = insights.specs.Specs.neutron_conf
neutron_dhcp_agent_ini = insights.specs.Specs.neutron_dhcp_agent_ini
neutron_l3_agent_ini = insights.specs.Specs.neutron_l3_agent_ini
neutron_l3_agent_log = insights.specs.Specs.neutron_l3_agent_log
neutron_metadata_agent_ini = insights.specs.Specs.neutron_metadata_agent_ini
neutron_metadata_agent_log = insights.specs.Specs.neutron_metadata_agent_log
neutron_ml2_conf = insights.specs.Specs.neutron_ml2_conf
neutron_ovs_agent_log = insights.specs.Specs.neutron_ovs_agent_log
neutron_plugin_ini = insights.specs.Specs.neutron_plugin_ini
neutron_server_log = insights.specs.Specs.neutron_server_log
nfs_exports = insights.specs.Specs.nfs_exports
nfs_exports_d = insights.specs.Specs.nfs_exports_d
nginx_conf = insights.specs.Specs.nginx_conf
nmcli_conn_show = insights.specs.Specs.nmcli_conn_show
nmcli_dev_show = insights.specs.Specs.nmcli_dev_show
nmcli_dev_show_sos = insights.specs.Specs.nmcli_dev_show_sos
nova_api_log = insights.specs.Specs.nova_api_log
nova_compute_log = insights.specs.Specs.nova_compute_log
nova_conf = insights.specs.Specs.nova_conf
nova_crontab = insights.specs.Specs.nova_crontab
nova_crontab_container = insights.specs.Specs.nova_crontab_container
nova_migration_uid = insights.specs.Specs.nova_migration_uid
nova_uid = insights.specs.Specs.nova_uid
nscd_conf = insights.specs.Specs.nscd_conf
nsswitch_conf = insights.specs.Specs.nsswitch_conf
ntp_conf = insights.specs.Specs.ntp_conf
ntpq_leap = insights.specs.Specs.ntpq_leap
ntpq_pn = insights.specs.Specs.ntpq_pn
ntptime = insights.specs.Specs.ntptime
numa_cpus = insights.specs.Specs.numa_cpus
numeric_user_group_name = insights.specs.Specs.numeric_user_group_name
nvme_core_io_timeout = insights.specs.Specs.nvme_core_io_timeout
oc_get_bc = insights.specs.Specs.oc_get_bc
oc_get_build = insights.specs.Specs.oc_get_build
oc_get_clusterrole_with_config = insights.specs.Specs.oc_get_clusterrole_with_config
oc_get_clusterrolebinding_with_config = insights.specs.Specs.oc_get_clusterrolebinding_with_config
oc_get_configmap = insights.specs.Specs.oc_get_configmap
oc_get_dc = insights.specs.Specs.oc_get_dc
oc_get_egressnetworkpolicy = insights.specs.Specs.oc_get_egressnetworkpolicy
oc_get_endpoints = insights.specs.Specs.oc_get_endpoints
oc_get_event = insights.specs.Specs.oc_get_event
oc_get_node = insights.specs.Specs.oc_get_node
oc_get_pod = insights.specs.Specs.oc_get_pod
oc_get_project = insights.specs.Specs.oc_get_project
oc_get_pv = insights.specs.Specs.oc_get_pv
oc_get_pvc = insights.specs.Specs.oc_get_pvc
oc_get_rc = insights.specs.Specs.oc_get_rc
oc_get_role = insights.specs.Specs.oc_get_role
oc_get_rolebinding = insights.specs.Specs.oc_get_rolebinding
oc_get_route = insights.specs.Specs.oc_get_route
oc_get_service = insights.specs.Specs.oc_get_service
odbc_ini = insights.specs.Specs.odbc_ini
odbcinst_ini = insights.specs.Specs.odbcinst_ini
openshift_certificates = insights.specs.Specs.openshift_certificates
openshift_fluentd_environ = insights.specs.Specs.openshift_fluentd_environ
openshift_hosts = insights.specs.Specs.openshift_hosts
openshift_router_environ = insights.specs.Specs.openshift_router_environ
openvswitch_daemon_log = insights.specs.Specs.openvswitch_daemon_log
openvswitch_other_config = insights.specs.Specs.openvswitch_other_config
openvswitch_server_log = insights.specs.Specs.openvswitch_server_log
os_release = insights.specs.Specs.os_release
osa_dispatcher_log = insights.specs.Specs.osa_dispatcher_log
ose_master_config = insights.specs.Specs.ose_master_config
ose_node_config = insights.specs.Specs.ose_node_config
ovirt_engine_boot_log = insights.specs.Specs.ovirt_engine_boot_log
ovirt_engine_confd = insights.specs.Specs.ovirt_engine_confd
ovirt_engine_console_log = insights.specs.Specs.ovirt_engine_console_log
ovirt_engine_server_log = insights.specs.Specs.ovirt_engine_server_log
ovirt_engine_ui_log = insights.specs.Specs.ovirt_engine_ui_log
ovs_appctl_fdb_show_bridge = insights.specs.Specs.ovs_appctl_fdb_show_bridge
ovs_ofctl_dump_flows = insights.specs.Specs.ovs_ofctl_dump_flows
ovs_vsctl_list_bridge = insights.specs.Specs.ovs_vsctl_list_bridge
ovs_vsctl_show = insights.specs.Specs.ovs_vsctl_show
ovs_vswitchd_limits = insights.specs.Specs.ovs_vswitchd_limits
pacemaker_log = insights.specs.Specs.pacemaker_log
package_provides_httpd = insights.specs.Specs.package_provides_httpd
package_provides_java = insights.specs.Specs.package_provides_java
pam_conf = insights.specs.Specs.pam_conf
parted__l = insights.specs.Specs.parted__l
partitions = insights.specs.Specs.partitions
passenger_status = insights.specs.Specs.passenger_status
password_auth = insights.specs.Specs.password_auth
pci_rport_target_disk_paths = insights.specs.Specs.pci_rport_target_disk_paths
pcs_config = insights.specs.Specs.pcs_config
pcs_quorum_status = insights.specs.Specs.pcs_quorum_status
pcs_status = insights.specs.Specs.pcs_status
pluginconf_d = insights.specs.Specs.pluginconf_d
podman_container_inspect = insights.specs.Specs.podman_container_inspect
podman_image_inspect = insights.specs.Specs.podman_image_inspect
podman_list_containers = insights.specs.Specs.podman_list_containers
podman_list_images = insights.specs.Specs.podman_list_images
postgresql_conf = insights.specs.Specs.postgresql_conf
postgresql_log = insights.specs.Specs.postgresql_log
prev_uploader_log = insights.specs.Specs.prev_uploader_log
proc_netstat = insights.specs.Specs.proc_netstat
proc_slabinfo = insights.specs.Specs.proc_slabinfo
proc_snmp_ipv4 = insights.specs.Specs.proc_snmp_ipv4
proc_snmp_ipv6 = insights.specs.Specs.proc_snmp_ipv6
proc_stat = insights.specs.Specs.proc_stat
ps_alxwww = insights.specs.Specs.ps_alxwww
ps_aux = insights.specs.Specs.ps_aux
ps_auxcww = insights.specs.Specs.ps_auxcww
ps_auxww = insights.specs.Specs.ps_auxww
ps_ef = insights.specs.Specs.ps_ef
ps_eo = insights.specs.Specs.ps_eo
pulp_worker_defaults = insights.specs.Specs.pulp_worker_defaults
puppet_ssl_cert_ca_pem = insights.specs.Specs.puppet_ssl_cert_ca_pem
puppetserver_config = insights.specs.Specs.puppetserver_config
pvs = insights.specs.Specs.pvs
pvs_noheadings = insights.specs.Specs.pvs_noheadings
pvs_noheadings_all = insights.specs.Specs.pvs_noheadings_all
qemu_conf = insights.specs.Specs.qemu_conf
qemu_xml = insights.specs.Specs.qemu_xml
qpid_stat_g = insights.specs.Specs.qpid_stat_g
qpid_stat_q = insights.specs.Specs.qpid_stat_q
qpid_stat_u = insights.specs.Specs.qpid_stat_u
qpidd_conf = insights.specs.Specs.qpidd_conf
rabbitmq_env = insights.specs.Specs.rabbitmq_env
rabbitmq_logs = insights.specs.Specs.rabbitmq_logs
rabbitmq_policies = insights.specs.Specs.rabbitmq_policies
rabbitmq_queues = insights.specs.Specs.rabbitmq_queues
rabbitmq_report = insights.specs.Specs.rabbitmq_report
rabbitmq_report_of_containers = insights.specs.Specs.rabbitmq_report_of_containers
rabbitmq_startup_err = insights.specs.Specs.rabbitmq_startup_err
rabbitmq_startup_log = insights.specs.Specs.rabbitmq_startup_log
rabbitmq_users = insights.specs.Specs.rabbitmq_users
rc_local = insights.specs.Specs.rc_local
rdma_conf = insights.specs.Specs.rdma_conf
redhat_release = insights.specs.Specs.redhat_release
resolv_conf = insights.specs.Specs.resolv_conf
rhev_data_center = insights.specs.Specs.rhev_data_center
rhn_charsets = insights.specs.Specs.rhn_charsets
rhn_conf = insights.specs.Specs.rhn_conf
rhn_entitlement_cert_xml = insights.specs.Specs.rhn_entitlement_cert_xml
rhn_hibernate_conf = insights.specs.Specs.rhn_hibernate_conf
rhn_schema_stats = insights.specs.Specs.rhn_schema_stats
rhn_schema_version = insights.specs.Specs.rhn_schema_version
rhn_search_daemon_log = insights.specs.Specs.rhn_search_daemon_log
rhn_server_satellite_log = insights.specs.Specs.rhn_server_satellite_log
rhn_server_xmlrpc_log = insights.specs.Specs.rhn_server_xmlrpc_log
rhn_taskomatic_daemon_log = insights.specs.Specs.rhn_taskomatic_daemon_log
rhosp_release = insights.specs.Specs.rhosp_release
rhsm_conf = insights.specs.Specs.rhsm_conf
rhsm_log = insights.specs.Specs.rhsm_log
rhsm_releasever = insights.specs.Specs.rhsm_releasever
rhv_log_collector_analyzer = insights.specs.Specs.rhv_log_collector_analyzer
rndc_status = insights.specs.Specs.rndc_status
root_crontab = insights.specs.Specs.root_crontab
route = insights.specs.Specs.route
rpm_V_packages = insights.specs.Specs.rpm_V_packages
rsyslog_conf = insights.specs.Specs.rsyslog_conf
running_java = insights.specs.Specs.running_java
samba = insights.specs.Specs.samba
samba_logs = insights.specs.Specs.samba_logs
sap_hdb_version = insights.specs.Specs.sap_hdb_version
sap_host_profile = insights.specs.Specs.sap_host_profile
sapcontrol_getsystemupdatelist = insights.specs.Specs.sapcontrol_getsystemupdatelist
saphostctl_getcimobject_sapinstance = insights.specs.Specs.saphostctl_getcimobject_sapinstance
saphostexec_status = insights.specs.Specs.saphostexec_status
saphostexec_version = insights.specs.Specs.saphostexec_version
sat5_insights_properties = insights.specs.Specs.sat5_insights_properties
satellite_custom_hiera = insights.specs.Specs.satellite_custom_hiera
satellite_enabled_features = insights.specs.Specs.satellite_enabled_features
satellite_mongodb_storage_engine = insights.specs.Specs.satellite_mongodb_storage_engine
satellite_version_rb = insights.specs.Specs.satellite_version_rb
scheduler = insights.specs.Specs.scheduler
scsi = insights.specs.Specs.scsi
scsi_eh_deadline = insights.specs.Specs.scsi_eh_deadline
scsi_fwver = insights.specs.Specs.scsi_fwver
sctp_asc = insights.specs.Specs.sctp_asc
sctp_eps = insights.specs.Specs.sctp_eps
sctp_snmp = insights.specs.Specs.sctp_snmp
sealert = insights.specs.Specs.sealert
secure = insights.specs.Specs.secure
selinux_config = insights.specs.Specs.selinux_config
semid = insights.specs.Specs.semid
sestatus = insights.specs.Specs.sestatus
setup_named_chroot = insights.specs.Specs.setup_named_chroot
smartctl = insights.specs.Specs.smartctl
smartpdc_settings = insights.specs.Specs.smartpdc_settings
smbstatus_S = insights.specs.Specs.smbstatus_S
smbstatus_p = insights.specs.Specs.smbstatus_p
sockstat = insights.specs.Specs.sockstat
softnet_stat = insights.specs.Specs.softnet_stat
software_collections_list = insights.specs.Specs.software_collections_list
spfile_ora = insights.specs.Specs.spfile_ora
ss = insights.specs.Specs.ss
ssh_config = insights.specs.Specs.ssh_config
ssh_foreman_config = insights.specs.Specs.ssh_foreman_config
ssh_foreman_proxy_config = insights.specs.Specs.ssh_foreman_proxy_config
sshd_config = insights.specs.Specs.sshd_config
sshd_config_perms = insights.specs.Specs.sshd_config_perms
sssd_config = insights.specs.Specs.sssd_config
sssd_logs = insights.specs.Specs.sssd_logs
subscription_manager_id = insights.specs.Specs.subscription_manager_id
subscription_manager_installed_product_ids = insights.specs.Specs.subscription_manager_installed_product_ids
subscription_manager_list_consumed = insights.specs.Specs.subscription_manager_list_consumed
subscription_manager_list_installed = insights.specs.Specs.subscription_manager_list_installed
subscription_manager_release_show = insights.specs.Specs.subscription_manager_release_show
swift_conf = insights.specs.Specs.swift_conf
swift_log = insights.specs.Specs.swift_log
swift_object_expirer_conf = insights.specs.Specs.swift_object_expirer_conf
swift_proxy_server_conf = insights.specs.Specs.swift_proxy_server_conf
sysconfig_chronyd = insights.specs.Specs.sysconfig_chronyd
sysconfig_httpd = insights.specs.Specs.sysconfig_httpd
sysconfig_irqbalance = insights.specs.Specs.sysconfig_irqbalance
sysconfig_kdump = insights.specs.Specs.sysconfig_kdump
sysconfig_libvirt_guests = insights.specs.Specs.sysconfig_libvirt_guests
sysconfig_memcached = insights.specs.Specs.sysconfig_memcached
sysconfig_mongod = insights.specs.Specs.sysconfig_mongod
sysconfig_network = insights.specs.Specs.sysconfig_network
sysconfig_ntpd = insights.specs.Specs.sysconfig_ntpd
sysconfig_sshd = insights.specs.Specs.sysconfig_sshd
sysconfig_virt_who = insights.specs.Specs.sysconfig_virt_who
sysctl = insights.specs.Specs.sysctl
sysctl_conf = insights.specs.Specs.sysctl_conf
sysctl_conf_initramfs = insights.specs.Specs.sysctl_conf_initramfs
systemctl_cat_rpcbind_socket = insights.specs.Specs.systemctl_cat_rpcbind_socket
systemctl_cinder_volume = insights.specs.Specs.systemctl_cinder_volume
systemctl_httpd = insights.specs.Specs.systemctl_httpd
systemctl_list_unit_files = insights.specs.Specs.systemctl_list_unit_files
systemctl_list_units = insights.specs.Specs.systemctl_list_units
systemctl_mariadb = insights.specs.Specs.systemctl_mariadb
systemctl_nginx = insights.specs.Specs.systemctl_nginx
systemctl_pulp_celerybeat = insights.specs.Specs.systemctl_pulp_celerybeat
systemctl_pulp_resmg = insights.specs.Specs.systemctl_pulp_resmg
systemctl_pulp_workers = insights.specs.Specs.systemctl_pulp_workers
systemctl_qdrouterd = insights.specs.Specs.systemctl_qdrouterd
systemctl_qpidd = insights.specs.Specs.systemctl_qpidd
systemctl_show_all_services = insights.specs.Specs.systemctl_show_all_services
systemctl_show_target = insights.specs.Specs.systemctl_show_target
systemctl_smartpdc = insights.specs.Specs.systemctl_smartpdc
systemd_docker = insights.specs.Specs.systemd_docker
systemd_logind_conf = insights.specs.Specs.systemd_logind_conf
systemd_openshift_node = insights.specs.Specs.systemd_openshift_node
systemd_system_conf = insights.specs.Specs.systemd_system_conf
systemd_system_origin_accounting = insights.specs.Specs.systemd_system_origin_accounting
systemid = insights.specs.Specs.systemid
systool_b_scsi_v = insights.specs.Specs.systool_b_scsi_v
tags = insights.specs.Specs.tags
teamdctl_config_dump = insights.specs.Specs.teamdctl_config_dump
teamdctl_state_dump = insights.specs.Specs.teamdctl_state_dump
thp_enabled = insights.specs.Specs.thp_enabled
thp_use_zero_page = insights.specs.Specs.thp_use_zero_page
tmpfilesd = insights.specs.Specs.tmpfilesd
tomcat_server_xml = insights.specs.Specs.tomcat_server_xml
tomcat_vdc_fallback = insights.specs.Specs.tomcat_vdc_fallback
tomcat_vdc_targeted = insights.specs.Specs.tomcat_vdc_targeted
tomcat_web_xml = insights.specs.Specs.tomcat_web_xml
tuned_adm = insights.specs.Specs.tuned_adm
tuned_conf = insights.specs.Specs.tuned_conf
udev_fc_wwpn_id_rules = insights.specs.Specs.udev_fc_wwpn_id_rules
udev_persistent_net_rules = insights.specs.Specs.udev_persistent_net_rules
uname = insights.specs.Specs.uname
up2date = insights.specs.Specs.up2date
up2date_log = insights.specs.Specs.up2date_log
uploader_log = insights.specs.Specs.uploader_log
uptime = insights.specs.Specs.uptime
usr_journald_conf_d = insights.specs.Specs.usr_journald_conf_d
var_qemu_xml = insights.specs.Specs.var_qemu_xml
vdo_status = insights.specs.Specs.vdo_status
vdsm_conf = insights.specs.Specs.vdsm_conf
vdsm_id = insights.specs.Specs.vdsm_id
vdsm_import_log = insights.specs.Specs.vdsm_import_log
vdsm_log = insights.specs.Specs.vdsm_log
vdsm_logger_conf = insights.specs.Specs.vdsm_logger_conf
version_info = insights.specs.Specs.version_info
vgdisplay = insights.specs.Specs.vgdisplay
vgs = insights.specs.Specs.vgs
vgs_noheadings = insights.specs.Specs.vgs_noheadings
vgs_noheadings_all = insights.specs.Specs.vgs_noheadings_all
virsh_list_all = insights.specs.Specs.virsh_list_all
virt_uuid_facts = insights.specs.Specs.virt_uuid_facts
virt_what = insights.specs.Specs.virt_what
virt_who_conf = insights.specs.Specs.virt_who_conf
virtlogd_conf = insights.specs.Specs.virtlogd_conf
vma_ra_enabled = insights.specs.Specs.vma_ra_enabled
vmcore_dmesg = insights.specs.Specs.vmcore_dmesg
vmware_tools_conf = insights.specs.Specs.vmware_tools_conf
vsftpd = insights.specs.Specs.vsftpd
vsftpd_conf = insights.specs.Specs.vsftpd_conf
woopsie = insights.specs.Specs.woopsie
x86_ibpb_enabled = insights.specs.Specs.x86_ibpb_enabled
x86_ibrs_enabled = insights.specs.Specs.x86_ibrs_enabled
x86_pti_enabled = insights.specs.Specs.x86_pti_enabled
x86_retp_enabled = insights.specs.Specs.x86_retp_enabled
xfs_info = insights.specs.Specs.xfs_info
xinetd_conf = insights.specs.Specs.xinetd_conf
yum_conf = insights.specs.Specs.yum_conf
yum_list_installed = insights.specs.Specs.yum_list_installed
yum_log = insights.specs.Specs.yum_log
yum_repolist = insights.specs.Specs.yum_repolist
yum_repos_d = insights.specs.Specs.yum_repos_d
zdump_v = insights.specs.Specs.zdump_v
zipl_conf = insights.specs.Specs.zipl_conf

insights.specs.default

This module defines all datasources used by standard Red Hat Insight components.

To define data sources that override the components in this file, create a insights.core.spec_factory.SpecFactory with “insights.specs” as the constructor argument. Data sources created with that factory will override components in this file with the same name keyword argument. This allows overriding the data sources that standard Insights Parsers resolve against.

class insights.specs.default.DefaultSpecs[source]

Bases: insights.specs.Specs

amq_broker = <insights.core.spec_factory.glob_file object>
audit_log = <insights.core.spec_factory.simple_file object>
auditctl_status = <insights.core.spec_factory.simple_command object>
auditd_conf = <insights.core.spec_factory.simple_file object>
autofs_conf = <insights.core.spec_factory.simple_file object>
avc_cache_threshold = <insights.core.spec_factory.simple_file object>
avc_hash_stats = <insights.core.spec_factory.simple_file object>
aws_instance_id_doc = <insights.core.spec_factory.simple_command object>
aws_instance_id_pkcs7 = <insights.core.spec_factory.simple_command object>
aws_instance_type = <insights.core.spec_factory.simple_command object>
azure_instance_type = <insights.core.spec_factory.simple_command object>
bios_uuid = <insights.core.spec_factory.simple_command object>
blkid = <insights.core.spec_factory.simple_command object>
block()[source]

Path: /sys/block directories starting with . or ram or dm- or loop

block_devices = <insights.core.spec_factory.listdir object>
bond = <insights.core.spec_factory.glob_file object>
bond_dynamic_lb = <insights.core.spec_factory.glob_file object>
boot_loader_entries = <insights.core.spec_factory.glob_file object>
branch_info = <insights.core.spec_factory.simple_file object>
brctl_show = <insights.core.spec_factory.simple_command object>
candlepin_error_log = <insights.core.spec_factory.simple_file object>
candlepin_log = <insights.core.spec_factory.simple_file object>
catalina_out = <insights.core.spec_factory.foreach_collect object>
catalina_server_log = <insights.core.spec_factory.foreach_collect object>
cciss = <insights.core.spec_factory.glob_file object>
cdc_wdm = <insights.core.spec_factory.simple_file object>
ceilometer_central_log = <insights.core.spec_factory.simple_file object>
ceilometer_collector_log = <insights.core.spec_factory.first_file object>
ceilometer_compute_log = <insights.core.spec_factory.first_file object>
ceilometer_conf = <insights.core.spec_factory.first_file object>
ceph_conf = <insights.core.spec_factory.first_file object>
ceph_config_show = <insights.core.spec_factory.foreach_execute object>
ceph_df_detail = <insights.core.spec_factory.simple_command object>
ceph_health_detail = <insights.core.spec_factory.simple_command object>
ceph_insights = <insights.core.spec_factory.simple_command object>
ceph_log = <insights.core.spec_factory.glob_file object>
ceph_osd_df = <insights.core.spec_factory.simple_command object>
ceph_osd_dump = <insights.core.spec_factory.simple_command object>
ceph_osd_ec_profile_get = <insights.core.spec_factory.foreach_execute object>
ceph_osd_ec_profile_ls = <insights.core.spec_factory.simple_command object>
ceph_osd_log = <insights.core.spec_factory.glob_file object>
ceph_osd_tree = <insights.core.spec_factory.simple_command object>
ceph_s = <insights.core.spec_factory.simple_command object>
ceph_socket_files = <insights.core.spec_factory.listdir object>
ceph_v = <insights.core.spec_factory.simple_command object>
certificates_enddate = <insights.core.spec_factory.simple_command object>
cgroups = <insights.core.spec_factory.simple_file object>
checkin_conf = <insights.core.spec_factory.simple_file object>
chkconfig = <insights.core.spec_factory.simple_command object>
chrony_conf = <insights.core.spec_factory.simple_file object>
chronyc_sources = <insights.core.spec_factory.simple_command object>
cib_xml = <insights.core.spec_factory.simple_file object>
cinder_api_log = <insights.core.spec_factory.first_file object>
cinder_conf = <insights.core.spec_factory.first_file object>
cinder_volume_log = <insights.core.spec_factory.simple_file object>
cloud_init_custom_network = <insights.core.spec_factory.simple_file object>
cloud_init_log = <insights.core.spec_factory.simple_file object>
cluster_conf = <insights.core.spec_factory.simple_file object>
cmdline = <insights.core.spec_factory.simple_file object>
cobbler_modules_conf = <insights.core.spec_factory.first_file object>
cobbler_settings = <insights.core.spec_factory.first_file object>
corosync = <insights.core.spec_factory.simple_file object>
corosync_conf = <insights.core.spec_factory.simple_file object>
cpe = <insights.core.spec_factory.simple_file object>
cpu_cores = <insights.core.spec_factory.glob_file object>
cpu_siblings = <insights.core.spec_factory.glob_file object>
cpu_smt_active = <insights.core.spec_factory.simple_file object>
cpu_smt_control = <insights.core.spec_factory.simple_file object>
cpu_vulns = <insights.core.spec_factory.glob_file object>
cpu_vulns_meltdown = <insights.core.spec_factory.simple_file object>
cpu_vulns_spec_store_bypass = <insights.core.spec_factory.simple_file object>
cpu_vulns_spectre_v1 = <insights.core.spec_factory.simple_file object>
cpu_vulns_spectre_v2 = <insights.core.spec_factory.simple_file object>
cpuinfo = <insights.core.spec_factory.simple_file object>
cpuinfo_max_freq = <insights.core.spec_factory.simple_file object>
cpupower_frequency_info = <insights.core.spec_factory.simple_command object>
cpuset_cpus = <insights.core.spec_factory.simple_file object>
crt = <insights.core.spec_factory.simple_command object>
crypto_policies_bind = <insights.core.spec_factory.simple_file object>
crypto_policies_config = <insights.core.spec_factory.simple_file object>
crypto_policies_opensshserver = <insights.core.spec_factory.simple_file object>
crypto_policies_state_current = <insights.core.spec_factory.simple_file object>
current_clocksource = <insights.core.spec_factory.simple_file object>
date = <insights.core.spec_factory.simple_command object>
date_iso = <insights.core.spec_factory.simple_command object>
date_utc = <insights.core.spec_factory.simple_command object>
db2licm_l = <insights.core.spec_factory.simple_command object>
dcbtool_gc_dcb = <insights.core.spec_factory.foreach_execute object>
df__al = <insights.core.spec_factory.simple_command object>
df__alP = <insights.core.spec_factory.simple_command object>
df__li = <insights.core.spec_factory.simple_command object>
dig = <insights.core.spec_factory.simple_command object>
dig_dnssec = <insights.core.spec_factory.simple_command object>
dig_edns = <insights.core.spec_factory.simple_command object>
dig_noedns = <insights.core.spec_factory.simple_command object>
dirsrv = <insights.core.spec_factory.simple_file object>
dirsrv_access = <insights.core.spec_factory.glob_file object>
dirsrv_errors = <insights.core.spec_factory.glob_file object>
display_java = <insights.core.spec_factory.simple_command object>
dmesg = <insights.core.spec_factory.simple_command object>
dmesg_log = <insights.core.spec_factory.simple_file object>
dmidecode = <insights.core.spec_factory.simple_command object>
dmsetup_info = <insights.core.spec_factory.simple_command object>
dnf_module_info = <insights.core.spec_factory.command_with_args object>
dnf_module_list = <insights.core.spec_factory.simple_command object>
dnf_module_names()[source]
dnf_modules = <insights.core.spec_factory.glob_file object>
dnsmasq_config = <insights.core.spec_factory.glob_file object>
docker_container_ids()[source]

Command: docker_container_ids

docker_container_inspect = <insights.core.spec_factory.foreach_execute object>
docker_host_machine_id = <insights.core.spec_factory.simple_file object>
docker_image_ids()[source]

Command: docker_image_ids

docker_image_inspect = <insights.core.spec_factory.foreach_execute object>
docker_info = <insights.core.spec_factory.simple_command object>
docker_installed_rpms()[source]

Command: /bin/rpm -qa --root %s --qf %s

docker_list_containers = <insights.core.spec_factory.simple_command object>
docker_list_images = <insights.core.spec_factory.simple_command object>
docker_network = <insights.core.spec_factory.simple_file object>
docker_storage = <insights.core.spec_factory.simple_file object>
docker_storage_setup = <insights.core.spec_factory.simple_file object>
docker_sysconfig = <insights.core.spec_factory.simple_file object>
dumpdev()[source]
dumpe2fs_h = <insights.core.spec_factory.foreach_execute object>
engine_config_all = <insights.core.spec_factory.simple_command object>
engine_log = <insights.core.spec_factory.simple_file object>
etc_journald_conf = <insights.core.spec_factory.simple_file object>
etc_journald_conf_d = <insights.core.spec_factory.glob_file object>
etc_machine_id = <insights.core.spec_factory.simple_file object>
etcd_conf = <insights.core.spec_factory.simple_file object>
ethernet_interfaces = <insights.core.spec_factory.listdir object>
ethtool = <insights.core.spec_factory.foreach_execute object>
ethtool_S = <insights.core.spec_factory.foreach_execute object>
ethtool_T = <insights.core.spec_factory.foreach_execute object>
ethtool_a = <insights.core.spec_factory.foreach_execute object>
ethtool_c = <insights.core.spec_factory.foreach_execute object>
ethtool_g = <insights.core.spec_factory.foreach_execute object>
ethtool_i = <insights.core.spec_factory.foreach_execute object>
ethtool_k = <insights.core.spec_factory.foreach_execute object>
exim_conf = <insights.core.spec_factory.simple_file object>
facter = <insights.core.spec_factory.simple_command object>
fc_match = <insights.core.spec_factory.simple_command object>
fcoeadm_i = <insights.core.spec_factory.simple_command object>
fdisk_l = <insights.core.spec_factory.simple_command object>
findmnt_lo_propagation = <insights.core.spec_factory.simple_command object>
firewalld_conf = <insights.core.spec_factory.simple_file object>
foreman_production_log = <insights.core.spec_factory.simple_file object>
foreman_proxy_conf = <insights.core.spec_factory.simple_file object>
foreman_proxy_log = <insights.core.spec_factory.simple_file object>
foreman_rake_db_migrate_status = <insights.core.spec_factory.simple_command object>
foreman_satellite_log = <insights.core.spec_factory.simple_file object>
foreman_ssl_access_ssl_log = <insights.core.spec_factory.simple_file object>
foreman_tasks_config = <insights.core.spec_factory.first_file object>
freeipa_healthcheck_log = <insights.core.spec_factory.simple_file object>
fstab = <insights.core.spec_factory.simple_file object>
galera_cnf = <insights.core.spec_factory.first_file object>
getconf_page_size = <insights.core.spec_factory.simple_command object>
getenforce = <insights.core.spec_factory.simple_command object>
getsebool = <insights.core.spec_factory.simple_command object>
glance_api_conf = <insights.core.spec_factory.first_file object>
glance_api_log = <insights.core.spec_factory.first_file object>
glance_cache_conf = <insights.core.spec_factory.first_file object>
glance_registry_conf = <insights.core.spec_factory.simple_file object>
gluster_peer_status = <insights.core.spec_factory.simple_command object>
gluster_v_info = <insights.core.spec_factory.simple_command object>
gluster_v_status = <insights.core.spec_factory.simple_command object>
gnocchi_conf = <insights.core.spec_factory.first_file object>
gnocchi_metricd_log = <insights.core.spec_factory.first_file object>
grub1_config_perms = <insights.core.spec_factory.simple_command object>
grub2_cfg = <insights.core.spec_factory.simple_file object>
grub2_efi_cfg = <insights.core.spec_factory.simple_file object>
grub_conf = <insights.core.spec_factory.simple_file object>
grub_config_perms = <insights.core.spec_factory.simple_command object>
grub_efi_conf = <insights.core.spec_factory.simple_file object>
grubby_default_index = <insights.core.spec_factory.simple_command object>
grubby_default_kernel = <insights.core.spec_factory.simple_command object>
hammer_ping = <insights.core.spec_factory.simple_command object>
hammer_task_list = <insights.core.spec_factory.simple_command object>
haproxy_cfg = <insights.core.spec_factory.first_file object>
heat_api_log = <insights.core.spec_factory.first_file object>
heat_conf = <insights.core.spec_factory.first_file object>
heat_crontab = <insights.core.spec_factory.simple_command object>
heat_crontab_container = <insights.core.spec_factory.simple_command object>
heat_engine_log = <insights.core.spec_factory.first_file object>
host_installed_rpms = <insights.core.spec_factory.simple_command object>
hostname = <insights.core.spec_factory.simple_command object>
hostname_default = <insights.core.spec_factory.simple_command object>
hostname_short = <insights.core.spec_factory.simple_command object>
hosts = <insights.core.spec_factory.simple_file object>
hponcfg_g = <insights.core.spec_factory.simple_command object>
httpd24_httpd_error_log = <insights.core.spec_factory.simple_file object>
httpd_M = <insights.core.spec_factory.foreach_execute object>
httpd_V = <insights.core.spec_factory.foreach_execute object>
httpd_access_log = <insights.core.spec_factory.simple_file object>
httpd_cmd()[source]

Command: httpd_command

httpd_conf = <insights.core.spec_factory.glob_file object>
httpd_conf_scl_httpd24 = <insights.core.spec_factory.glob_file object>
httpd_conf_scl_jbcs_httpd24 = <insights.core.spec_factory.glob_file object>
httpd_error_log = <insights.core.spec_factory.simple_file object>
httpd_limits = <insights.core.spec_factory.foreach_collect object>
httpd_on_nfs()[source]
httpd_pid = <insights.core.spec_factory.simple_command object>
httpd_ssl_access_log = <insights.core.spec_factory.simple_file object>
httpd_ssl_error_log = <insights.core.spec_factory.simple_file object>
ifcfg = <insights.core.spec_factory.glob_file object>
ifcfg_static_route = <insights.core.spec_factory.glob_file object>
ifconfig = <insights.core.spec_factory.simple_command object>
imagemagick_policy = <insights.core.spec_factory.glob_file object>
init_ora = <insights.core.spec_factory.simple_file object>
init_process_cgroup = <insights.core.spec_factory.simple_file object>
initscript = <insights.core.spec_factory.glob_file object>
installed_rpms = <insights.core.spec_factory.first_of object>
interrupts = <insights.core.spec_factory.simple_file object>
ip6tables = <insights.core.spec_factory.simple_command object>
ip6tables_permanent = <insights.core.spec_factory.simple_file object>
ip_addr = <insights.core.spec_factory.simple_command object>
ip_addresses = <insights.core.spec_factory.simple_command object>
ip_netns_exec_namespace_lsof = <insights.core.spec_factory.foreach_execute object>
ip_route_show_table_all = <insights.core.spec_factory.simple_command object>
ipaupgrade_log = <insights.core.spec_factory.simple_file object>
ipcs_m = <insights.core.spec_factory.simple_command object>
ipcs_m_p = <insights.core.spec_factory.simple_command object>
ipcs_s = <insights.core.spec_factory.simple_command object>
ipcs_s_i = <insights.core.spec_factory.foreach_execute object>
iptables = <insights.core.spec_factory.simple_command object>
iptables_permanent = <insights.core.spec_factory.simple_file object>
ipv4_neigh = <insights.core.spec_factory.simple_command object>
ipv6_neigh = <insights.core.spec_factory.simple_command object>
ironic_conf = <insights.core.spec_factory.first_file object>
ironic_inspector_log = <insights.core.spec_factory.simple_file object>
is_aws()[source]
is_azure()[source]
is_ceph_monitor()[source]
is_sat()[source]
iscsiadm_m_session = <insights.core.spec_factory.simple_command object>
jbcs_httpd24_httpd_error_log = <insights.core.spec_factory.simple_file object>
jboss_domain_server_log = <insights.core.spec_factory.foreach_collect object>
jboss_domain_server_log_dir()[source]

Command: JBoss domain server log directory

jboss_home()[source]

Command: JBoss home progress command content paths

jboss_standalone_main_config = <insights.core.spec_factory.foreach_collect object>
jboss_standalone_main_config_files()[source]

Command: JBoss standalone main config files

jboss_version = <insights.core.spec_factory.foreach_collect object>
katello_service_status = <insights.core.spec_factory.simple_command object>
kdump_conf = <insights.core.spec_factory.simple_file object>
kerberos_kdc_log = <insights.core.spec_factory.simple_file object>
kernel_config = <insights.core.spec_factory.glob_file object>
kexec_crash_loaded = <insights.core.spec_factory.simple_file object>
kexec_crash_size = <insights.core.spec_factory.simple_file object>
keystone_conf = <insights.core.spec_factory.first_file object>
keystone_crontab = <insights.core.spec_factory.simple_command object>
keystone_crontab_container = <insights.core.spec_factory.simple_command object>
keystone_log = <insights.core.spec_factory.first_file object>
kpatch_list = <insights.core.spec_factory.simple_command object>
kpatch_patch_files = <insights.core.spec_factory.command_with_args object>
kpatch_patches_running_kernel_dir()[source]
krb5 = <insights.core.spec_factory.glob_file object>
ksmstate = <insights.core.spec_factory.simple_file object>
kubepods_cpu_quota = <insights.core.spec_factory.glob_file object>
last_upload_globs = ['/etc/redhat-access-insights/.lastupload', '/etc/insights-client/.lastupload']
lastupload = <insights.core.spec_factory.glob_file object>
libkeyutils = <insights.core.spec_factory.simple_command object>
libkeyutils_objdumps = <insights.core.spec_factory.simple_command object>
libvirtd_log = <insights.core.spec_factory.simple_file object>
libvirtd_qemu_log = <insights.core.spec_factory.glob_file object>
limits_conf = <insights.core.spec_factory.glob_file object>
locale = <insights.core.spec_factory.simple_command object>
localtime = <insights.core.spec_factory.simple_command object>
logrotate_conf = <insights.core.spec_factory.glob_file object>
lpstat_p = <insights.core.spec_factory.simple_command object>
ls_R_var_lib_nova_instances = <insights.core.spec_factory.simple_command object>
ls_boot = <insights.core.spec_factory.simple_command object>
ls_dev = <insights.core.spec_factory.simple_command object>
ls_disk = <insights.core.spec_factory.simple_command object>
ls_docker_volumes = <insights.core.spec_factory.simple_command object>
ls_edac_mc = <insights.core.spec_factory.simple_command object>
ls_etc = <insights.core.spec_factory.simple_command object>
ls_lib_firmware = <insights.core.spec_factory.simple_command object>
ls_ocp_cni_openshift_sdn = <insights.core.spec_factory.simple_command object>
ls_origin_local_volumes_pods = <insights.core.spec_factory.simple_command object>
ls_osroot = <insights.core.spec_factory.simple_command object>
ls_run_systemd_generator = <insights.core.spec_factory.simple_command object>
ls_sys_firmware = <insights.core.spec_factory.simple_command object>
ls_usr_lib64 = <insights.core.spec_factory.simple_command object>
ls_usr_sbin = <insights.core.spec_factory.simple_command object>
ls_var_lib_mongodb = <insights.core.spec_factory.simple_command object>
ls_var_lib_nova_instances = <insights.core.spec_factory.simple_command object>
ls_var_log = <insights.core.spec_factory.simple_command object>
ls_var_opt_mssql = <insights.core.spec_factory.simple_command object>
ls_var_opt_mssql_log = <insights.core.spec_factory.simple_command object>
ls_var_run = <insights.core.spec_factory.simple_command object>
ls_var_spool_clientmq = <insights.core.spec_factory.simple_command object>
ls_var_spool_postfix_maildrop = <insights.core.spec_factory.simple_command object>
ls_var_tmp = <insights.core.spec_factory.simple_command object>
ls_var_www = <insights.core.spec_factory.simple_command object>
lsblk = <insights.core.spec_factory.simple_command object>
lsblk_pairs = <insights.core.spec_factory.simple_command object>
lscpu = <insights.core.spec_factory.simple_command object>
lsinitrd = <insights.core.spec_factory.simple_command object>
lsinitrd_lvm_conf = <insights.core.spec_factory.first_of object>
lsmod = <insights.core.spec_factory.simple_command object>
lsmod_all_names()[source]
lsmod_only_names()[source]
lsof = <insights.core.spec_factory.simple_command object>
lspci = <insights.core.spec_factory.simple_command object>
lssap = <insights.core.spec_factory.simple_command object>
lsscsi = <insights.core.spec_factory.simple_command object>
lvdisplay = <insights.core.spec_factory.simple_command object>
lvm_conf = <insights.core.spec_factory.simple_file object>
lvs = None
lvs_noheadings = <insights.core.spec_factory.simple_command object>
lvs_noheadings_all = <insights.core.spec_factory.simple_command object>
mac_addresses = <insights.core.spec_factory.glob_file object>
machine_id = <insights.core.spec_factory.first_file object>
manila_conf = <insights.core.spec_factory.first_file object>
mariadb_log = <insights.core.spec_factory.simple_file object>
max_uid = <insights.core.spec_factory.simple_command object>
md5chk_files = <insights.core.spec_factory.foreach_execute object>
mdstat = <insights.core.spec_factory.simple_file object>
meminfo = <insights.core.spec_factory.first_file object>
messages = <insights.core.spec_factory.simple_file object>
metadata_json = <insights.core.spec_factory.simple_file object>
mistral_executor_log = <insights.core.spec_factory.simple_file object>
mlx4_port = <insights.core.spec_factory.glob_file object>
modinfo = <insights.core.spec_factory.foreach_execute object>
modinfo_all = <insights.core.spec_factory.command_with_args object>
modinfo_i40e = <insights.core.spec_factory.simple_command object>
modinfo_igb = <insights.core.spec_factory.simple_command object>
modinfo_ixgbe = <insights.core.spec_factory.simple_command object>
modinfo_veth = <insights.core.spec_factory.simple_command object>
modinfo_vmxnet3 = <insights.core.spec_factory.simple_command object>
modprobe = <insights.core.spec_factory.glob_file object>
mongod_conf = <insights.core.spec_factory.glob_file object>
mount = <insights.core.spec_factory.simple_command object>
mounts = <insights.core.spec_factory.simple_file object>
mssql_conf = <insights.core.spec_factory.simple_file object>
multicast_querier = <insights.core.spec_factory.simple_command object>
multipath__v4__ll = <insights.core.spec_factory.simple_command object>
multipath_conf = <insights.core.spec_factory.simple_file object>
multipath_conf_initramfs = <insights.core.spec_factory.simple_command object>
mysql_log = <insights.core.spec_factory.glob_file object>
mysqladmin_status = <insights.core.spec_factory.simple_command object>
mysqladmin_vars = <insights.core.spec_factory.simple_command object>
mysqld_limits = <insights.core.spec_factory.foreach_collect object>
mysqld_pid = <insights.core.spec_factory.simple_command object>
named_checkconf_p = <insights.core.spec_factory.simple_command object>
namespace = <insights.core.spec_factory.simple_command object>
netconsole = <insights.core.spec_factory.simple_file object>
netstat = <insights.core.spec_factory.simple_command object>
netstat_agn = <insights.core.spec_factory.simple_command object>
netstat_i = <insights.core.spec_factory.simple_command object>
netstat_s = <insights.core.spec_factory.simple_command object>
networkmanager_dispatcher_d = <insights.core.spec_factory.glob_file object>
neutron_conf = <insights.core.spec_factory.first_file object>
neutron_dhcp_agent_ini = <insights.core.spec_factory.first_file object>
neutron_l3_agent_ini = <insights.core.spec_factory.first_file object>
neutron_l3_agent_log = <insights.core.spec_factory.simple_file object>
neutron_metadata_agent_ini = <insights.core.spec_factory.first_file object>
neutron_metadata_agent_log = <insights.core.spec_factory.first_file object>
neutron_ml2_conf = <insights.core.spec_factory.first_file object>
neutron_ovs_agent_log = <insights.core.spec_factory.first_file object>
neutron_plugin_ini = <insights.core.spec_factory.first_file object>
neutron_server_log = <insights.core.spec_factory.first_file object>
nfs_exports = <insights.core.spec_factory.simple_file object>
nfs_exports_d = <insights.core.spec_factory.glob_file object>
nginx_conf = <insights.core.spec_factory.glob_file object>
nmcli_conn_show = <insights.core.spec_factory.simple_command object>
nmcli_dev_show = <insights.core.spec_factory.simple_command object>
nova_api_log = <insights.core.spec_factory.first_file object>
nova_compute_log = <insights.core.spec_factory.first_file object>
nova_conf = <insights.core.spec_factory.first_file object>
nova_crontab = <insights.core.spec_factory.simple_command object>
nova_crontab_container = <insights.core.spec_factory.simple_command object>
nova_migration_uid = <insights.core.spec_factory.simple_command object>
nova_uid = <insights.core.spec_factory.simple_command object>
nscd_conf = <insights.core.spec_factory.simple_file object>
nsswitch_conf = <insights.core.spec_factory.simple_file object>
ntp_conf = <insights.core.spec_factory.simple_file object>
ntpq_leap = <insights.core.spec_factory.simple_command object>
ntpq_pn = <insights.core.spec_factory.simple_command object>
ntptime = <insights.core.spec_factory.simple_command object>
numa_cpus = <insights.core.spec_factory.glob_file object>
numeric_user_group_name = <insights.core.spec_factory.simple_command object>
nvme_core_io_timeout = <insights.core.spec_factory.simple_file object>
oc_get_bc = <insights.core.spec_factory.simple_command object>
oc_get_build = <insights.core.spec_factory.simple_command object>
oc_get_clusterrole_with_config = <insights.core.spec_factory.simple_command object>
oc_get_clusterrolebinding_with_config = <insights.core.spec_factory.simple_command object>
oc_get_configmap = <insights.core.spec_factory.simple_command object>
oc_get_dc = <insights.core.spec_factory.simple_command object>
oc_get_egressnetworkpolicy = <insights.core.spec_factory.simple_command object>
oc_get_endpoints = <insights.core.spec_factory.simple_command object>
oc_get_event = <insights.core.spec_factory.simple_command object>
oc_get_node = <insights.core.spec_factory.simple_command object>
oc_get_pod = <insights.core.spec_factory.simple_command object>
oc_get_project = <insights.core.spec_factory.simple_command object>
oc_get_pv = <insights.core.spec_factory.simple_command object>
oc_get_pvc = <insights.core.spec_factory.simple_command object>
oc_get_rc = <insights.core.spec_factory.simple_command object>
oc_get_role = <insights.core.spec_factory.simple_command object>
oc_get_rolebinding = <insights.core.spec_factory.simple_command object>
oc_get_route = <insights.core.spec_factory.simple_command object>
oc_get_service = <insights.core.spec_factory.simple_command object>
odbc_ini = <insights.core.spec_factory.simple_file object>
odbcinst_ini = <insights.core.spec_factory.simple_file object>
openshift_certificates = <insights.core.spec_factory.foreach_execute object>
openshift_fluentd_environ = <insights.core.spec_factory.foreach_collect object>
openshift_fluentd_pid = <insights.core.spec_factory.simple_command object>
openshift_hosts = <insights.core.spec_factory.simple_file object>
openshift_router_environ = <insights.core.spec_factory.foreach_collect object>
openshift_router_pid = <insights.core.spec_factory.simple_command object>
openvswitch_daemon_log = <insights.core.spec_factory.simple_file object>
openvswitch_other_config = <insights.core.spec_factory.simple_command object>
openvswitch_server_log = <insights.core.spec_factory.simple_file object>
os_release = <insights.core.spec_factory.simple_file object>
osa_dispatcher_log = <insights.core.spec_factory.first_file object>
ose_master_config = <insights.core.spec_factory.simple_file object>
ose_node_config = <insights.core.spec_factory.simple_file object>
ovirt_engine_boot_log = <insights.core.spec_factory.simple_file object>
ovirt_engine_confd = <insights.core.spec_factory.glob_file object>
ovirt_engine_console_log = <insights.core.spec_factory.simple_file object>
ovirt_engine_server_log = <insights.core.spec_factory.simple_file object>
ovirt_engine_ui_log = <insights.core.spec_factory.simple_file object>
ovs_appctl_fdb_show_bridge = <insights.core.spec_factory.foreach_execute object>
ovs_ofctl_dump_flows = <insights.core.spec_factory.foreach_execute object>
ovs_vsctl_list_br = <insights.core.spec_factory.simple_command object>
ovs_vsctl_list_bridge = <insights.core.spec_factory.simple_command object>
ovs_vsctl_show = <insights.core.spec_factory.simple_command object>
ovs_vswitchd_limits = <insights.core.spec_factory.foreach_collect object>
ovs_vswitchd_pid = <insights.core.spec_factory.simple_command object>
pacemaker_log = <insights.core.spec_factory.first_file object>
package_and_httpd()[source]

Command: package_and_httpd

package_and_java()[source]

Command: package_and_java

package_provides_httpd = <insights.core.spec_factory.foreach_execute object>
package_provides_java = <insights.core.spec_factory.foreach_execute object>
pam_conf = <insights.core.spec_factory.simple_file object>
parted__l = <insights.core.spec_factory.simple_command object>
partitions = <insights.core.spec_factory.simple_file object>
passenger_status = <insights.core.spec_factory.simple_command object>
password_auth = <insights.core.spec_factory.simple_file object>
pci_rport_target_disk_paths = <insights.core.spec_factory.simple_command object>
pcs_config = <insights.core.spec_factory.simple_command object>
pcs_quorum_status = <insights.core.spec_factory.simple_command object>
pcs_status = <insights.core.spec_factory.simple_command object>
pluginconf_d = <insights.core.spec_factory.glob_file object>
postgresql_conf = <insights.core.spec_factory.first_file object>
postgresql_log = <insights.core.spec_factory.first_of object>
prev_uploader_log = <insights.core.spec_factory.simple_file object>
proc_netstat = <insights.core.spec_factory.simple_file object>
proc_slabinfo = <insights.core.spec_factory.simple_file object>
proc_snmp_ipv4 = <insights.core.spec_factory.simple_file object>
proc_snmp_ipv6 = <insights.core.spec_factory.simple_file object>
proc_stat = <insights.core.spec_factory.simple_file object>
ps_alxwww = <insights.core.spec_factory.simple_command object>
ps_aux = <insights.core.spec_factory.simple_command object>
ps_auxcww = <insights.core.spec_factory.simple_command object>
ps_auxww = <insights.core.spec_factory.simple_command object>
ps_ef = <insights.core.spec_factory.simple_command object>
ps_eo = <insights.core.spec_factory.simple_command object>
pulp_worker_defaults = <insights.core.spec_factory.simple_file object>
puppetserver_config = <insights.core.spec_factory.simple_file object>
pvs = <insights.core.spec_factory.simple_command object>
pvs_noheadings = <insights.core.spec_factory.simple_command object>
pvs_noheadings_all = <insights.core.spec_factory.simple_command object>
qemu_conf = <insights.core.spec_factory.simple_file object>
qemu_xml = <insights.core.spec_factory.glob_file object>
qpid_stat_g = <insights.core.spec_factory.simple_command object>
qpid_stat_q = <insights.core.spec_factory.simple_command object>
qpid_stat_u = <insights.core.spec_factory.simple_command object>
qpidd_conf = <insights.core.spec_factory.simple_file object>
rabbitmq_env = <insights.core.spec_factory.simple_file object>
rabbitmq_logs = <insights.core.spec_factory.glob_file object>
rabbitmq_policies = <insights.core.spec_factory.simple_command object>
rabbitmq_queues = <insights.core.spec_factory.simple_command object>
rabbitmq_report = <insights.core.spec_factory.simple_command object>
rabbitmq_startup_err = <insights.core.spec_factory.simple_file object>
rabbitmq_startup_log = <insights.core.spec_factory.simple_file object>
rabbitmq_users = <insights.core.spec_factory.simple_command object>
rc_local = <insights.core.spec_factory.simple_file object>
rdma_conf = <insights.core.spec_factory.simple_file object>
redhat_release = <insights.core.spec_factory.simple_file object>
resolv_conf = <insights.core.spec_factory.simple_file object>
rhev_data_center()[source]
rhn_charsets = <insights.core.spec_factory.simple_command object>
rhn_conf = <insights.core.spec_factory.first_file object>
rhn_entitlement_cert_xml = <insights.core.spec_factory.first_of object>
rhn_hibernate_conf = <insights.core.spec_factory.first_file object>
rhn_schema_stats = <insights.core.spec_factory.simple_command object>
rhn_schema_version = <insights.core.spec_factory.simple_command object>
rhn_search_daemon_log = <insights.core.spec_factory.first_file object>
rhn_server_satellite_log = <insights.core.spec_factory.simple_file object>
rhn_server_xmlrpc_log = <insights.core.spec_factory.first_file object>
rhn_taskomatic_daemon_log = <insights.core.spec_factory.first_file object>
rhosp_release = <insights.core.spec_factory.simple_file object>
rhsm_conf = <insights.core.spec_factory.simple_file object>
rhsm_log = <insights.core.spec_factory.simple_file object>
rhsm_releasever = <insights.core.spec_factory.simple_file object>
rhv_log_collector_analyzer = <insights.core.spec_factory.simple_command object>
rndc_status = <insights.core.spec_factory.simple_command object>
root_crontab = <insights.core.spec_factory.simple_command object>
route = <insights.core.spec_factory.simple_command object>
rpm_V_packages = <insights.core.spec_factory.simple_command object>
rpm_format = '\\{"name":"%{NAME}","epoch":"%{EPOCH}","version":"%{VERSION}","release":"%{RELEASE}","arch":"%{ARCH}","installtime":"%{INSTALLTIME:date}","buildtime":"%{BUILDTIME}","vendor":"%{VENDOR}","buildhost":"%{BUILDHOST}","sigpgp":"%{SIGPGP:pgpsig}"\\}\n'
rsyslog_conf = <insights.core.spec_factory.simple_file object>
samba = <insights.core.spec_factory.simple_file object>
sap_hdb_version = <insights.core.spec_factory.foreach_execute object>
sap_host_profile = <insights.core.spec_factory.simple_file object>
sap_sid()[source]

Get the SID

Returns

List of SID.

Return type

(list)

sap_sid_nr()[source]

Get the SID and Instance Number

Typical output of saphostctrl_listinstances:: # /usr/sap/hostctrl/exe/saphostctrl -function ListInstances Inst Info : SR1 - 01 - liuxc-rhel7-hana-ent - 749, patch 418, changelist 1816226

Returns

List of tuple of SID and Instance Number.

Return type

(list)

sapcontrol_getsystemupdatelist = <insights.core.spec_factory.foreach_execute object>
saphostctl_getcimobject_sapinstance = <insights.core.spec_factory.simple_command object>
saphostctrl_listinstances = <insights.core.spec_factory.simple_command object>
saphostexec_status = <insights.core.spec_factory.simple_command object>
saphostexec_version = <insights.core.spec_factory.simple_command object>
sat5_insights_properties = <insights.core.spec_factory.simple_file object>
satellite_custom_hiera = <insights.core.spec_factory.simple_file object>
satellite_enabled_features = <insights.core.spec_factory.simple_command object>
satellite_mongodb_storage_engine = <insights.core.spec_factory.simple_command object>
satellite_version_rb = <insights.core.spec_factory.simple_file object>
scheduler = <insights.core.spec_factory.foreach_collect object>
scsi = <insights.core.spec_factory.simple_file object>
scsi_eh_deadline = <insights.core.spec_factory.glob_file object>
scsi_fwver = <insights.core.spec_factory.glob_file object>
sctp_asc = <insights.core.spec_factory.simple_file object>
sctp_eps = <insights.core.spec_factory.simple_file object>
sctp_snmp = <insights.core.spec_factory.simple_file object>
sealert = <insights.core.spec_factory.simple_command object>
secure = <insights.core.spec_factory.simple_file object>
selinux_config = <insights.core.spec_factory.simple_file object>
semid()[source]

Command: semids

sestatus = <insights.core.spec_factory.simple_command object>
setup_named_chroot = <insights.core.spec_factory.simple_file object>
smartctl = <insights.core.spec_factory.foreach_execute object>
smartpdc_settings = <insights.core.spec_factory.simple_file object>
smbstatus_S = <insights.core.spec_factory.simple_command object>
smbstatus_p = <insights.core.spec_factory.simple_command object>
sockstat = <insights.core.spec_factory.simple_file object>
softnet_stat = <insights.core.spec_factory.simple_file object>
software_collections_list = <insights.core.spec_factory.simple_command object>
spfile_ora = <insights.core.spec_factory.glob_file object>
ss = <insights.core.spec_factory.simple_command object>
ssh_config = <insights.core.spec_factory.simple_file object>
ssh_foreman_config = <insights.core.spec_factory.simple_file object>
ssh_foreman_proxy_config = <insights.core.spec_factory.simple_file object>
sshd_config = <insights.core.spec_factory.simple_file object>
sshd_config_perms = <insights.core.spec_factory.simple_command object>
sssd_config = <insights.core.spec_factory.simple_file object>
subscription_manager_id = <insights.core.spec_factory.simple_command object>
subscription_manager_installed_product_ids = <insights.core.spec_factory.simple_command object>
subscription_manager_release_show = <insights.core.spec_factory.simple_command object>
swift_conf = <insights.core.spec_factory.first_file object>
swift_log = <insights.core.spec_factory.first_file object>
swift_object_expirer_conf = <insights.core.spec_factory.first_file object>
swift_proxy_server_conf = <insights.core.spec_factory.first_file object>
sysconfig_chronyd = <insights.core.spec_factory.simple_file object>
sysconfig_httpd = <insights.core.spec_factory.simple_file object>
sysconfig_irqbalance = <insights.core.spec_factory.simple_file object>
sysconfig_kdump = <insights.core.spec_factory.simple_file object>
sysconfig_libvirt_guests = <insights.core.spec_factory.simple_file object>
sysconfig_memcached = <insights.core.spec_factory.first_file object>
sysconfig_mongod = <insights.core.spec_factory.glob_file object>
sysconfig_network = <insights.core.spec_factory.simple_file object>
sysconfig_ntpd = <insights.core.spec_factory.simple_file object>
sysconfig_sshd = <insights.core.spec_factory.simple_file object>
sysconfig_virt_who = <insights.core.spec_factory.simple_file object>
sysctl = <insights.core.spec_factory.simple_command object>
sysctl_conf = <insights.core.spec_factory.simple_file object>
sysctl_conf_files = <insights.core.spec_factory.listdir object>
sysctl_conf_initramfs = <insights.core.spec_factory.foreach_execute object>
systemctl_cat_rpcbind_socket = <insights.core.spec_factory.simple_command object>
systemctl_cinder_volume = <insights.core.spec_factory.simple_command object>
systemctl_httpd = <insights.core.spec_factory.simple_command object>
systemctl_list_unit_files = <insights.core.spec_factory.simple_command object>
systemctl_list_units = <insights.core.spec_factory.simple_command object>
systemctl_mariadb = <insights.core.spec_factory.simple_command object>
systemctl_nginx = <insights.core.spec_factory.simple_command object>
systemctl_pulp_celerybeat = <insights.core.spec_factory.simple_command object>
systemctl_pulp_resmg = <insights.core.spec_factory.simple_command object>
systemctl_pulp_workers = <insights.core.spec_factory.simple_command object>
systemctl_qdrouterd = <insights.core.spec_factory.simple_command object>
systemctl_qpidd = <insights.core.spec_factory.simple_command object>
systemctl_show_all_services = <insights.core.spec_factory.simple_command object>
systemctl_show_target = <insights.core.spec_factory.simple_command object>
systemctl_smartpdc = <insights.core.spec_factory.simple_command object>
systemd_docker = <insights.core.spec_factory.simple_command object>
systemd_logind_conf = <insights.core.spec_factory.simple_file object>
systemd_openshift_node = <insights.core.spec_factory.simple_command object>
systemd_system_conf = <insights.core.spec_factory.simple_file object>
systemd_system_origin_accounting = <insights.core.spec_factory.simple_file object>
systemid = <insights.core.spec_factory.first_of object>
systool_b_scsi_v = <insights.core.spec_factory.simple_command object>
tags = <insights.core.spec_factory.simple_file object>
teamdctl_config_dump = <insights.core.spec_factory.foreach_execute object>
teamdctl_state_dump = <insights.core.spec_factory.foreach_execute object>
thp_enabled = <insights.core.spec_factory.simple_file object>
thp_use_zero_page = <insights.core.spec_factory.simple_file object>
tmpfilesd = <insights.core.spec_factory.glob_file object>
tomcat_base()[source]

Path: Tomcat base path

tomcat_home_base()[source]

Command: tomcat_home_base_paths

tomcat_server_xml = <insights.core.spec_factory.first_of object>
tomcat_vdc_fallback = <insights.core.spec_factory.simple_command object>
tomcat_vdc_targeted = <insights.core.spec_factory.foreach_execute object>
tomcat_web_xml = <insights.core.spec_factory.first_of object>
tuned_adm = <insights.core.spec_factory.simple_command object>
tuned_conf = <insights.core.spec_factory.simple_file object>
udev_fc_wwpn_id_rules = <insights.core.spec_factory.simple_file object>
udev_persistent_net_rules = <insights.core.spec_factory.simple_file object>
uname = <insights.core.spec_factory.simple_command object>
up2date = <insights.core.spec_factory.simple_file object>
up2date_log = <insights.core.spec_factory.simple_file object>
uploader_log = <insights.core.spec_factory.simple_file object>
uptime = <insights.core.spec_factory.simple_command object>
usr_journald_conf_d = <insights.core.spec_factory.glob_file object>
vdo_status = <insights.core.spec_factory.simple_command object>
vdsm_conf = <insights.core.spec_factory.simple_file object>
vdsm_id = <insights.core.spec_factory.simple_file object>
vdsm_log = <insights.core.spec_factory.simple_file object>
vdsm_logger_conf = <insights.core.spec_factory.simple_file object>
vgdisplay = <insights.core.spec_factory.simple_command object>
vgs = None
vgs_noheadings = <insights.core.spec_factory.simple_command object>
vgs_noheadings_all = <insights.core.spec_factory.simple_command object>
virsh_list_all = <insights.core.spec_factory.simple_command object>
virt_uuid_facts = <insights.core.spec_factory.simple_file object>
virt_what = <insights.core.spec_factory.simple_command object>
virt_who_conf = <insights.core.spec_factory.glob_file object>
virtlogd_conf = <insights.core.spec_factory.simple_file object>
vma_ra_enabled = <insights.core.spec_factory.simple_file object>
vmcore_dmesg = <insights.core.spec_factory.glob_file object>
vmware_tools_conf = <insights.core.spec_factory.simple_file object>
vsftpd = <insights.core.spec_factory.simple_file object>
vsftpd_conf = <insights.core.spec_factory.simple_file object>
woopsie = <insights.core.spec_factory.simple_command object>
x86_ibpb_enabled = <insights.core.spec_factory.simple_file object>
x86_ibrs_enabled = <insights.core.spec_factory.simple_file object>
x86_pti_enabled = <insights.core.spec_factory.simple_file object>
x86_retp_enabled = <insights.core.spec_factory.simple_file object>
xfs_info = <insights.core.spec_factory.foreach_execute object>
xfs_mounts()[source]
xinetd_conf = <insights.core.spec_factory.glob_file object>
yum_conf = <insights.core.spec_factory.simple_file object>
yum_list_installed = <insights.core.spec_factory.simple_command object>
yum_log = <insights.core.spec_factory.simple_file object>
yum_repolist = <insights.core.spec_factory.simple_command object>
yum_repos_d = <insights.core.spec_factory.glob_file object>
zdump_v = <insights.core.spec_factory.simple_command object>
zipl_conf = <insights.core.spec_factory.simple_file object>
insights.specs.default.format_rpm(idx=None)
insights.specs.default.get_cmd_and_package_in_ps(broker, target_command)[source]
insights.specs.default.get_owner(filename)[source]

insights.specs.insights_archive

class insights.specs.insights_archive.InsightsArchiveSpecs[source]

Bases: insights.specs.Specs

all_installed_rpms = <insights.core.spec_factory.glob_file object>
auditctl_status = <insights.core.spec_factory.simple_file object>
aws_instance_id_doc = <insights.core.spec_factory.simple_file object>
aws_instance_id_pkcs7 = <insights.core.spec_factory.simple_file object>
aws_instance_type = <insights.core.spec_factory.simple_file object>
azure_instance_type = <insights.core.spec_factory.simple_file object>
bios_uuid = <insights.core.spec_factory.simple_file object>
blkid = <insights.core.spec_factory.simple_file object>
brctl_show = <insights.core.spec_factory.simple_file object>
ceph_df_detail = <insights.core.spec_factory.first_file object>
ceph_health_detail = <insights.core.spec_factory.first_file object>
ceph_insights = <insights.core.spec_factory.simple_file object>
ceph_osd_df = <insights.core.spec_factory.first_file object>
ceph_osd_dump = <insights.core.spec_factory.first_file object>
ceph_osd_ec_profile_get = <insights.core.spec_factory.simple_file object>
ceph_osd_ec_profile_ls = <insights.core.spec_factory.simple_file object>
ceph_osd_tree = <insights.core.spec_factory.first_file object>
ceph_s = <insights.core.spec_factory.first_file object>
ceph_v = <insights.core.spec_factory.simple_file object>
certificates_enddate = <insights.core.spec_factory.simple_file object>
chkconfig = <insights.core.spec_factory.simple_file object>
chronyc_sources = <insights.core.spec_factory.simple_file object>
cpupower_frequency_info = <insights.core.spec_factory.simple_file object>
crt = <insights.core.spec_factory.simple_file object>
date = <insights.core.spec_factory.simple_file object>
date_iso = <insights.core.spec_factory.simple_file object>
date_utc = <insights.core.spec_factory.simple_file object>
db2licm_l = <insights.core.spec_factory.simple_file object>
df__al = <insights.core.spec_factory.simple_file object>
df__alP = <insights.core.spec_factory.simple_file object>
df__li = <insights.core.spec_factory.simple_file object>
dig = <insights.core.spec_factory.simple_file object>
dig_dnssec = <insights.core.spec_factory.simple_file object>
dig_edns = <insights.core.spec_factory.simple_file object>
dig_noedns = <insights.core.spec_factory.simple_file object>
display_java = <insights.core.spec_factory.simple_file object>
display_name = <insights.core.spec_factory.simple_file object>
dmesg = <insights.core.spec_factory.simple_file object>
dmidecode = <insights.core.spec_factory.simple_file object>
dmsetup_info = <insights.core.spec_factory.simple_file object>
dnf_module_info = <insights.core.spec_factory.glob_file object>
dnf_module_list = <insights.core.spec_factory.simple_file object>
docker_info = <insights.core.spec_factory.simple_file object>
docker_list_containers = <insights.core.spec_factory.simple_file object>
docker_list_images = <insights.core.spec_factory.simple_file object>
engine_config_all = <insights.core.spec_factory.simple_file object>
ethtool = <insights.core.spec_factory.glob_file object>
ethtool_S = <insights.core.spec_factory.glob_file object>
ethtool_T = <insights.core.spec_factory.glob_file object>
ethtool_a = <insights.core.spec_factory.glob_file object>
ethtool_c = <insights.core.spec_factory.glob_file object>
ethtool_g = <insights.core.spec_factory.glob_file object>
ethtool_i = <insights.core.spec_factory.glob_file object>
ethtool_k = <insights.core.spec_factory.glob_file object>
facter = <insights.core.spec_factory.simple_file object>
fc_match = <insights.core.spec_factory.simple_file object>
fcoeadm_i = <insights.core.spec_factory.simple_file object>
fdisk_l = <insights.core.spec_factory.simple_file object>
findmnt_lo_propagation = <insights.core.spec_factory.simple_file object>
foreman_rake_db_migrate_status = <insights.core.spec_factory.simple_file object>
getcert_list = <insights.core.spec_factory.simple_file object>
getconf_page_size = <insights.core.spec_factory.simple_file object>
getenforce = <insights.core.spec_factory.simple_file object>
getsebool = <insights.core.spec_factory.simple_file object>
gluster_peer_status = <insights.core.spec_factory.simple_file object>
gluster_v_info = <insights.core.spec_factory.simple_file object>
gluster_v_status = <insights.core.spec_factory.simple_file object>
grub1_config_perms = <insights.core.spec_factory.simple_file object>
grub_config_perms = <insights.core.spec_factory.simple_file object>
grubby_default_index = <insights.core.spec_factory.simple_file object>
grubby_default_kernel = <insights.core.spec_factory.simple_file object>
hammer_ping = <insights.core.spec_factory.simple_file object>
hammer_task_list = <insights.core.spec_factory.simple_file object>
heat_crontab = <insights.core.spec_factory.simple_file object>
heat_crontab_container = <insights.core.spec_factory.simple_file object>
hostname = <insights.core.spec_factory.simple_file object>
hostname_default = <insights.core.spec_factory.simple_file object>
hostname_short = <insights.core.spec_factory.simple_file object>
hponcfg_g = <insights.core.spec_factory.simple_file object>
httpd_M = <insights.core.spec_factory.glob_file object>
httpd_V = <insights.core.spec_factory.glob_file object>
httpd_on_nfs = <insights.core.spec_factory.simple_file object>
httpd_pid = <insights.core.spec_factory.simple_file object>
ifconfig = <insights.core.spec_factory.simple_file object>
installed_rpms = <insights.core.spec_factory.head object>
ip6tables = <insights.core.spec_factory.simple_file object>
ip_addr = <insights.core.spec_factory.simple_file object>
ip_addresses = <insights.core.spec_factory.simple_file object>
ip_netns_exec_namespace_lsof = <insights.core.spec_factory.glob_file object>
ip_route_show_table_all = <insights.core.spec_factory.simple_file object>
ipcs_m = <insights.core.spec_factory.simple_file object>
ipcs_m_p = <insights.core.spec_factory.simple_file object>
ipcs_s = <insights.core.spec_factory.simple_file object>
iptables = <insights.core.spec_factory.simple_file object>
ipv4_neigh = <insights.core.spec_factory.simple_file object>
ipv6_neigh = <insights.core.spec_factory.simple_file object>
iscsiadm_m_session = <insights.core.spec_factory.simple_file object>
katello_service_status = <insights.core.spec_factory.simple_file object>
keystone_crontab = <insights.core.spec_factory.simple_file object>
keystone_crontab_container = <insights.core.spec_factory.simple_file object>
kpatch_list = <insights.core.spec_factory.simple_file object>
kpatch_patch_files = <insights.core.spec_factory.simple_file object>
libkeyutils = <insights.core.spec_factory.simple_file object>
libkeyutils_objdumps = <insights.core.spec_factory.simple_file object>
locale = <insights.core.spec_factory.simple_file object>
localtime = <insights.core.spec_factory.simple_file object>
lpstat_p = <insights.core.spec_factory.simple_file object>
ls_R_var_lib_nova_instances = <insights.core.spec_factory.simple_file object>
ls_boot = <insights.core.spec_factory.simple_file object>
ls_dev = <insights.core.spec_factory.simple_file object>
ls_disk = <insights.core.spec_factory.simple_file object>
ls_docker_volumes = <insights.core.spec_factory.simple_file object>
ls_edac_mc = <insights.core.spec_factory.simple_file object>
ls_etc = <insights.core.spec_factory.simple_file object>
ls_lib_firmware = <insights.core.spec_factory.simple_file object>
ls_ocp_cni_openshift_sdn = <insights.core.spec_factory.simple_file object>
ls_origin_local_volumes_pods = <insights.core.spec_factory.simple_file object>
ls_osroot = <insights.core.spec_factory.simple_file object>
ls_run_systemd_generator = <insights.core.spec_factory.simple_file object>
ls_sys_firmware = <insights.core.spec_factory.simple_file object>
ls_usr_lib64 = <insights.core.spec_factory.simple_file object>
ls_usr_sbin = <insights.core.spec_factory.simple_file object>
ls_var_lib_mongodb = <insights.core.spec_factory.simple_file object>
ls_var_lib_nova_instances = <insights.core.spec_factory.simple_file object>
ls_var_log = <insights.core.spec_factory.simple_file object>
ls_var_opt_mssql = <insights.core.spec_factory.simple_file object>
ls_var_opt_mssql_log = <insights.core.spec_factory.simple_file object>
ls_var_run = <insights.core.spec_factory.simple_file object>
ls_var_spool_clientmq = <insights.core.spec_factory.simple_file object>
ls_var_spool_postfix_maildrop = <insights.core.spec_factory.simple_file object>
ls_var_tmp = <insights.core.spec_factory.simple_file object>
ls_var_www = <insights.core.spec_factory.simple_file object>
lsblk = <insights.core.spec_factory.simple_file object>
lsblk_pairs = <insights.core.spec_factory.simple_file object>
lscpu = <insights.core.spec_factory.simple_file object>
lsinitrd = <insights.core.spec_factory.simple_file object>
lsmod = <insights.core.spec_factory.simple_file object>
lsof = <insights.core.spec_factory.simple_file object>
lspci = <insights.core.spec_factory.simple_file object>
lssap = <insights.core.spec_factory.simple_file object>
lsscsi = <insights.core.spec_factory.simple_file object>
lvdisplay = <insights.core.spec_factory.simple_file object>
lvs_noheadings = <insights.core.spec_factory.simple_file object>
lvs_noheadings_all = <insights.core.spec_factory.simple_file object>
max_uid = <insights.core.spec_factory.simple_file object>
md5chk_files = <insights.core.spec_factory.glob_file object>
modinfo = <insights.core.spec_factory.glob_file object>
modinfo_i40e = <insights.core.spec_factory.simple_file object>
modinfo_igb = <insights.core.spec_factory.simple_file object>
modinfo_ixgbe = <insights.core.spec_factory.simple_file object>
modinfo_veth = <insights.core.spec_factory.simple_file object>
modinfo_vmxnet3 = <insights.core.spec_factory.simple_file object>
mount = <insights.core.spec_factory.simple_file object>
multicast_querier = <insights.core.spec_factory.simple_file object>
multipath__v4__ll = <insights.core.spec_factory.simple_file object>
multipath_conf_initramfs = <insights.core.spec_factory.simple_file object>
mysqladmin_status = <insights.core.spec_factory.simple_file object>
mysqladmin_vars = <insights.core.spec_factory.simple_file object>
named_checkconf_p = <insights.core.spec_factory.simple_file object>
namespace = <insights.core.spec_factory.simple_file object>
netstat = <insights.core.spec_factory.simple_file object>
netstat_agn = <insights.core.spec_factory.simple_file object>
netstat_i = <insights.core.spec_factory.simple_file object>
netstat_s = <insights.core.spec_factory.simple_file object>
nmcli_conn_show = <insights.core.spec_factory.simple_file object>
nmcli_dev_show = <insights.core.spec_factory.simple_file object>
nova_crontab = <insights.core.spec_factory.simple_file object>
nova_crontab_container = <insights.core.spec_factory.simple_file object>
nova_migration_uid = <insights.core.spec_factory.simple_file object>
nova_uid = <insights.core.spec_factory.simple_file object>
ntpq_leap = <insights.core.spec_factory.simple_file object>
ntpq_pn = <insights.core.spec_factory.simple_file object>
ntptime = <insights.core.spec_factory.simple_file object>
numeric_user_group_name = <insights.core.spec_factory.simple_file object>
oc_get_bc = <insights.core.spec_factory.simple_file object>
oc_get_build = <insights.core.spec_factory.simple_file object>
oc_get_clusterrole_with_config = <insights.core.spec_factory.simple_file object>
oc_get_clusterrolebinding_with_config = <insights.core.spec_factory.simple_file object>
oc_get_configmap = <insights.core.spec_factory.simple_file object>
oc_get_dc = <insights.core.spec_factory.simple_file object>
oc_get_egressnetworkpolicy = <insights.core.spec_factory.simple_file object>
oc_get_endpoints = <insights.core.spec_factory.simple_file object>
oc_get_event = <insights.core.spec_factory.simple_file object>
oc_get_node = <insights.core.spec_factory.simple_file object>
oc_get_pod = <insights.core.spec_factory.simple_file object>
oc_get_project = <insights.core.spec_factory.simple_file object>
oc_get_pv = <insights.core.spec_factory.simple_file object>
oc_get_pvc = <insights.core.spec_factory.simple_file object>
oc_get_rc = <insights.core.spec_factory.simple_file object>
oc_get_role = <insights.core.spec_factory.simple_file object>
oc_get_rolebinding = <insights.core.spec_factory.simple_file object>
oc_get_route = <insights.core.spec_factory.simple_file object>
oc_get_service = <insights.core.spec_factory.simple_file object>
openvswitch_other_config = <insights.core.spec_factory.simple_file object>
ovs_appctl_fdb_show_bridge = <insights.core.spec_factory.glob_file object>
ovs_ofctl_dump_flows = <insights.core.spec_factory.glob_file object>
ovs_vsctl_list_bridge = <insights.core.spec_factory.simple_file object>
ovs_vsctl_show = <insights.core.spec_factory.simple_file object>
parted__l = <insights.core.spec_factory.simple_file object>
passenger_status = <insights.core.spec_factory.simple_file object>
pci_rport_target_disk_paths = <insights.core.spec_factory.simple_file object>
pcs_config = <insights.core.spec_factory.simple_file object>
pcs_quorum_status = <insights.core.spec_factory.simple_file object>
pcs_status = <insights.core.spec_factory.simple_file object>
ps_alxwww = <insights.core.spec_factory.simple_file object>
ps_aux = <insights.core.spec_factory.simple_file object>
ps_auxcww = <insights.core.spec_factory.simple_file object>
ps_auxww = <insights.core.spec_factory.simple_file object>
ps_ef = <insights.core.spec_factory.simple_file object>
ps_eo = <insights.core.spec_factory.simple_file object>
pvs = <insights.core.spec_factory.simple_file object>
pvs_noheadings = <insights.core.spec_factory.simple_file object>
pvs_noheadings_all = <insights.core.spec_factory.simple_file object>
qpid_stat_g = <insights.core.spec_factory.simple_file object>
qpid_stat_q = <insights.core.spec_factory.simple_file object>
qpid_stat_u = <insights.core.spec_factory.simple_file object>
rabbitmq_policies = <insights.core.spec_factory.simple_file object>
rabbitmq_queues = <insights.core.spec_factory.simple_file object>
rabbitmq_report = <insights.core.spec_factory.simple_file object>
rabbitmq_users = <insights.core.spec_factory.simple_file object>
rhev_data_center = <insights.core.spec_factory.simple_file object>
rhn_charsets = <insights.core.spec_factory.simple_file object>
rhn_schema_stats = <insights.core.spec_factory.simple_file object>
rhn_schema_version = <insights.core.spec_factory.simple_file object>
rhv_log_collector_analyzer = <insights.core.spec_factory.simple_file object>
rndc_status = <insights.core.spec_factory.simple_file object>
root_crontab = <insights.core.spec_factory.simple_file object>
route = <insights.core.spec_factory.simple_file object>
rpm_V_packages = <insights.core.spec_factory.simple_file object>
sapcontrol_getsystemupdatelist = <insights.core.spec_factory.simple_file object>
saphostctl_getcimobject_sapinstance = <insights.core.spec_factory.simple_file object>
saphostexec_status = <insights.core.spec_factory.simple_file object>
saphostexec_version = <insights.core.spec_factory.simple_file object>
satellite_enabled_features = <insights.core.spec_factory.simple_file object>
satellite_mongodb_storage_engine = <insights.core.spec_factory.simple_file object>
sealert = <insights.core.spec_factory.simple_file object>
sestatus = <insights.core.spec_factory.simple_file object>
smbstatus_S = <insights.core.spec_factory.simple_file object>
smbstatus_p = <insights.core.spec_factory.simple_file object>
software_collections_list = <insights.core.spec_factory.simple_file object>
ss = <insights.core.spec_factory.simple_file object>
sshd_config_perms = <insights.core.spec_factory.simple_file object>
subscription_manager_id = <insights.core.spec_factory.simple_file object>
subscription_manager_installed_product_ids = <insights.core.spec_factory.simple_file object>
subscription_manager_release_show = <insights.core.spec_factory.simple_file object>
sysctl = <insights.core.spec_factory.simple_file object>
sysctl_conf_initramfs = <insights.core.spec_factory.glob_file object>
systemctl_cat_rpcbind_socket = <insights.core.spec_factory.simple_file object>
systemctl_cinder_volume = <insights.core.spec_factory.simple_file object>
systemctl_httpd = <insights.core.spec_factory.simple_file object>
systemctl_list_unit_files = <insights.core.spec_factory.simple_file object>
systemctl_list_units = <insights.core.spec_factory.simple_file object>
systemctl_mariadb = <insights.core.spec_factory.simple_file object>
systemctl_nginx = <insights.core.spec_factory.simple_file object>
systemctl_pulp_celerybeat = <insights.core.spec_factory.simple_file object>
systemctl_pulp_resmg = <insights.core.spec_factory.simple_file object>
systemctl_pulp_workers = <insights.core.spec_factory.simple_file object>
systemctl_qdrouterd = <insights.core.spec_factory.simple_file object>
systemctl_qpidd = <insights.core.spec_factory.simple_file object>
systemctl_show_all_services = <insights.core.spec_factory.simple_file object>
systemctl_show_target = <insights.core.spec_factory.simple_file object>
systemctl_smartpdc = <insights.core.spec_factory.simple_file object>
systemd_docker = <insights.core.spec_factory.first_file object>
systemd_openshift_node = <insights.core.spec_factory.first_file object>
systool_b_scsi_v = <insights.core.spec_factory.simple_file object>
teamdctl_config_dump = <insights.core.spec_factory.glob_file object>
teamdctl_state_dump = <insights.core.spec_factory.glob_file object>
tomcat_vdc_fallback = <insights.core.spec_factory.simple_file object>
tuned_adm = <insights.core.spec_factory.simple_file object>
uname = <insights.core.spec_factory.simple_file object>
uptime = <insights.core.spec_factory.simple_file object>
vdo_status = <insights.core.spec_factory.simple_file object>
version_info = <insights.core.spec_factory.simple_file object>
vgdisplay = <insights.core.spec_factory.simple_file object>
vgs_noheadings = <insights.core.spec_factory.simple_file object>
vgs_noheadings_all = <insights.core.spec_factory.simple_file object>
virsh_list_all = <insights.core.spec_factory.simple_file object>
virt_what = <insights.core.spec_factory.simple_file object>
woopsie = <insights.core.spec_factory.simple_file object>
yum_list_installed = <insights.core.spec_factory.simple_file object>
yum_repolist = <insights.core.spec_factory.first_file object>
zdump_v = <insights.core.spec_factory.simple_file object>

insights.specs.sos_archive

class insights.specs.sos_archive.SosSpecs[source]

Bases: insights.specs.Specs

auditctl_status = <insights.core.spec_factory.simple_file object>
blkid = <insights.core.spec_factory.first_file object>
candlepin_error_log = <insights.core.spec_factory.first_of object>
candlepin_log = <insights.core.spec_factory.first_of object>
catalina_out = <insights.core.spec_factory.glob_file object>
catalina_server_log = <insights.core.spec_factory.glob_file object>
ceph_health_detail = <insights.core.spec_factory.simple_file object>
ceph_osd_tree_text = <insights.core.spec_factory.simple_file object>
ceph_report = <insights.core.spec_factory.simple_file object>
chkconfig = <insights.core.spec_factory.first_file object>
cpupower_frequency_info = <insights.core.spec_factory.simple_file object>
date = <insights.core.spec_factory.first_of object>
df__al = <insights.core.spec_factory.first_file object>
display_java = <insights.core.spec_factory.simple_file object>
dmesg = <insights.core.spec_factory.first_file object>
dmidecode = <insights.core.spec_factory.simple_file object>
dmsetup_info = <insights.core.spec_factory.simple_file object>
docker_image_inspect = <insights.core.spec_factory.glob_file object>
docker_info = <insights.core.spec_factory.simple_file object>
docker_list_containers = <insights.core.spec_factory.first_file object>
docker_list_images = <insights.core.spec_factory.simple_file object>
dumpe2fs_h = <insights.core.spec_factory.glob_file object>
ethtool = <insights.core.spec_factory.glob_file object>
ethtool_S = <insights.core.spec_factory.glob_file object>
ethtool_T = <insights.core.spec_factory.glob_file object>
ethtool_a = <insights.core.spec_factory.glob_file object>
ethtool_c = <insights.core.spec_factory.glob_file object>
ethtool_g = <insights.core.spec_factory.glob_file object>
ethtool_i = <insights.core.spec_factory.glob_file object>
ethtool_k = <insights.core.spec_factory.glob_file object>
fdisk_l_sos = <insights.core.spec_factory.first_of object>
foreman_production_log = <insights.core.spec_factory.first_of object>
foreman_proxy_conf = <insights.core.spec_factory.first_of object>
foreman_proxy_log = <insights.core.spec_factory.first_of object>
foreman_satellite_log = <insights.core.spec_factory.first_of object>
foreman_ssl_access_ssl_log = <insights.core.spec_factory.first_file object>
getcert_list = <insights.core.spec_factory.first_file object>
gluster_peer_status = <insights.core.spec_factory.simple_file object>
gluster_v_info = <insights.core.spec_factory.simple_file object>
gluster_v_status = <insights.core.spec_factory.simple_file object>
hammer_ping = <insights.core.spec_factory.first_file object>
hostname = <insights.core.spec_factory.first_file object>
hostname_default = <insights.core.spec_factory.first_file object>
hostname_short = <insights.core.spec_factory.first_file object>
httpd_M = <insights.core.spec_factory.simple_file object>
installed_rpms = <insights.core.spec_factory.first_file object>
ip_addr = <insights.core.spec_factory.first_of object>
ip_neigh_show = <insights.core.spec_factory.first_file object>
ip_route_show_table_all = <insights.core.spec_factory.simple_file object>
iptables = <insights.core.spec_factory.first_file object>
journal_since_boot = <insights.core.spec_factory.first_of object>
locale = <insights.core.spec_factory.simple_file object>
ls_boot = <insights.core.spec_factory.simple_file object>
ls_dev = <insights.core.spec_factory.first_file object>
lsblk = <insights.core.spec_factory.first_file object>
lscpu = <insights.core.spec_factory.simple_file object>
lsinitrd = <insights.core.spec_factory.simple_file object>
lsmod = <insights.core.spec_factory.simple_file object>
lsof = <insights.core.spec_factory.simple_file object>
lspci = <insights.core.spec_factory.first_of object>
lsscsi = <insights.core.spec_factory.simple_file object>
lvs = <insights.core.spec_factory.first_file object>
modinfo_all = <insights.core.spec_factory.glob_file object>
mount = <insights.core.spec_factory.simple_file object>
multipath__v4__ll = <insights.core.spec_factory.first_file object>
netstat = <insights.core.spec_factory.first_file object>
netstat_agn = <insights.core.spec_factory.first_of object>
netstat_s = <insights.core.spec_factory.simple_file object>
nmcli_dev_show = <insights.core.spec_factory.simple_file object>
nmcli_dev_show_sos = <insights.core.spec_factory.glob_file object>
ntptime = <insights.core.spec_factory.simple_file object>
openvswitch_other_config = <insights.core.spec_factory.simple_file object>
ovs_vsctl_show = <insights.core.spec_factory.simple_file object>
pcs_config = <insights.core.spec_factory.simple_file object>
pcs_quorum_status = <insights.core.spec_factory.simple_file object>
pcs_status = <insights.core.spec_factory.simple_file object>
podman_image_inspect = <insights.core.spec_factory.glob_file object>
podman_list_containers = <insights.core.spec_factory.first_file object>
podman_list_images = <insights.core.spec_factory.simple_file object>
ps_alxwww = <insights.core.spec_factory.simple_file object>
ps_aux = <insights.core.spec_factory.first_file object>
ps_auxcww = <insights.core.spec_factory.first_file object>
ps_auxww = <insights.core.spec_factory.first_file object>
puppet_ssl_cert_ca_pem = <insights.core.spec_factory.first_file object>
pvs = <insights.core.spec_factory.first_file object>
qpid_stat_q = <insights.core.spec_factory.first_file object>
qpid_stat_u = <insights.core.spec_factory.first_file object>
rabbitmq_report = <insights.core.spec_factory.simple_file object>
rabbitmq_report_of_containers = <insights.core.spec_factory.glob_file object>
rhn_charsets = <insights.core.spec_factory.first_file object>
root_crontab = <insights.core.spec_factory.first_file object>
route = <insights.core.spec_factory.simple_file object>
samba_logs = <insights.core.spec_factory.glob_file object>
sestatus = <insights.core.spec_factory.simple_file object>
sssd_logs = <insights.core.spec_factory.glob_file object>
subscription_manager_list_consumed = <insights.core.spec_factory.first_file object>
subscription_manager_list_installed = <insights.core.spec_factory.first_file object>
sysctl = <insights.core.spec_factory.simple_file object>
systemctl_list_unit_files = <insights.core.spec_factory.simple_file object>
systemctl_list_units = <insights.core.spec_factory.first_file object>
systemctl_show_all_services = <insights.core.spec_factory.simple_file object>
teamdctl_config_dump = <insights.core.spec_factory.glob_file object>
teamdctl_state_dump = <insights.core.spec_factory.glob_file object>
uname = <insights.core.spec_factory.simple_file object>
uptime = <insights.core.spec_factory.first_of object>
var_qemu_xml = <insights.core.spec_factory.glob_file object>
vdsm_import_log = <insights.core.spec_factory.glob_file object>
vgdisplay = <insights.core.spec_factory.first_file object>
vgs = <insights.core.spec_factory.first_file object>
xfs_info = <insights.core.spec_factory.glob_file object>
yum_repolist = <insights.core.spec_factory.simple_file object>

insights.specs.jdr_archive

This module defines all datasources for JDR report

class insights.specs.jdr_archive.JDRSpecs[source]

Bases: insights.specs.Specs

A class for all the JDR report datasources

jboss_domain_server_log = <insights.core.spec_factory.foreach_collect object>
jboss_domain_servers = <insights.core.spec_factory.listdir object>
jboss_standalone_conf_file()[source]

Get which jboss standalone conf file is using from server log

jboss_standalone_main_config = <insights.core.spec_factory.foreach_collect object>
jboss_standalone_server_log = <insights.core.spec_factory.glob_file object>

insights.tests

class insights.tests.InputData(name=None, hostname=None)[source]

Bases: object

Helper class used with integrate. The role of this class is to represent data files sent to parsers and rules in a format similar to what lays on disk.

Example Usage:

input_data = InputData()
input_data.add("messages", "this is some messages content")
input_data.add("uname", "this is some uname content")

If release is specified when InputData is constructed, it will be added to every mock record when added. This is useful for testing parsers that rely on context.release.

If path is specified when calling the add method, the record will contain the specified value in the context.path field. This is useful for testing pattern-like file parsers.

add(spec, content, path=None, do_filter=True)[source]
add_component(comp, obj)[source]

Allow adding arbitrary objects as components. This allows tests to mock components that have external dependencies so their dependents can be integration tested.

clone(name)[source]
get(key, default)[source]
items()[source]
insights.tests.archive_provider(component, test_func=<function deep_compare>, stride=1)[source]

Decorator used to register generator functions that yield InputData and expected response tuples. These generators will be consumed by py.test such that:

  • Each InputData will be passed into an integrate() function

  • The result will be compared [1] against the expected value from the tuple.

Parameters
  • component ((str)) -- The component to be tested.

  • test_func (function) -- A custom comparison function with the parameters (result, expected). This will override the use of the compare() [1] function.

  • stride (int) -- yield every stride InputData object rather than the full set. This is used to provide a faster execution path in some test setups.

  • insights.tests.deep_compare() ([1]) --

insights.tests.context_wrap(lines, path='path', hostname='hostname.example.com', release='Red Hat Enterprise Linux Server release 7.2 (Maipo)', version='-1.-1', machine_id='machine_id', strip=True, split=True, **kwargs)[source]
insights.tests.create_metadata(system_id, product)[source]
insights.tests.deep_compare(result, expected)[source]

Deep compare rule reducer results when testing.

insights.tests.integrate(input_data, component)[source]
insights.tests.redhat_release(major, minor='')[source]

Helper function to construct a redhat-release string for a specific RHEL major and minor version. Only constructs redhat-releases for RHEL major releases 4, 5, 6 & 7

Parameters
  • major -- RHEL major number. Accepts str, int or float (as major.minor)

  • minor -- RHEL minor number. Optional and accepts str or int

For example, to construct a redhat-release for:

RHEL4U9:  redhat_release('4.9') or (4.9) or (4, 9)
RHEL5 GA: redhat_release('5')   or (5.0) or (5, 0) or (5)
RHEL6.6:  redhat_release('6.6') or (6.6) or (6, 6)
RHEL7.1:  redhat_release('7.1') or (7.1) or (7, 1)

Limitation with float args: (x.10) will be parsed as minor = 1

insights.tests.run_input_data(component, input_data)[source]
insights.tests.run_test(component, input_data, expected=None)[source]

insights.tools

The cat module allows you to execute an insights datasource and write its output to stdout. A string representation of the datasource is written to stderr before the output.

>>> insights-cat hostname
CommandOutputProvider("/usr/bin/hostname -f")
alonzo

Pass -q if you want only the datasource information.

>>> insights-cat -q ethtool
CommandOutputProvider("/sbin/ethtool docker0")
CommandOutputProvider("/sbin/ethtool enp0s31f6")
CommandOutputProvider("/sbin/ethtool lo")
CommandOutputProvider("/sbin/ethtool tun0")
CommandOutputProvider("/sbin/ethtool virbr0")
CommandOutputProvider("/sbin/ethtool virbr0-nic")
CommandOutputProvider("/sbin/ethtool wlp3s0")
insights.tools.cat.configure(config)[source]
insights.tools.cat.configure_logging(debug)[source]
insights.tools.cat.create_broker(root=None)[source]
insights.tools.cat.dump_error(spec, broker)[source]
insights.tools.cat.dump_spec(value, quiet=False, no_header=False)[source]
insights.tools.cat.get_spec(fqdn)[source]
insights.tools.cat.load_plugins(raw)[source]
insights.tools.cat.main()[source]
insights.tools.cat.parse_args()[source]
insights.tools.cat.parse_plugins(raw)[source]
insights.tools.cat.run(spec, archive=None, quiet=False, no_header=False)[source]

The inspect module allows you to execute an insights component (parser, combiner, rule or datasource) dropping you into an ipython session where you can inspect the outcome.

>>> insights-inspect insights.parsers.hostname.Hostname
IPython Console Usage Info:
Enter 'Hostname.' and tab to get a list of properties
Example:
In [1]: Hostname.<property_name>
Out[1]: <property value>
To exit ipython enter 'exit' and hit enter or use 'CTL D'
Python 3.6.6 (default, Jul 19 2018, 14:25:17)
Type "copyright", "credits" or "license" for more information.
IPython 5.8.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.
In [1]: Hostname.fqdn
Out[1]: 'lhuett.usersys.redhat.com'"
>>> insights-inspect insights.combiners.hostname.hostname
IPython Console Usage Info:
Enter 'hostname.' and tab to get a list of properties
Example:
In [1]: hostname.<property_name>
Out[1]: <property value>
To exit ipython enter 'exit' and hit enter or use 'CTL D'
Python 3.6.6 (default, Jul 19 2018, 14:25:17)
Type "copyright", "credits" or "license" for more information.
IPython 5.8.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.
In [1]: hostname.fqdn
Out[1]: 'lhuett.usersys.redhat.com'
>>> insights-inspect insights.specs.Specs.hostname
IPython Console Usage Info:
Enter 'hostname.' and tab to get a list of properties
Example:
In [1]: hostname.<property_name>
Out[1]: <property value>
To exit ipython enter 'exit' and hit enter or use 'CTL D'
Python 3.6.6 (default, Jul 19 2018, 14:25:17)
Type "copyright", "credits" or "license" for more information.
IPython 5.8.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.
In [1]: hostname.cmd
Out[1]: '/usr/bin/hostname -f'
>>> insights-inspect examples.rules.bash_version.report
IPython Console Usage Info:
Enter 'report.' and tab to get a list of properties
Example:
In [1]: report.<property_name>
Out[1]: <property value>
To exit ipython enter 'exit' and hit enter or use 'CTL D'
Python 3.6.6 (default, Jul 19 2018, 14:25:17)
Type "copyright", "credits" or "license" for more information.
IPython 5.8.0 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.
In [1]: report.values()
Out[1]: dict_values([0:bash-4.2.46-31.el7, 'pass', 'BASH_VERSION'])
In [2]: broker.keys()
Out[2]: dict_keys([<class 'insights.core.context.HostArchiveContext'>,
<insights.core.spec_factory.glob_file object at 0x7f0303c93390>,
<insights.core.spec_factory.head object at 0x7f0303cabef0>,
insights.specs.Specs.installed_rpms,
<class 'insights.parsers.installed_rpms.InstalledRpms'>,
<function report at 0x7f0303c679d8>])
In [3]: import insights
In [4]: p = broker[insights.parsers.installed_rpms.InstalledRpms]
In [5]: a = p.get_max('bash')
In [6]: a.nevra
Out[5]: 'bash-0:4.2.46-31.el7.x86_64'
insights.tools.insights_inspect.configure(config)[source]
insights.tools.insights_inspect.configure_logging(debug)[source]
insights.tools.insights_inspect.create_broker(root=None)[source]
insights.tools.insights_inspect.dump_error(component, broker)[source]
insights.tools.insights_inspect.get_component(fqdn)[source]
insights.tools.insights_inspect.get_ipshell()[source]
insights.tools.insights_inspect.main()[source]
insights.tools.insights_inspect.parse_args()[source]
insights.tools.insights_inspect.run(component, archive=None)[source]

Allow users to interrogate components.

insights-info foo bar baz will search for all datasources that might handle foo, bar, or baz files or commands along with all components that could be activated if they were present and valid.

insights-info -i insights.specs.Specs.hosts will display dependency information about the hosts datasource.

insights-info -d insights.parsers.hosts.Hosts will display the pydoc information about the Hosts parser.

There are several other options to the script. insights-info -h for more info.

insights.tools.query.apply_configuration(path)[source]
insights.tools.query.create_broker(components)[source]
insights.tools.query.dry_run(graph=defaultdict(<class 'set'>, {insights.specs.Openshift.cluster_operators: set(), insights.specs.Openshift.crds: set(), insights.specs.Openshift.crs: set(), insights.specs.Openshift.machine_configs: set(), insights.specs.Openshift.machines: set(), insights.specs.Openshift.machine_id: set(), insights.specs.Openshift.namespaces: set(), insights.specs.Openshift.nodes: set(), insights.specs.Openshift.pods: set(), insights.specs.Openshift.pvcs: set(), insights.specs.Openshift.storage_classes: set(), insights.specs.Specs.amq_broker: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.auditctl_status: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.auditd_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.audit_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.autofs_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.avc_hash_stats: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.avc_cache_threshold: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.aws_instance_id_doc: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.aws_instance_id_pkcs7: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.aws_instance_type: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.azure_instance_type: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.bios_uuid: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.blkid: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.bond: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.bond_dynamic_lb: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.boot_loader_entries: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.branch_info: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.brctl_show: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.candlepin_error_log: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_of object>}, insights.specs.Specs.candlepin_log: {<insights.core.spec_factory.first_of object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cdc_wdm: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.checkin_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.catalina_out: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.catalina_server_log: {<insights.core.spec_factory.foreach_collect object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.cciss: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ceilometer_central_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ceilometer_collector_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.ceilometer_compute_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.ceilometer_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.ceph_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.ceph_config_show: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ceph_df_detail: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ceph_health_detail: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ceph_insights: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ceph_log: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ceph_osd_df: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.ceph_osd_dump: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.ceph_osd_ec_profile_get: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ceph_osd_ec_profile_ls: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ceph_osd_log: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ceph_osd_tree: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ceph_osd_tree_text: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ceph_report: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ceph_s: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ceph_v: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.certificates_enddate: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.cgroups: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.chkconfig: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.chrony_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.chronyc_sources: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cib_xml: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cinder_api_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.cinder_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.cinder_volume_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cloud_init_custom_network: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cloud_init_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cluster_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cmdline: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cobbler_modules_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.cobbler_settings: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.corosync: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.corosync_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpe: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpu_cores: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.cpu_siblings: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.cpu_smt_active: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpu_smt_control: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpu_vulns: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.cpu_vulns_meltdown: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpu_vulns_spectre_v1: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpu_vulns_spectre_v2: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpu_vulns_spec_store_bypass: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpuinfo_max_freq: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpuinfo: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpupower_frequency_info: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.cpuset_cpus: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.crypto_policies_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.crypto_policies_state_current: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.crypto_policies_opensshserver: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.crypto_policies_bind: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.crt: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.current_clocksource: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.date_iso: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.date: {<insights.core.spec_factory.first_of object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.date_utc: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.db2licm_l: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.dcbtool_gc_dcb: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.df__alP: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.df__al: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.df__li: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dig_dnssec: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.dig_edns: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.dig_noedns: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.dig: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.dirsrv: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dirsrv_access: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.dirsrv_errors: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.display_java: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.display_name: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dmesg: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.dmesg_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dmidecode: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dmsetup_info: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dnf_modules: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.dnf_module_list: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dnf_module_info: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.command_with_args object>}, insights.specs.Specs.dnsmasq_config: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.docker_container_inspect: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.docker_host_machine_id: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.docker_image_inspect: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.docker_info: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.docker_list_containers: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.docker_list_images: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.docker_network: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.docker_storage: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.docker_storage_setup: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.docker_sysconfig: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.dumpe2fs_h: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.engine_config_all: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.engine_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.etc_journald_conf_d: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.etc_journald_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.etc_machine_id: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.etcd_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ethernet_interfaces: {<insights.core.spec_factory.listdir object>}, insights.specs.Specs.ethtool_a: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ethtool_c: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ethtool_g: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ethtool_i: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ethtool_k: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ethtool: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ethtool_S: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ethtool_T: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.exim_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.facter: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.fc_match: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.fcoeadm_i: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.fdisk_l: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.fdisk_l_sos: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.findmnt_lo_propagation: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.firewalld_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.foreman_production_log: {<insights.core.spec_factory.first_of object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.foreman_proxy_conf: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_of object>}, insights.specs.Specs.foreman_proxy_log: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_of object>}, insights.specs.Specs.foreman_satellite_log: {<insights.core.spec_factory.first_of object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.foreman_ssl_access_ssl_log: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.foreman_rake_db_migrate_status: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.foreman_tasks_config: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.freeipa_healthcheck_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.fstab: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.galera_cnf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.getcert_list: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.getconf_page_size: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.getenforce: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.getsebool: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.glance_api_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.glance_api_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.glance_cache_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.glance_registry_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.gluster_v_info: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.gluster_v_status: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.gluster_peer_status: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.gnocchi_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.gnocchi_metricd_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.grub_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.grub_config_perms: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.grub_efi_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.grub1_config_perms: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.grub2_cfg: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.grub2_efi_cfg: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.grubby_default_index: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.grubby_default_kernel: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.hammer_ping: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.hammer_task_list: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.satellite_enabled_features: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.haproxy_cfg: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.heat_api_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.heat_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.heat_crontab: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.heat_crontab_container: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.heat_engine_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.hostname: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.hostname_default: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.hostname_short: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.hosts: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.hponcfg_g: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.httpd_access_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.httpd_conf: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.httpd_conf_sos: set(), insights.specs.Specs.httpd_conf_scl_httpd24: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.httpd_conf_scl_jbcs_httpd24: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.httpd_error_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.httpd24_httpd_error_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.jbcs_httpd24_httpd_error_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.httpd_limits: {<insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.httpd_M: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.httpd_on_nfs: {<function DefaultSpecs.httpd_on_nfs>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.httpd_pid: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.httpd_ssl_access_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.httpd_ssl_error_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.httpd_V: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.virt_uuid_facts: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ifcfg: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ifcfg_static_route: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ifconfig: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.imagemagick_policy: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.init_ora: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.initscript: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.init_process_cgroup: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.installed_rpms: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.head object>, <insights.core.spec_factory.first_of object>}, insights.specs.Specs.interrupts: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ip6tables_permanent: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ip6tables: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ip_addr: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_of object>}, insights.specs.Specs.ip_addresses: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ipaupgrade_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ipcs_m: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ipcs_m_p: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ipcs_s: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ipcs_s_i: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ip_netns_exec_namespace_lsof: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ip_route_show_table_all: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ip_s_link: {<insights.core.spec_factory.first_of object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.iptables_permanent: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.iptables: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ipv4_neigh: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ipv6_neigh: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ip_neigh_show: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.ironic_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.ironic_inspector_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.iscsiadm_m_session: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.jboss_domain_server_log: {<insights.core.spec_factory.foreach_collect object>, <insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.jboss_standalone_server_log: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.jboss_standalone_main_config: {<insights.core.spec_factory.foreach_collect object>, <insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.jboss_version: {<insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.journal_since_boot: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.katello_service_status: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.kdump_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.kerberos_kdc_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.kernel_config: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.kexec_crash_loaded: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.kexec_crash_size: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.keystone_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.keystone_crontab: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.keystone_crontab_container: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.keystone_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.kpatch_list: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.kpatch_patch_files: {<insights.core.spec_factory.command_with_args object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.krb5: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ksmstate: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.kubepods_cpu_quota: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.lastupload: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.libkeyutils_objdumps: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.libkeyutils: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.libvirtd_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.libvirtd_qemu_log: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.limits_conf: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.locale: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.localtime: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.logrotate_conf: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.lpstat_p: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_boot: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_dev: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_disk: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_docker_volumes: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_edac_mc: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_etc: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_lib_firmware: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_ocp_cni_openshift_sdn: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_origin_local_volumes_pods: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_osroot: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_run_systemd_generator: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_R_var_lib_nova_instances: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_sys_firmware: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_usr_lib64: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_usr_sbin: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_var_lib_mongodb: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_var_lib_nova_instances: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_var_log: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_var_opt_mssql: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_var_opt_mssql_log: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_var_run: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ls_var_spool_clientmq: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_var_spool_postfix_maildrop: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_var_tmp: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ls_var_www: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lsblk: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lsblk_pairs: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lscpu: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lsinitrd: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.lsinitrd_lvm_conf: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.lsmod: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lsof: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lspci: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_of object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lssap: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lsscsi: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.lvdisplay: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.lvm_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lvs_noheadings: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.lvs_noheadings_all: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.lvs: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.mac_addresses: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.machine_id: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.manila_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.mariadb_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.max_uid: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.md5chk_files: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.mdstat: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.meminfo: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.messages: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.metadata_json: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.mistral_executor_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.mlx4_port: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.modinfo_i40e: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.modinfo_igb: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.modinfo_ixgbe: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.modinfo_veth: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.modinfo_vmxnet3: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.modinfo: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.modinfo_all: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.command_with_args object>}, insights.specs.Specs.modprobe: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.module: set(), insights.specs.Specs.mongod_conf: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.mount: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.mounts: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.mssql_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.multicast_querier: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.multipath_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.multipath_conf_initramfs: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.multipath__v4__ll: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.mysqladmin_status: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.mysqladmin_vars: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.mysql_log: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.mysqld_limits: {<insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.named_checkconf_p: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.namespace: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.netconsole: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.netstat_agn: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_of object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.netstat_i: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.netstat: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.netstat_s: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.networkmanager_dispatcher_d: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.neutron_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_dhcp_agent_ini: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_l3_agent_ini: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_l3_agent_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.neutron_metadata_agent_ini: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_metadata_agent_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_ml2_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_ovs_agent_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_plugin_ini: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.neutron_server_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.nfnetlink_queue: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.nfs_exports_d: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.nfs_exports: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.nginx_conf: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.nmcli_conn_show: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.nmcli_dev_show: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.nmcli_dev_show_sos: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.nova_api_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.nova_compute_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.nova_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.nova_crontab: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.nova_crontab_container: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.nova_uid: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.nova_migration_uid: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.nscd_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.nsswitch_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ntp_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ntpq_leap: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ntpq_pn: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ntptime: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.numa_cpus: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.numeric_user_group_name: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.nvme_core_io_timeout: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_bc: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_build: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_clusterrole_with_config: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.oc_get_clusterrolebinding_with_config: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.oc_get_dc: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.oc_get_egressnetworkpolicy: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_endpoints: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_event: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_node: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_pod: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_project: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.oc_get_pvc: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.oc_get_pv: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.oc_get_rc: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_rolebinding: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_role: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_route: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.oc_get_service: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.oc_get_configmap: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.odbc_ini: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.odbcinst_ini: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.openvswitch_other_config: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.core.spec_factory.RegistryPoint: set(), insights.specs.Specs.openshift_certificates: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.openshift_fluentd_environ: {<insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.openshift_hosts: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.openshift_router_environ: {<insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.openvswitch_daemon_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.openvswitch_server_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.osa_dispatcher_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.ose_master_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ose_node_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.os_release: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ovirt_engine_boot_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ovirt_engine_confd: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ovirt_engine_console_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ovirt_engine_server_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ovirt_engine_ui_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ovs_appctl_fdb_show_bridge: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ovs_ofctl_dump_flows: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.ovs_vsctl_list_bridge: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ovs_vsctl_show: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ovs_vswitchd_limits: {<insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.pacemaker_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.package_provides_java: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.package_provides_httpd: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.pam_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.parted__l: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.partitions: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.passenger_status: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.password_auth: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.pci_rport_target_disk_paths: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.pcs_config: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.pcs_quorum_status: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.pcs_status: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.pluginconf_d: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.podman_container_inspect: set(), insights.specs.Specs.podman_image_inspect: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.podman_list_containers: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.podman_list_images: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.postgresql_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.postgresql_log: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.prev_uploader_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.proc_netstat: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.proc_slabinfo: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.proc_snmp_ipv4: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.proc_snmp_ipv6: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.proc_stat: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ps_alxwww: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ps_aux: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ps_auxcww: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.ps_auxww: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ps_ef: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ps_eo: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.pulp_worker_defaults: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.puppet_ssl_cert_ca_pem: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.puppetserver_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.pvs_noheadings: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.pvs_noheadings_all: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.pvs: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.qemu_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.qemu_xml: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.qpid_stat_g: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.qpid_stat_q: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.qpid_stat_u: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.qpidd_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rabbitmq_env: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rabbitmq_logs: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.rabbitmq_policies: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rabbitmq_queues: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.rabbitmq_report: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rabbitmq_report_of_containers: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.rabbitmq_startup_err: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rabbitmq_startup_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rabbitmq_users: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.rc_local: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rdma_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.readlink_e_etc_mtab: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.redhat_release: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.resolv_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhev_data_center: {<function DefaultSpecs.rhev_data_center>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhv_log_collector_analyzer: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhn_charsets: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.rhn_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.rhn_entitlement_cert_xml: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.rhn_hibernate_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.rhn_schema_stats: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.rhn_schema_version: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhn_search_daemon_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.rhn_server_satellite_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhn_server_xmlrpc_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.rhn_taskomatic_daemon_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.rhosp_release: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhsm_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhsm_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rhsm_releasever: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rndc_status: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.root_crontab: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.route: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.rpm_V_packages: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.rsyslog_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.running_java: set(), insights.specs.Specs.samba: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sap_hdb_version: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.sap_host_profile: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sapcontrol_getsystemupdatelist: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.saphostctl_getcimobject_sapinstance: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.saphostexec_status: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.saphostexec_version: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.sat5_insights_properties: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.satellite_mongodb_storage_engine: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.satellite_version_rb: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.satellite_custom_hiera: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.scheduler: {<insights.core.spec_factory.foreach_collect object>}, insights.specs.Specs.scsi: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sctp_asc: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sctp_eps: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sctp_snmp: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.scsi_eh_deadline: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.scsi_fwver: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.sealert: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.secure: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.selinux_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.semid: {<function DefaultSpecs.semid>}, insights.specs.Specs.sestatus: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.setup_named_chroot: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.smartctl: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.smartpdc_settings: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.smbstatus_p: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.smbstatus_S: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sockstat: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.softnet_stat: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.software_collections_list: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.spfile_ora: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.ssh_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ssh_foreman_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ssh_foreman_proxy_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sshd_config_perms: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sshd_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.ss: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.sssd_config: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sssd_logs: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.samba_logs: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.subscription_manager_id: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.subscription_manager_list_consumed: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.subscription_manager_list_installed: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.subscription_manager_installed_product_ids: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.subscription_manager_release_show: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.swift_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.swift_log: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.swift_object_expirer_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.swift_proxy_server_conf: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.sysconfig_chronyd: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_httpd: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_irqbalance: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_kdump: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_libvirt_guests: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_memcached: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.sysconfig_mongod: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.sysconfig_network: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_ntpd: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_prelink: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_sshd: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysconfig_virt_who: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysctl_conf_initramfs: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.sysctl_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.sysctl: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemctl_cat_rpcbind_socket: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_cinder_volume: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_httpd: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_nginx: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemctl_list_unit_files: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemctl_list_units: {<insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_mariadb: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_pulp_workers: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_pulp_resmg: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_pulp_celerybeat: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_qpidd: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_qdrouterd: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemctl_show_all_services: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemctl_show_target: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemctl_smartpdc: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.systemd_docker: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.systemd_logind_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemd_openshift_node: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_file object>}, insights.specs.Specs.systemd_system_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemd_system_origin_accounting: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.systemid: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.systool_b_scsi_v: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.tags: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.teamdctl_config_dump: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.teamdctl_state_dump: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.thp_enabled: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.thp_use_zero_page: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.tmpfilesd: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.tomcat_server_xml: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.tomcat_vdc_fallback: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.tomcat_vdc_targeted: {<insights.core.spec_factory.foreach_execute object>}, insights.specs.Specs.tomcat_web_xml: {<insights.core.spec_factory.first_of object>}, insights.specs.Specs.tuned_adm: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.tuned_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.udev_persistent_net_rules: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.udev_fc_wwpn_id_rules: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.uname: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.up2date: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.up2date_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.uploader_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.uptime: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.first_of object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.usr_journald_conf_d: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.var_qemu_xml: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.vdsm_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vdsm_id: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vdsm_import_log: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.vdsm_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vdsm_logger_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.version_info: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vdo_status: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.vgdisplay: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.vgs_noheadings: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.vgs_noheadings_all: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.vgs: {<insights.core.spec_factory.first_file object>}, insights.specs.Specs.virsh_list_all: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.virt_what: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.virt_who_conf: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.virtlogd_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vma_ra_enabled: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vmcore_dmesg: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.vmware_tools_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vsftpd_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.vsftpd: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.woopsie: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.x86_pti_enabled: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.x86_ibpb_enabled: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.x86_ibrs_enabled: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.x86_retp_enabled: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.xfs_info: {<insights.core.spec_factory.foreach_execute object>, <insights.core.spec_factory.glob_file object>}, insights.specs.Specs.xinetd_conf: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.yum_conf: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.yum_list_installed: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_file object>}, insights.specs.Specs.yum_log: {<insights.core.spec_factory.simple_file object>}, insights.specs.Specs.yum_repolist: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.first_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.yum_repos_d: {<insights.core.spec_factory.glob_file object>}, insights.specs.Specs.zdump_v: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_command object>}, insights.specs.Specs.zipl_conf: {<insights.core.spec_factory.simple_file object>}, <class 'insights.parsers.mount.Mount'>: {insights.specs.Specs.mount}, <class 'insights.parsers.mount.ProcMounts'>: {insights.specs.Specs.mounts}, <class 'insights.parsers.dnf_module.DnfModuleList'>: {insights.specs.Specs.dnf_module_list}, <class 'insights.parsers.dnf_module.DnfModuleInfo'>: {insights.specs.Specs.dnf_module_info}, <class 'insights.parsers.uname.Uname'>: {insights.specs.Specs.uname}, <class 'insights.parsers.installed_rpms.InstalledRpms'>: {insights.specs.Specs.installed_rpms}, <class 'insights.parsers.dmidecode.DMIDecode'>: {insights.specs.Specs.dmidecode}, <class 'insights.parsers.yum.YumRepoList'>: {insights.specs.Specs.yum_repolist}, <class 'insights.combiners.cloud_provider.CloudProvider'>: {<class 'insights.parsers.installed_rpms.InstalledRpms'>, <class 'insights.parsers.yum.YumRepoList'>, <class 'insights.parsers.dmidecode.DMIDecode'>}, <class 'insights.parsers.satellite_version.Satellite6Version'>: {insights.specs.Specs.satellite_version_rb}, <class 'insights.combiners.satellite_version.SatelliteVersion'>: {<class 'insights.parsers.installed_rpms.InstalledRpms'>, <class 'insights.parsers.satellite_version.Satellite6Version'>}, <class 'insights.combiners.satellite_version.CapsuleVersion'>: {<class 'insights.parsers.installed_rpms.InstalledRpms'>}, <class 'insights.parsers.redhat_release.RedhatRelease'>: {insights.specs.Specs.redhat_release}, <function redhat_release>: {<class 'insights.parsers.uname.Uname'>, <class 'insights.parsers.redhat_release.RedhatRelease'>}, <class 'insights.combiners.redhat_release.RedHatRelease'>: {<class 'insights.parsers.uname.Uname'>, <class 'insights.parsers.redhat_release.RedhatRelease'>}, <class 'insights.components.rhel_version.IsRhel6'>: {<class 'insights.combiners.redhat_release.RedHatRelease'>}, <class 'insights.components.rhel_version.IsRhel7'>: {<class 'insights.combiners.redhat_release.RedHatRelease'>}, <class 'insights.components.rhel_version.IsRhel8'>: {<class 'insights.combiners.redhat_release.RedHatRelease'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <function DefaultSpecs.is_aws>: {<class 'insights.combiners.cloud_provider.CloudProvider'>}, <insights.core.spec_factory.simple_command object>: {<function DefaultSpecs.is_aws>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<function DefaultSpecs.is_aws>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<function DefaultSpecs.is_aws>, <class 'insights.core.context.HostContext'>}, <function DefaultSpecs.is_azure>: {<class 'insights.combiners.cloud_provider.CloudProvider'>}, <insights.core.spec_factory.simple_command object>: {<function DefaultSpecs.is_azure>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.tomcat_base>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_collect object>: {<class 'insights.core.context.HostContext'>, <function DefaultSpecs.tomcat_base>}, <insights.core.spec_factory.foreach_collect object>: {<class 'insights.core.context.HostContext'>, <function DefaultSpecs.tomcat_base>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.listdir object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.is_ceph_monitor>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.simple_command object>: {<function DefaultSpecs.is_ceph_monitor>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<class 'insights.core.context.HostContext'>, <insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.components.rhel_version.IsRhel8'>, <class 'insights.core.context.HostContext'>}, <function DefaultSpecs.dnf_module_names>: {<class 'insights.parsers.dnf_module.DnfModuleList'>}, <insights.core.spec_factory.command_with_args object>: {<function DefaultSpecs.dnf_module_names>, <class 'insights.components.rhel_version.IsRhel8'>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.docker_image_ids>: {<insights.core.spec_factory.simple_command object>}, <function DefaultSpecs.docker_container_ids>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.docker_image_ids>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.docker_container_ids>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <function DefaultSpecs.dumpdev>: {<class 'insights.parsers.mount.ProcMounts'>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.dumpdev>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.listdir object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_collect object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <function DefaultSpecs.is_sat>: {<class 'insights.combiners.satellite_version.SatelliteVersion'>}, <insights.core.spec_factory.simple_command object>: {<function DefaultSpecs.is_sat>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <function DefaultSpecs.httpd_cmd>: {<insights.core.spec_factory.simple_command object>}, <function DefaultSpecs.httpd_on_nfs>: {<class 'insights.parsers.mount.Mount'>}, <insights.core.spec_factory.foreach_execute object>: {<class 'insights.core.context.HostContext'>, <function DefaultSpecs.httpd_cmd>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.foreach_execute object>: {<class 'insights.core.context.HostContext'>, <function DefaultSpecs.httpd_cmd>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.semid>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.semid>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <function DefaultSpecs.kpatch_patches_running_kernel_dir>: {<class 'insights.parsers.uname.Uname'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.command_with_args object>: {<class 'insights.core.context.HostContext'>, <function DefaultSpecs.kpatch_patches_running_kernel_dir>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {'/usr/lib/libsoftokn3.so', '/usr/lib/libfreeblpriv3.so', <class 'insights.core.context.HostContext'>, '/usr/lib64/libsoftokn3.so', '/etc/pki/product/69.pem', '/usr/lib64/libfreeblpriv3.so', '/etc/pki/product-default/69.pem'}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.lsmod_only_names>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.lsmod_only_names>, <class 'insights.core.context.HostContext'>}, <function DefaultSpecs.lsmod_all_names>: {<function DefaultSpecs.lsmod_only_names>}, <insights.core.spec_factory.command_with_args object>: {<class 'insights.core.context.HostContext'>, <function DefaultSpecs.lsmod_all_names>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_collect object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.OpenShiftContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_collect object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_collect object>: {<class 'insights.core.context.HostContext'>, <insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_collect object>: {<insights.core.spec_factory.simple_command object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.package_and_java>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.package_and_java>, <class 'insights.core.context.HostContext'>}, <function DefaultSpecs.package_and_httpd>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.package_and_httpd>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <function DefaultSpecs.rhev_data_center>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.sap_sid_nr>: {<insights.core.spec_factory.simple_command object>, <insights.core.spec_factory.simple_command object>}, <function DefaultSpecs.sap_sid>: {<function DefaultSpecs.sap_sid_nr>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.sap_sid>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.sap_sid_nr>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.listdir object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.foreach_collect object>: {<class 'insights.core.context.HostContext'>, <insights.core.spec_factory.listdir object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <function DefaultSpecs.block>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.block>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.listdir object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.foreach_execute object>: {<insights.core.spec_factory.listdir object>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, <insights.core.spec_factory.foreach_collect object>: {<class 'insights.core.context.HostContext'>, <function DefaultSpecs.tomcat_base>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.foreach_collect object>}, <function DefaultSpecs.tomcat_home_base>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.tomcat_home_base>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <function DefaultSpecs.xfs_mounts>: {<class 'insights.parsers.mount.Mount'>}, <insights.core.spec_factory.foreach_execute object>: {<function DefaultSpecs.xfs_mounts>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_command object>: {<class 'insights.core.context.HostContext'>}, <function DefaultSpecs.docker_installed_rpms>: {<class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_of object>: {<function DefaultSpecs.docker_installed_rpms>, <insights.core.spec_factory.simple_command object>}, <function DefaultSpecs.jboss_home>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_collect object>: {<function DefaultSpecs.jboss_home>, <class 'insights.core.context.HostContext'>}, <function DefaultSpecs.jboss_domain_server_log_dir>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_collect object>: {<function DefaultSpecs.jboss_domain_server_log_dir>, <class 'insights.core.context.HostContext'>}, <function DefaultSpecs.jboss_standalone_main_config_files>: {<insights.core.spec_factory.simple_command object>}, <insights.core.spec_factory.foreach_collect object>: {<function DefaultSpecs.jboss_standalone_main_config_files>, <class 'insights.core.context.HostContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.head object>: {<insights.core.spec_factory.glob_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.ClusterArchiveContext'>, <class 'insights.core.context.SosArchiveContext'>, <class 'insights.core.context.MustGatherContext'>, <class 'insights.core.context.HostArchiveContext'>, <class 'insights.core.context.InsightsOperatorContext'>, <class 'insights.core.context.SerializedArchiveContext'>, <class 'insights.core.context.JDRContext'>, <class 'insights.core.context.HostContext'>, <class 'insights.core.context.JBossContext'>, <class 'insights.core.context.DockerImageContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.HostArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.glob_file object>, <insights.core.spec_factory.glob_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_of object>: {<insights.core.spec_factory.simple_file object>, <insights.core.spec_factory.simple_file object>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.first_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.simple_file object>: {<class 'insights.core.context.SosArchiveContext'>}, <insights.core.spec_factory.glob_file object>: {<class 'insights.core.context.JDRContext'>}, <function JDRSpecs.jboss_standalone_conf_file>: {<insights.core.spec_factory.glob_file object>}, <insights.core.spec_factory.foreach_collect object>: {<function JDRSpecs.jboss_standalone_conf_file>, <class 'insights.core.context.JDRContext'>}, <insights.core.spec_factory.listdir object>: {<class 'insights.core.context.JDRContext'>}, <insights.core.spec_factory.foreach_collect object>: {<class 'insights.core.context.JDRContext'>, <insights.core.spec_factory.listdir object>}, <class 'insights.parsers.alternatives.JavaAlternatives'>: {insights.specs.Specs.display_java}, <class 'insights.parsers.amq_broker.AMQBroker'>: {insights.specs.Specs.amq_broker}, <class 'insights.parsers.audit_log.AuditLog'>: {insights.specs.Specs.audit_log}, <class 'insights.parsers.auditctl_status.AuditctlStatus'>: {insights.specs.Specs.auditctl_status}, <class 'insights.parsers.auditd_conf.AuditdConf'>: {insights.specs.Specs.auditd_conf}, <class 'insights.parsers.autofs_conf.AutoFSConf'>: {insights.specs.Specs.autofs_conf}, <class 'insights.parsers.avc_cache_threshold.AvcCacheThreshold'>: {insights.specs.Specs.avc_cache_threshold}, <class 'insights.parsers.avc_hash_stats.AvcHashStats'>: {insights.specs.Specs.avc_hash_stats}, <class 'insights.parsers.aws_instance_id.AWSInstanceIdDoc'>: {insights.specs.Specs.aws_instance_id_doc}, <class 'insights.parsers.aws_instance_id.AWSInstanceIdPkcs7'>: {insights.specs.Specs.aws_instance_id_pkcs7}, <class 'insights.parsers.aws_instance_type.AWSInstanceType'>: {insights.specs.Specs.aws_instance_type}, <class 'insights.parsers.azure_instance_type.AzureInstanceType'>: {insights.specs.Specs.azure_instance_type}, <class 'insights.parsers.blkid.BlockIDInfo'>: {insights.specs.Specs.blkid}, <class 'insights.parsers.bond.Bond'>: {insights.specs.Specs.bond}, <class 'insights.parsers.bond_dynamic_lb.BondDynamicLB'>: {insights.specs.Specs.bond_dynamic_lb}, <class 'insights.parsers.branch_info.BranchInfo'>: {insights.specs.Specs.branch_info}, <class 'insights.parsers.brctl_show.BrctlShow'>: {insights.specs.Specs.brctl_show}, <class 'insights.parsers.catalina_log.CatalinaServerLog'>: {insights.specs.Specs.catalina_server_log}, <class 'insights.parsers.catalina_log.CatalinaOut'>: {insights.specs.Specs.catalina_out}, <class 'insights.parsers.cciss.Cciss'>: {insights.specs.Specs.cciss}, <class 'insights.parsers.ceilometer_conf.CeilometerConf'>: {insights.specs.Specs.ceilometer_conf}, <class 'insights.parsers.ceilometer_log.CeilometerCentralLog'>: {insights.specs.Specs.ceilometer_central_log}, <class 'insights.parsers.ceilometer_log.CeilometerCollectorLog'>: {insights.specs.Specs.ceilometer_collector_log}, <class 'insights.parsers.ceilometer_log.CeilometerComputeLog'>: {insights.specs.Specs.ceilometer_compute_log}, <class 'insights.parsers.ceph_cmd_json_parsing.CephOsdDump'>: {insights.specs.Specs.ceph_osd_dump}, <class 'insights.parsers.ceph_cmd_json_parsing.CephOsdDf'>: {insights.specs.Specs.ceph_osd_df}, <class 'insights.parsers.ceph_cmd_json_parsing.CephS'>: {insights.specs.Specs.ceph_s}, <class 'insights.parsers.ceph_cmd_json_parsing.CephDfDetail'>: {insights.specs.Specs.ceph_df_detail}, <class 'insights.parsers.ceph_cmd_json_parsing.CephHealthDetail'>: {insights.specs.Specs.ceph_health_detail}, <class 'insights.parsers.ceph_cmd_json_parsing.CephECProfileGet'>: {insights.specs.Specs.ceph_osd_ec_profile_get}, <class 'insights.parsers.ceph_cmd_json_parsing.CephCfgInfo'>: {insights.specs.Specs.ceph_config_show}, <class 'insights.parsers.ceph_cmd_json_parsing.CephOsdTree'>: {insights.specs.Specs.ceph_osd_tree}, <class 'insights.parsers.ceph_cmd_json_parsing.CephReport'>: {insights.specs.Specs.ceph_report}, <class 'insights.parsers.ceph_conf.CephConf'>: {insights.specs.Specs.ceph_conf}, <class 'insights.parsers.ceph_insights.CephInsights'>: {insights.specs.Specs.ceph_insights}, <class 'insights.parsers.ceph_log.CephLog'>: {insights.specs.Specs.ceph_log}, <class 'insights.parsers.ceph_osd_log.CephOsdLog'>: {insights.specs.Specs.ceph_osd_log}, <class 'insights.parsers.ceph_osd_tree_text.CephOsdTreeText'>: {insights.specs.Specs.ceph_osd_tree_text}, <class 'insights.parsers.ceph_version.CephVersion'>: {insights.specs.Specs.ceph_v}, <class 'insights.parsers.certificates_enddate.CertificatesEnddate'>: {insights.specs.Specs.certificates_enddate}, <class 'insights.parsers.cgroups.Cgroups'>: {insights.specs.Specs.cgroups}, <class 'insights.parsers.checkin_conf.CheckinConf'>: {insights.specs.Specs.checkin_conf}, <class 'insights.parsers.chkconfig.ChkConfig'>: {insights.specs.Specs.chkconfig}, <class 'insights.parsers.cib.CIB'>: {insights.specs.Specs.cib_xml}, <class 'insights.parsers.cinder_conf.CinderConf'>: {insights.specs.Specs.cinder_conf}, <class 'insights.parsers.cinder_log.CinderApiLog'>: {insights.specs.Specs.cinder_api_log}, <class 'insights.parsers.cinder_log.CinderVolumeLog'>: {insights.specs.Specs.cinder_volume_log}, <class 'insights.parsers.cloud_init_custom_network.CloudInitCustomNetworking'>: {insights.specs.Specs.cloud_init_custom_network}, <class 'insights.parsers.cloud_init_log.CloudInitLog'>: {insights.specs.Specs.cloud_init_log}, <class 'insights.parsers.cluster_conf.ClusterConf'>: {insights.specs.Specs.cluster_conf}, <class 'insights.parsers.cmdline.CmdLine'>: {insights.specs.Specs.cmdline}, <class 'insights.parsers.cobbler_modules_conf.CobblerModulesConf'>: {insights.specs.Specs.cobbler_modules_conf}, <class 'insights.parsers.cobbler_settings.CobblerSettings'>: {insights.specs.Specs.cobbler_settings}, <class 'insights.parsers.corosync.CoroSyncConfig'>: {insights.specs.Specs.corosync}, <class 'insights.parsers.corosync.CorosyncConf'>: {insights.specs.Specs.corosync_conf}, <class 'insights.parsers.cpu_vulns.CpuVulns'>: {insights.specs.Specs.cpu_vulns}, <class 'insights.parsers.cpuinfo.CpuInfo'>: {insights.specs.Specs.cpuinfo}, <class 'insights.parsers.cpupower_frequency_info.CpupowerFrequencyInfo'>: {insights.specs.Specs.cpupower_frequency_info}, <class 'insights.parsers.cpuset_cpus.CpusetCpus'>: {insights.specs.Specs.cpuset_cpus}, <class 'insights.parsers.crontab.HeatCrontab'>: {insights.specs.Specs.heat_crontab}, <class 'insights.parsers.crontab.KeystoneCrontab'>: {insights.specs.Specs.keystone_crontab}, <class 'insights.parsers.crontab.NovaCrontab'>: {insights.specs.Specs.nova_crontab}, <class 'insights.parsers.crontab.RootCrontab'>: {insights.specs.Specs.root_crontab}, <class 'insights.parsers.crypto_policies.CryptoPoliciesConfig'>: {insights.specs.Specs.crypto_policies_config}, <class 'insights.parsers.crypto_policies.CryptoPoliciesStateCurrent'>: {insights.specs.Specs.crypto_policies_state_current}, <class 'insights.parsers.crypto_policies.CryptoPoliciesOpensshserver'>: {insights.specs.Specs.crypto_policies_opensshserver}, <class 'insights.parsers.crypto_policies.CryptoPoliciesBind'>: {insights.specs.Specs.crypto_policies_bind}, <class 'insights.parsers.current_clocksource.CurrentClockSource'>: {insights.specs.Specs.current_clocksource}, <class 'insights.parsers.date.Date'>: {insights.specs.Specs.date}, <class 'insights.parsers.date.DateUTC'>: {insights.specs.Specs.date_utc}, <class 'insights.parsers.db2licm.DB2Info'>: {insights.specs.Specs.db2licm_l}, <class 'insights.parsers.dcbtool_gc_dcb.Dcbtool'>: {insights.specs.Specs.dcbtool_gc_dcb}, <class 'insights.parsers.df.DiskFree_LI'>: {insights.specs.Specs.df__li}, <class 'insights.parsers.df.DiskFree_ALP'>: {insights.specs.Specs.df__alP}, <class 'insights.parsers.df.DiskFree_AL'>: {insights.specs.Specs.df__al}, <class 'insights.parsers.dirsrv_logs.DirSrvAccessLog'>: {insights.specs.Specs.dirsrv_access}, <class 'insights.parsers.dirsrv_logs.DirSrvErrorsLog'>: {insights.specs.Specs.dirsrv_errors}, <class 'insights.parsers.dirsrv_sysconfig.DirsrvSysconfig'>: {insights.specs.Specs.dirsrv}, <class 'insights.parsers.dmesg.DmesgLineList'>: {insights.specs.Specs.dmesg}, <class 'insights.parsers.dmesg_log.DmesgLog'>: {insights.specs.Specs.dmesg_log}, <class 'insights.parsers.dmsetup.DmsetupInfo'>: {insights.specs.Specs.dmsetup_info}, <class 'insights.parsers.dnf_modules.DnfModules'>: {insights.specs.Specs.dnf_modules}, <class 'insights.parsers.dnsmasq_config.DnsmasqConf'>: {insights.specs.Specs.dnsmasq_config}, <function docker_host_machineid_parser>: {insights.specs.Specs.docker_host_machine_id}, <class 'insights.parsers.docker_inspect.DockerInspectImage'>: {insights.specs.Specs.docker_image_inspect}, <class 'insights.parsers.docker_inspect.DockerInspectContainer'>: {insights.specs.Specs.docker_container_inspect}, <class 'insights.parsers.docker_list.DockerListImages'>: {insights.specs.Specs.docker_list_images}, <class 'insights.parsers.docker_list.DockerListContainers'>: {insights.specs.Specs.docker_list_containers}, <class 'insights.parsers.docker_storage_setup.DockerStorageSetup'>: {insights.specs.Specs.docker_storage_setup}, <class 'insights.parsers.dockerinfo.DockerInfo'>: {insights.specs.Specs.docker_info}, <class 'insights.parsers.dumpe2fs_h.DumpE2fs'>: {insights.specs.Specs.dumpe2fs_h}, <class 'insights.parsers.engine_config.EngineConfigAll'>: {insights.specs.Specs.engine_config_all}, <class 'insights.parsers.engine_log.EngineLog'>: {insights.specs.Specs.engine_log}, <class 'insights.parsers.etcd_conf.EtcdConf'>: {insights.specs.Specs.etcd_conf}, <class 'insights.parsers.ethtool.Driver'>: {insights.specs.Specs.ethtool_i}, <class 'insights.parsers.ethtool.Features'>: {insights.specs.Specs.ethtool_k}, <class 'insights.parsers.ethtool.Pause'>: {insights.specs.Specs.ethtool_a}, <class 'insights.parsers.ethtool.CoalescingInfo'>: {insights.specs.Specs.ethtool_c}, <class 'insights.parsers.ethtool.Ring'>: {insights.specs.Specs.ethtool_g}, <class 'insights.parsers.ethtool.Statistics'>: {insights.specs.Specs.ethtool_S}, <class 'insights.parsers.ethtool.TimeStamp'>: {insights.specs.Specs.ethtool_T}, <class 'insights.parsers.ethtool.Ethtool'>: {insights.specs.Specs.ethtool}, <class 'insights.parsers.facter.Facter'>: {insights.specs.Specs.facter}, <class 'insights.parsers.fc_match.FCMatch'>: {insights.specs.Specs.fc_match}, <class 'insights.parsers.fcoeadm_i.FcoeadmI'>: {insights.specs.Specs.fcoeadm_i}, <class 'insights.parsers.findmnt.FindmntPropagation'>: {insights.specs.Specs.findmnt_lo_propagation}, <class 'insights.parsers.firewall_config.FirewallDConf'>: {insights.specs.Specs.firewalld_conf}, <class 'insights.parsers.foreman_log.ProxyLog'>: {insights.specs.Specs.foreman_proxy_log}, <class 'insights.parsers.foreman_log.SatelliteLog'>: {insights.specs.Specs.foreman_satellite_log}, <class 'insights.parsers.foreman_log.ProductionLog'>: {insights.specs.Specs.foreman_production_log}, <class 'insights.parsers.foreman_log.CandlepinLog'>: {insights.specs.Specs.candlepin_log}, <class 'insights.parsers.foreman_log.CandlepinErrorLog'>: {insights.specs.Specs.candlepin_error_log}, <class 'insights.parsers.foreman_log.ForemanSSLAccessLog'>: {insights.specs.Specs.foreman_ssl_access_ssl_log}, <class 'insights.parsers.foreman_proxy_conf.ForemanProxyConf'>: {insights.specs.Specs.foreman_proxy_conf}, <class 'insights.parsers.foreman_rake_db_migrate_status.Sat6DBMigrateStatus'>: {insights.specs.Specs.foreman_rake_db_migrate_status}, <class 'insights.parsers.foreman_tasks_config.ForemanTasksConfig'>: {insights.specs.Specs.foreman_tasks_config}, <class 'insights.parsers.freeipa_healthcheck_log.FreeIPAHealthCheckLog'>: {insights.specs.Specs.freeipa_healthcheck_log}, <class 'insights.parsers.fstab.FSTab'>: {insights.specs.Specs.fstab}, <class 'insights.parsers.galera_cnf.GaleraCnf'>: {insights.specs.Specs.galera_cnf}, <class 'insights.parsers.getcert_list.CertList'>: {insights.specs.Specs.getcert_list}, <class 'insights.parsers.getconf_pagesize.GetconfPageSize'>: {insights.specs.Specs.getconf_page_size}, <function getenforcevalue>: {insights.specs.Specs.getenforce}, <class 'insights.parsers.getsebool.Getsebool'>: {insights.specs.Specs.getsebool}, <class 'insights.parsers.glance_log.GlanceApiLog'>: {insights.specs.Specs.glance_api_log}, <class 'insights.parsers.gluster_peer_status.GlusterPeerStatus'>: {insights.specs.Specs.gluster_peer_status}, <class 'insights.parsers.gluster_vol.GlusterVolInfo'>: {insights.specs.Specs.gluster_v_info}, <class 'insights.parsers.gluster_vol.GlusterVolStatus'>: {insights.specs.Specs.gluster_v_status}, <class 'insights.parsers.gnocchi.GnocchiConf'>: {insights.specs.Specs.gnocchi_conf}, <class 'insights.parsers.gnocchi.GnocchiMetricdLog'>: {insights.specs.Specs.gnocchi_metricd_log}, <class 'insights.parsers.grub_conf.Grub1Config'>: {<class 'insights.components.rhel_version.IsRhel6'>, insights.specs.Specs.grub_conf, <class 'insights.components.rhel_version.IsRhel7'>}, <class 'insights.parsers.grub_conf.Grub1EFIConfig'>: {insights.specs.Specs.grub_efi_conf, <class 'insights.components.rhel_version.IsRhel6'>, <class 'insights.components.rhel_version.IsRhel7'>}, <class 'insights.parsers.grub_conf.Grub2Config'>: {<class 'insights.components.rhel_version.IsRhel6'>, insights.specs.Specs.grub2_cfg, <class 'insights.components.rhel_version.IsRhel7'>}, <class 'insights.parsers.grub_conf.Grub2EFIConfig'>: {insights.specs.Specs.grub2_efi_cfg, <class 'insights.components.rhel_version.IsRhel6'>, <class 'insights.components.rhel_version.IsRhel7'>}, <class 'insights.parsers.grub_conf.BootLoaderEntries'>: {<class 'insights.components.rhel_version.IsRhel8'>, insights.specs.Specs.boot_loader_entries}, <class 'insights.parsers.grubby.GrubbyDefaultIndex'>: {insights.specs.Specs.grubby_default_index}, <class 'insights.parsers.grubby.GrubbyDefaultKernel'>: {insights.specs.Specs.grubby_default_kernel}, <class 'insights.parsers.hammer_ping.HammerPing'>: {insights.specs.Specs.hammer_ping}, <class 'insights.parsers.hammer_task_list.HammerTaskList'>: {insights.specs.Specs.hammer_task_list}, <class 'insights.parsers.haproxy_cfg.HaproxyCfg'>: {insights.specs.Specs.haproxy_cfg}, <class 'insights.parsers.heat_conf.HeatConf'>: {insights.specs.Specs.heat_conf}, <class 'insights.parsers.heat_log.HeatApiLog'>: {insights.specs.Specs.heat_api_log}, <class 'insights.parsers.heat_log.HeatEngineLog'>: {insights.specs.Specs.heat_engine_log}, <class 'insights.parsers.host_vdsm_id.VDSMId'>: {insights.specs.Specs.vdsm_id}, <class 'insights.parsers.hostname.Hostname'>: {insights.specs.Specs.hostname}, <class 'insights.parsers.hostname.HostnameDefault'>: {insights.specs.Specs.hostname_default}, <class 'insights.parsers.hostname.HostnameShort'>: {insights.specs.Specs.hostname_short}, <class 'insights.parsers.hosts.Hosts'>: {insights.specs.Specs.hosts}, <class 'insights.parsers.hponcfg.HponConf'>: {insights.specs.Specs.hponcfg_g}, <class 'insights.parsers.httpd_M.HttpdM'>: {insights.specs.Specs.httpd_M}, <class 'insights.parsers.httpd_V.HttpdV'>: {insights.specs.Specs.httpd_V}, <class 'insights.parsers.httpd_conf.HttpdConf'>: {insights.specs.Specs.httpd_conf}, <class 'insights.parsers.httpd_log.HttpdSSLErrorLog'>: {insights.specs.Specs.httpd_ssl_error_log}, <class 'insights.parsers.httpd_log.HttpdErrorLog'>: {insights.specs.Specs.httpd_error_log}, <class 'insights.parsers.httpd_log.Httpd24HttpdErrorLog'>: {insights.specs.Specs.httpd24_httpd_error_log}, <class 'insights.parsers.httpd_log.JBCSHttpd24HttpdErrorLog'>: {insights.specs.Specs.jbcs_httpd24_httpd_error_log}, <class 'insights.parsers.httpd_log.HttpdSSLAccessLog'>: {insights.specs.Specs.httpd_ssl_access_log}, <class 'insights.parsers.httpd_log.HttpdAccessLog'>: {insights.specs.Specs.httpd_access_log}, <class 'insights.parsers.httpd_open_nfs.HttpdOnNFSFilesCount'>: {insights.specs.Specs.httpd_on_nfs}, <class 'insights.parsers.ifcfg.IfCFG'>: {insights.specs.Specs.ifcfg}, <class 'insights.parsers.init_process_cgroup.InitProcessCgroup'>: {insights.specs.Specs.init_process_cgroup}, <class 'insights.parsers.initscript.InitScript'>: {insights.specs.Specs.initscript}, <class 'insights.parsers.installed_product_ids.InstalledProductIDs'>: {insights.specs.Specs.subscription_manager_installed_product_ids}, <class 'insights.parsers.interrupts.Interrupts'>: {insights.specs.Specs.interrupts}, <class 'insights.parsers.ip.IpAddr'>: {insights.specs.Specs.ip_addr}, <class 'insights.parsers.ip.RouteDevices'>: {insights.specs.Specs.ip_route_show_table_all}, <class 'insights.parsers.ip.Ipv4Neigh'>: {insights.specs.Specs.ipv4_neigh}, <class 'insights.parsers.ip.Ipv6Neigh'>: {insights.specs.Specs.ipv6_neigh}, <class 'insights.parsers.ip.IpNeighShow'>: {insights.specs.Specs.ip_neigh_show}, <class 'insights.parsers.ip.IpLinkInfo'>: {insights.specs.Specs.ip_s_link}, <class 'insights.parsers.ip_netns_exec_namespace_lsof.IpNetnsExecNamespaceLsofI'>: {insights.specs.Specs.ip_netns_exec_namespace_lsof}, <class 'insights.parsers.ipaupgrade_log.IpaupgradeLog'>: {insights.specs.Specs.ipaupgrade_log}, <class 'insights.parsers.ipcs.IpcsM'>: {insights.specs.Specs.ipcs_m}, <class 'insights.parsers.ipcs.IpcsMP'>: {insights.specs.Specs.ipcs_m_p}, <class 'insights.parsers.ipcs.IpcsS'>: {insights.specs.Specs.ipcs_s}, <class 'insights.parsers.ipcs.IpcsSI'>: {insights.specs.Specs.ipcs_s_i}, <class 'insights.parsers.ipcs_sem.IpcsS'>: {insights.specs.Specs.ipcs_s}, <class 'insights.parsers.ipcs_sem.IpcsSI'>: {insights.specs.Specs.ipcs_s_i}, <class 'insights.parsers.iptables.IPTables'>: {insights.specs.Specs.iptables}, <class 'insights.parsers.iptables.IP6Tables'>: {insights.specs.Specs.ip6tables}, <class 'insights.parsers.iptables.IPTabPermanent'>: {insights.specs.Specs.iptables_permanent}, <class 'insights.parsers.iptables.IP6TabPermanent'>: {insights.specs.Specs.ip6tables_permanent}, <class 'insights.parsers.ironic_conf.IronicConf'>: {insights.specs.Specs.ironic_conf}, <class 'insights.parsers.ironic_inspector_log.IronicInspectorLog'>: {insights.specs.Specs.ironic_inspector_log}, <class 'insights.parsers.iscsiadm_mode_session.IscsiAdmModeSession'>: {insights.specs.Specs.iscsiadm_m_session}, <class 'insights.parsers.jboss_domain_log.JbossDomainServerLog'>: {insights.specs.Specs.jboss_domain_server_log}, <class 'insights.parsers.jboss_domain_log.JbossStandaloneServerLog'>: {insights.specs.Specs.jboss_standalone_server_log}, <class 'insights.parsers.jboss_standalone_main_conf.JbossStandaloneConf'>: {insights.specs.Specs.jboss_standalone_main_config}, <class 'insights.parsers.jboss_version.JbossVersion'>: {insights.specs.Specs.jboss_version}, <class 'insights.parsers.journal_since_boot.JournalSinceBoot'>: {insights.specs.Specs.journal_since_boot}, <class 'insights.parsers.journald_conf.EtcJournaldConf'>: {insights.specs.Specs.etc_journald_conf}, <class 'insights.parsers.journald_conf.EtcJournaldConfD'>: {insights.specs.Specs.etc_journald_conf_d}, <class 'insights.parsers.journald_conf.UsrJournaldConfD'>: {insights.specs.Specs.usr_journald_conf_d}, <class 'insights.parsers.katello_service_status.KatelloServiceStatus'>: {insights.specs.Specs.katello_service_status}, <class 'insights.parsers.kdump.KDumpConf'>: {insights.specs.Specs.kdump_conf}, <class 'insights.parsers.kdump.KexecCrashLoaded'>: {insights.specs.Specs.kexec_crash_loaded}, <class 'insights.parsers.kdump.KexecCrashSize'>: {insights.specs.Specs.kexec_crash_size}, <class 'insights.parsers.kernel_config.KernelConf'>: {insights.specs.Specs.kernel_config}, <class 'insights.parsers.keystone.KeystoneConf'>: {insights.specs.Specs.keystone_conf}, <class 'insights.parsers.keystone_log.KeystoneLog'>: {insights.specs.Specs.keystone_log}, <class 'insights.parsers.kpatch_list.KpatchList'>: {insights.specs.Specs.kpatch_list}, <class 'insights.parsers.kpatch_patches.KpatchPatches'>: {insights.specs.Specs.kpatch_patch_files}, <class 'insights.parsers.krb5.Krb5Configuration'>: {insights.specs.Specs.krb5}, <class 'insights.parsers.krb5kdc_log.KerberosKDCLog'>: {insights.specs.Specs.kerberos_kdc_log}, <function is_running>: {insights.specs.Specs.ksmstate}, <class 'insights.parsers.ksmstate.KSMState'>: {insights.specs.Specs.ksmstate}, <class 'insights.parsers.kubepods_cpu_quota.KubepodsCpuQuota'>: {insights.specs.Specs.kubepods_cpu_quota}, <class 'insights.parsers.libkeyutils.Libkeyutils'>: {insights.specs.Specs.libkeyutils}, <class 'insights.parsers.libkeyutils.LibkeyutilsObjdumps'>: {insights.specs.Specs.libkeyutils_objdumps}, <class 'insights.parsers.libvirtd_log.LibVirtdLog'>: {insights.specs.Specs.libvirtd_log}, <class 'insights.parsers.libvirtd_log.LibVirtdQemuLog'>: {insights.specs.Specs.libvirtd_qemu_log}, <class 'insights.parsers.limits_conf.LimitsConf'>: {insights.specs.Specs.limits_conf}, <class 'insights.parsers.logrotate_conf.LogrotateConf'>: {insights.specs.Specs.logrotate_conf}, <class 'insights.parsers.lpstat.LpstatPrinters'>: {insights.specs.Specs.lpstat_p}, <class 'insights.parsers.ls_boot.LsBoot'>: {insights.specs.Specs.ls_boot}, <class 'insights.parsers.ls_dev.LsDev'>: {insights.specs.Specs.ls_dev}, <class 'insights.parsers.ls_disk.LsDisk'>: {insights.specs.Specs.ls_disk}, <class 'insights.parsers.ls_docker_volumes.DockerVolumesDir'>: {insights.specs.Specs.ls_docker_volumes}, <class 'insights.parsers.ls_edac_mc.LsEdacMC'>: {insights.specs.Specs.ls_edac_mc}, <class 'insights.parsers.ls_etc.LsEtc'>: {insights.specs.Specs.ls_etc}, <class 'insights.parsers.ls_lib_firmware.LsLibFW'>: {insights.specs.Specs.ls_lib_firmware}, <class 'insights.parsers.ls_ocp_cni_openshift_sdn.LsOcpCniOpenshiftSdn'>: {insights.specs.Specs.ls_ocp_cni_openshift_sdn}, <class 'insights.parsers.ls_origin_local_volumes_pods.LsOriginLocalVolumePods'>: {insights.specs.Specs.ls_origin_local_volumes_pods}, <class 'insights.parsers.ls_osroot.LsOsroot'>: {insights.specs.Specs.ls_osroot}, <class 'insights.parsers.ls_run_systemd_generator.LsRunSystemdGenerator'>: {insights.specs.Specs.ls_run_systemd_generator}, <class 'insights.parsers.ls_sys_firmware.LsSysFirmware'>: {insights.specs.Specs.ls_sys_firmware}, <class 'insights.parsers.ls_usr_lib64.LsUsrLib64'>: {insights.specs.Specs.ls_usr_lib64}, <class 'insights.parsers.ls_usr_sbin.LsUsrSbin'>: {insights.specs.Specs.ls_usr_sbin}, <class 'insights.parsers.ls_var_lib_mongodb.LsVarLibMongodb'>: {insights.specs.Specs.ls_var_lib_mongodb}, <class 'insights.parsers.ls_var_lib_nova_instances.LsRVarLibNovaInstances'>: {insights.specs.Specs.ls_R_var_lib_nova_instances}, <class 'insights.parsers.ls_var_lib_nova_instances.LsVarLibNovaInstances'>: {insights.specs.Specs.ls_var_lib_nova_instances}, <class 'insights.parsers.ls_var_log.LsVarLog'>: {insights.specs.Specs.ls_var_log}, <class 'insights.parsers.ls_var_opt_mssql.LsDVarOptMSSql'>: {insights.specs.Specs.ls_var_opt_mssql}, <class 'insights.parsers.ls_var_opt_mssql_log.LsVarOptMssqlLog'>: {insights.specs.Specs.ls_var_opt_mssql_log}, <class 'insights.parsers.ls_var_run.LsVarRun'>: {insights.specs.Specs.ls_var_run}, <class 'insights.parsers.ls_var_spool_clientmq.LsVarSpoolClientmq'>: {insights.specs.Specs.ls_var_spool_clientmq}, <class 'insights.parsers.ls_var_spool_postfix_maildrop.LsVarSpoolPostfixMaildrop'>: {insights.specs.Specs.ls_var_spool_postfix_maildrop}, <class 'insights.parsers.ls_var_tmp.LsVarTmp'>: {insights.specs.Specs.ls_var_tmp}, <class 'insights.parsers.lsblk.LSBlock'>: {insights.specs.Specs.lsblk}, <class 'insights.parsers.lsblk.LSBlockPairs'>: {insights.specs.Specs.lsblk_pairs}, <class 'insights.parsers.lscpu.LsCPU'>: {insights.specs.Specs.lscpu}, <class 'insights.parsers.lsinitrd.Lsinitrd'>: {insights.specs.Specs.lsinitrd}, <class 'insights.parsers.lsmod.LsMod'>: {insights.specs.Specs.lsmod}, <class 'insights.parsers.lsof.Lsof'>: {insights.specs.Specs.lsof}, <class 'insights.parsers.lspci.LsPci'>: {insights.specs.Specs.lspci}, <class 'insights.parsers.lssap.Lssap'>: {insights.specs.Specs.lssap}, <class 'insights.parsers.lsscsi.LsSCSI'>: {insights.specs.Specs.lsscsi}, <class 'insights.parsers.lvdisplay.LvDisplay'>: {insights.specs.Specs.lvdisplay}, <class 'insights.parsers.lvm.Pvs'>: {insights.specs.Specs.pvs_noheadings}, <class 'insights.parsers.lvm.PvsAll'>: {insights.specs.Specs.pvs_noheadings_all}, <class 'insights.parsers.lvm.PvsHeadings'>: {insights.specs.Specs.pvs}, <class 'insights.parsers.lvm.Vgs'>: {insights.specs.Specs.vgs_noheadings}, <class 'insights.parsers.lvm.VgsAll'>: {insights.specs.Specs.vgs_noheadings_all}, <class 'insights.parsers.lvm.VgsHeadings'>: {insights.specs.Specs.vgs}, <class 'insights.parsers.lvm.Lvs'>: {insights.specs.Specs.lvs_noheadings}, <class 'insights.parsers.lvm.LvsAll'>: {insights.specs.Specs.lvs_noheadings_all}, <class 'insights.parsers.lvm.LvsHeadings'>: {insights.specs.Specs.lvs}, <class 'insights.parsers.lvm.LvmConf'>: {insights.specs.Specs.lvm_conf}, <class 'insights.parsers.manila_conf.ManilaConf'>: {insights.specs.Specs.manila_conf}, <class 'insights.parsers.mariadb_log.MariaDBLog'>: {insights.specs.Specs.mariadb_log}, <class 'insights.parsers.max_uid.MaxUID'>: {insights.specs.Specs.max_uid}, <class 'insights.parsers.md5check.NormalMD5'>: {insights.specs.Specs.md5chk_files}, <class 'insights.parsers.mdstat.Mdstat'>: {insights.specs.Specs.mdstat}, <class 'insights.parsers.meminfo.MemInfo'>: {insights.specs.Specs.meminfo}, <class 'insights.parsers.messages.Messages'>: {insights.specs.Specs.messages}, <class 'insights.parsers.metadata.MetadataJson'>: {insights.specs.Specs.metadata_json}, <class 'insights.parsers.mistral_log.MistralExecutorLog'>: {insights.specs.Specs.mistral_executor_log}, <class 'insights.parsers.mlx4_port.Mlx4Port'>: {insights.specs.Specs.mlx4_port}, <class 'insights.parsers.modinfo.ModInfoAll'>: {insights.specs.Specs.modinfo_all}, <class 'insights.parsers.modinfo.ModInfoEach'>: {insights.specs.Specs.modinfo}, <class 'insights.parsers.modinfo.ModInfoI40e'>: {insights.specs.Specs.modinfo_i40e}, <class 'insights.parsers.modinfo.ModInfoVmxnet3'>: {insights.specs.Specs.modinfo_vmxnet3}, <class 'insights.parsers.modinfo.ModInfoIgb'>: {insights.specs.Specs.modinfo_igb}, <class 'insights.parsers.modinfo.ModInfoIxgbe'>: {insights.specs.Specs.modinfo_ixgbe}, <class 'insights.parsers.modinfo.ModInfoVeth'>: {insights.specs.Specs.modinfo_veth}, <class 'insights.parsers.modprobe.ModProbe'>: {insights.specs.Specs.modprobe}, <class 'insights.parsers.mongod_conf.MongodbConf'>: {insights.specs.Specs.mongod_conf}, <class 'insights.parsers.mssql_conf.MsSQLConf'>: {insights.specs.Specs.mssql_conf}, <class 'insights.parsers.multicast_querier.MulticastQuerier'>: {insights.specs.Specs.multicast_querier}, <class 'insights.parsers.multipath_conf.MultipathConf'>: {insights.specs.Specs.multipath_conf}, <class 'insights.parsers.multipath_conf.MultipathConfInitramfs'>: {insights.specs.Specs.multipath_conf_initramfs}, <class 'insights.parsers.multipath_conf.MultipathConfTree'>: {insights.specs.Specs.multipath_conf}, <class 'insights.parsers.multipath_conf.MultipathConfTreeInitramfs'>: {insights.specs.Specs.multipath_conf_initramfs}, <class 'insights.parsers.multipath_v4_ll.MultipathDevices'>: {insights.specs.Specs.multipath__v4__ll}, <function get_multipath_v4_ll>: {insights.specs.Specs.multipath__v4__ll}, <class 'insights.parsers.mysql_log.MysqlLog'>: {insights.specs.Specs.mysql_log}, <class 'insights.parsers.mysqladmin.MysqladminStatus'>: {insights.specs.Specs.mysqladmin_status}, <class 'insights.parsers.mysqladmin.MysqladminVars'>: {insights.specs.Specs.mysqladmin_vars}, <class 'insights.parsers.net_namespace.NetworkNamespace'>: {insights.specs.Specs.namespace}, <class 'insights.parsers.netconsole.NetConsole'>: {insights.specs.Specs.netconsole}, <class 'insights.parsers.netstat.NetstatS'>: {insights.specs.Specs.netstat_s}, <class 'insights.parsers.netstat.NetstatAGN'>: {insights.specs.Specs.netstat_agn}, <class 'insights.parsers.netstat.Netstat'>: {insights.specs.Specs.netstat}, <class 'insights.parsers.netstat.Netstat_I'>: {insights.specs.Specs.netstat_i}, <class 'insights.parsers.netstat.SsTULPN'>: {insights.specs.Specs.ss}, <class 'insights.parsers.netstat.SsTUPNA'>: {insights.specs.Specs.ss}, <class 'insights.parsers.netstat.ProcNsat'>: {insights.specs.Specs.proc_netstat}, <class 'insights.parsers.neutron_conf.NeutronConf'>: {insights.specs.Specs.neutron_conf}, <class 'insights.parsers.neutron_dhcp_agent_conf.NeutronDhcpAgentIni'>: {insights.specs.Specs.neutron_dhcp_agent_ini}, <class 'insights.parsers.neutron_l3_agent_conf.NeutronL3AgentIni'>: {insights.specs.Specs.neutron_l3_agent_ini}, <class 'insights.parsers.neutron_l3_agent_log.NeutronL3AgentLog'>: {insights.specs.Specs.neutron_l3_agent_log}, <class 'insights.parsers.neutron_metadata_agent_conf.NeutronMetadataAgentIni'>: {insights.specs.Specs.neutron_metadata_agent_ini}, <class 'insights.parsers.neutron_metadata_agent_log.NeutronMetadataAgentLog'>: {insights.specs.Specs.neutron_metadata_agent_log}, <class 'insights.parsers.neutron_ml2_conf.NeutronMl2Conf'>: {insights.specs.Specs.neutron_ml2_conf}, <class 'insights.parsers.neutron_ovs_agent_log.NeutronOVSAgentLog'>: {insights.specs.Specs.neutron_ovs_agent_log}, <class 'insights.parsers.neutron_plugin.NeutronPlugin'>: {insights.specs.Specs.neutron_plugin_ini}, <class 'insights.parsers.neutron_server_log.NeutronServerLog'>: {insights.specs.Specs.neutron_server_log}, <class 'insights.parsers.nfnetlink_queue.NfnetLinkQueue'>: {insights.specs.Specs.nfnetlink_queue}, <class 'insights.parsers.nfs_exports.NFSExports'>: {insights.specs.Specs.nfs_exports}, <class 'insights.parsers.nfs_exports.NFSExportsD'>: {insights.specs.Specs.nfs_exports_d}, <class 'insights.parsers.nginx_conf.NginxConf'>: {insights.specs.Specs.nginx_conf}, <class 'insights.parsers.nmcli.NmcliDevShow'>: {insights.specs.Specs.nmcli_dev_show}, <class 'insights.parsers.nmcli.NmcliDevShowSos'>: {insights.specs.Specs.nmcli_dev_show_sos}, <class 'insights.parsers.nmcli.NmcliConnShow'>: {insights.specs.Specs.nmcli_conn_show}, <class 'insights.parsers.nova_conf.NovaConf'>: {insights.specs.Specs.nova_conf}, <class 'insights.parsers.nova_log.NovaApiLog'>: {insights.specs.Specs.nova_api_log}, <class 'insights.parsers.nova_log.NovaComputeLog'>: {insights.specs.Specs.nova_compute_log}, <class 'insights.parsers.nova_user_ids.NovaUID'>: {insights.specs.Specs.nova_uid}, <class 'insights.parsers.nova_user_ids.NovaMigrationUID'>: {insights.specs.Specs.nova_migration_uid}, <class 'insights.parsers.nscd_conf.NscdConf'>: {insights.specs.Specs.nscd_conf}, <class 'insights.parsers.nsswitch_conf.NSSwitchConf'>: {insights.specs.Specs.nsswitch_conf}, <class 'insights.parsers.ntp_sources.ChronycSources'>: {insights.specs.Specs.chronyc_sources}, <class 'insights.parsers.ntp_sources.NtpqLeap'>: {insights.specs.Specs.ntpq_leap}, <class 'insights.parsers.ntp_sources.NtpqPn'>: {insights.specs.Specs.ntpq_pn}, <class 'insights.parsers.numa_cpus.NUMACpus'>: {insights.specs.Specs.numa_cpus}, <class 'insights.parsers.numeric_user_group_name.NumericUserGroupName'>: {insights.specs.Specs.numeric_user_group_name}, <class 'insights.parsers.nvme_core_io_timeout.NVMeCoreIOTimeout'>: {insights.specs.Specs.nvme_core_io_timeout}, <class 'insights.parsers.odbc.ODBCIni'>: {insights.specs.Specs.odbc_ini}, <class 'insights.parsers.odbc.ODBCinstIni'>: {insights.specs.Specs.odbcinst_ini}, <class 'insights.parsers.openshift_configuration.OseNodeConfig'>: {insights.specs.Specs.ose_node_config}, <class 'insights.parsers.openshift_configuration.OseMasterConfig'>: {insights.specs.Specs.ose_master_config}, <class 'insights.parsers.openshift_get.OcGetBc'>: {insights.specs.Specs.oc_get_bc}, <class 'insights.parsers.openshift_get.OcGetBuild'>: {insights.specs.Specs.oc_get_build}, <class 'insights.parsers.openshift_get.OcGetDc'>: {insights.specs.Specs.oc_get_dc}, <class 'insights.parsers.openshift_get.OcGetEgressNetworkPolicy'>: {insights.specs.Specs.oc_get_egressnetworkpolicy}, <class 'insights.parsers.openshift_get.OcGetEndPoints'>: {insights.specs.Specs.oc_get_endpoints}, <class 'insights.parsers.openshift_get.OcGetEvent'>: {insights.specs.Specs.oc_get_event}, <class 'insights.parsers.openshift_get.OcGetNode'>: {insights.specs.Specs.oc_get_node}, <class 'insights.parsers.openshift_get.OcGetPod'>: {insights.specs.Specs.oc_get_pod}, <class 'insights.parsers.openshift_get.OcGetProject'>: {insights.specs.Specs.oc_get_project}, <class 'insights.parsers.openshift_get.OcGetPv'>: {insights.specs.Specs.oc_get_pv}, <class 'insights.parsers.openshift_get.OcGetPvc'>: {insights.specs.Specs.oc_get_pvc}, <class 'insights.parsers.openshift_get.OcGetRc'>: {insights.specs.Specs.oc_get_rc}, <class 'insights.parsers.openshift_get.OcGetRole'>: {insights.specs.Specs.oc_get_role}, <class 'insights.parsers.openshift_get.OcGetRolebinding'>: {insights.specs.Specs.oc_get_rolebinding}, <class 'insights.parsers.openshift_get.OcGetRoute'>: {insights.specs.Specs.oc_get_route}, <class 'insights.parsers.openshift_get.OcGetService'>: {insights.specs.Specs.oc_get_service}, <class 'insights.parsers.openshift_get.OcGetConfigmap'>: {insights.specs.Specs.oc_get_configmap}, <class 'insights.parsers.openshift_get_with_config.OcGetClusterRoleWithConfig'>: {insights.specs.Specs.oc_get_clusterrole_with_config}, <class 'insights.parsers.openshift_get_with_config.OcGetClusterRoleBindingWithConfig'>: {insights.specs.Specs.oc_get_clusterrolebinding_with_config}, <class 'insights.parsers.openshift_hosts.OpenShiftHosts'>: {insights.specs.Specs.openshift_hosts}, <class 'insights.parsers.openvswitch_logs.OVSDB_Server_Log'>: {insights.specs.Specs.openvswitch_server_log}, <class 'insights.parsers.openvswitch_logs.OVS_VSwitchd_Log'>: {insights.specs.Specs.openvswitch_daemon_log}, <class 'insights.parsers.openvswitch_other_config.OpenvSwitchOtherConfig'>: {insights.specs.Specs.openvswitch_other_config}, <class 'insights.parsers.oracle.OraclePfile'>: {insights.specs.Specs.init_ora}, <class 'insights.parsers.oracle.OracleSpfile'>: {insights.specs.Specs.spfile_ora}, <class 'insights.parsers.os_release.OsRelease'>: {insights.specs.Specs.os_release}, <class 'insights.parsers.osa_dispatcher_log.OSADispatcherLog'>: {insights.specs.Specs.osa_dispatcher_log}, <class 'insights.parsers.ovirt_engine_confd.OvirtEngineConfd'>: {insights.specs.Specs.ovirt_engine_confd}, <class 'insights.parsers.ovirt_engine_log.BootLog'>: {insights.specs.Specs.ovirt_engine_boot_log}, <class 'insights.parsers.ovirt_engine_log.ConsoleLog'>: {insights.specs.Specs.ovirt_engine_console_log}, <class 'insights.parsers.ovirt_engine_log.EngineLog'>: {insights.specs.Specs.engine_log}, <class 'insights.parsers.ovirt_engine_log.ServerLog'>: {insights.specs.Specs.ovirt_engine_server_log}, <class 'insights.parsers.ovirt_engine_log.UILog'>: {insights.specs.Specs.ovirt_engine_ui_log}, <class 'insights.parsers.ovs_appctl_fdb_show_bridge.OVSappctlFdbShowBridge'>: {insights.specs.Specs.ovs_appctl_fdb_show_bridge}, <class 'insights.parsers.ovs_ofctl_dump_flows.OVSofctlDumpFlows'>: {insights.specs.Specs.ovs_ofctl_dump_flows}, <class 'insights.parsers.ovs_vsctl_list_bridge.OVSvsctlListBridge'>: {insights.specs.Specs.ovs_vsctl_list_bridge}, <class 'insights.parsers.ovs_vsctl_show.OVSvsctlshow'>: {insights.specs.Specs.ovs_vsctl_show}, <class 'insights.parsers.pacemaker_log.PacemakerLog'>: {insights.specs.Specs.pacemaker_log}, <class 'insights.parsers.package_provides_httpd.PackageProvidesHttpd'>: {insights.specs.Specs.package_provides_httpd}, <class 'insights.parsers.package_provides_java.PackageProvidesJava'>: {insights.specs.Specs.package_provides_java}, <class 'insights.parsers.pam.PamConf'>: {insights.specs.Specs.pam_conf}, <class 'insights.parsers.parted.PartedL'>: {insights.specs.Specs.parted__l}, <class 'insights.parsers.partitions.Partitions'>: {insights.specs.Specs.partitions}, <class 'insights.parsers.passenger_status.PassengerStatus'>: {insights.specs.Specs.passenger_status}, <class 'insights.parsers.password.PasswordAuthPam'>: {insights.specs.Specs.password_auth}, <class 'insights.parsers.pci_rport_target_disk_paths.PciRportTargetDiskPaths'>: {insights.specs.Specs.pci_rport_target_disk_paths}, <class 'insights.parsers.pcs_config.PCSConfig'>: {insights.specs.Specs.pcs_config}, <class 'insights.parsers.pcs_quorum_status.PcsQuorumStatus'>: {insights.specs.Specs.pcs_quorum_status}, <class 'insights.parsers.pcs_status.PCSStatus'>: {insights.specs.Specs.pcs_status}, <class 'insights.parsers.pluginconf_d.PluginConfD'>: {insights.specs.Specs.pluginconf_d}, <class 'insights.parsers.pluginconf_d.PluginConfDIni'>: {insights.specs.Specs.pluginconf_d}, <class 'insights.parsers.podman_inspect.PodmanInspectImage'>: {insights.specs.Specs.podman_image_inspect}, <class 'insights.parsers.podman_inspect.PodmanInspectContainer'>: {insights.specs.Specs.podman_container_inspect}, <class 'insights.parsers.podman_list.PodmanListImages'>: {insights.specs.Specs.podman_list_images}, <class 'insights.parsers.podman_list.PodmanListContainers'>: {insights.specs.Specs.podman_list_containers}, <class 'insights.parsers.postgresql_conf.PostgreSQLConf'>: {insights.specs.Specs.postgresql_conf}, <class 'insights.parsers.postgresql_log.PostgreSQLLog'>: {insights.specs.Specs.postgresql_log}, <class 'insights.parsers.proc_environ.OpenshiftFluentdEnviron'>: {insights.specs.Specs.openshift_fluentd_environ}, <class 'insights.parsers.proc_environ.OpenshiftRouterEnviron'>: {insights.specs.Specs.openshift_router_environ}, <class 'insights.parsers.proc_limits.HttpdLimits'>: {insights.specs.Specs.httpd_limits}, <class 'insights.parsers.proc_limits.MysqldLimits'>: {insights.specs.Specs.mysqld_limits}, <class 'insights.parsers.proc_limits.OvsVswitchdLimits'>: {insights.specs.Specs.ovs_vswitchd_limits}, <class 'insights.parsers.proc_stat.ProcStat'>: {insights.specs.Specs.proc_stat}, <class 'insights.parsers.ps.PsAuxww'>: {insights.specs.Specs.ps_auxww}, <class 'insights.parsers.ps.PsEf'>: {insights.specs.Specs.ps_ef}, <class 'insights.parsers.ps.PsAuxcww'>: {insights.specs.Specs.ps_auxcww}, <class 'insights.parsers.ps.PsAux'>: {insights.specs.Specs.ps_aux}, <class 'insights.parsers.ps.PsEo'>: {insights.specs.Specs.ps_eo}, <class 'insights.parsers.ps.PsAlxwww'>: {insights.specs.Specs.ps_alxwww}, <class 'insights.parsers.pulp_worker_defaults.PulpWorkerDefaults'>: {insights.specs.Specs.pulp_worker_defaults}, <class 'insights.parsers.puppetserver_config.PuppetserverConfig'>: {insights.specs.Specs.puppetserver_config}, <class 'insights.parsers.qemu_conf.QemuConf'>: {insights.specs.Specs.qemu_conf}, <class 'insights.components.openstack.IsOpenStackCompute'>: {<class 'insights.parsers.ps.PsAuxcww'>}, <class 'insights.parsers.qemu_xml.QemuXML'>: {insights.specs.Specs.qemu_xml}, <class 'insights.parsers.qemu_xml.VarQemuXML'>: {insights.specs.Specs.var_qemu_xml}, <class 'insights.parsers.qemu_xml.OpenStackInstanceXML'>: {insights.specs.Specs.qemu_xml, <class 'insights.components.openstack.IsOpenStackCompute'>}, <class 'insights.parsers.qpid_stat.QpidStatQ'>: {insights.specs.Specs.qpid_stat_q}, <class 'insights.parsers.qpid_stat.QpidStatU'>: {insights.specs.Specs.qpid_stat_u}, <class 'insights.parsers.qpid_stat.QpidStatG'>: {insights.specs.Specs.qpid_stat_g}, <class 'insights.parsers.qpidd_conf.QpiddConf'>: {insights.specs.Specs.qpidd_conf}, <class 'insights.parsers.rabbitmq.RabbitMQReport'>: {insights.specs.Specs.rabbitmq_report}, <class 'insights.parsers.rabbitmq.RabbitMQReportOfContainers'>: {insights.specs.Specs.rabbitmq_report_of_containers}, <class 'insights.parsers.rabbitmq.RabbitMQUsers'>: {insights.specs.Specs.rabbitmq_users}, <class 'insights.parsers.rabbitmq.RabbitMQQueues'>: {insights.specs.Specs.rabbitmq_queues}, <class 'insights.parsers.rabbitmq.RabbitMQEnv'>: {insights.specs.Specs.rabbitmq_env}, <class 'insights.parsers.rabbitmq_log.RabbitMQStartupLog'>: {insights.specs.Specs.rabbitmq_startup_log}, <class 'insights.parsers.rabbitmq_log.RabbitMQStartupErrLog'>: {insights.specs.Specs.rabbitmq_startup_err}, <class 'insights.parsers.rabbitmq_log.RabbitMQLogs'>: {insights.specs.Specs.rabbitmq_logs}, <class 'insights.parsers.rc_local.RcLocal'>: {insights.specs.Specs.rc_local}, <class 'insights.parsers.rdma_config.RdmaConfig'>: {insights.specs.Specs.rdma_conf}, <class 'insights.parsers.readlink_e_mtab.ReadLinkEMtab'>: {insights.specs.Specs.readlink_e_etc_mtab}, <class 'insights.parsers.resolv_conf.ResolvConf'>: {insights.specs.Specs.resolv_conf}, <class 'insights.parsers.rhev_data_center.RhevDataCenter'>: {insights.specs.Specs.rhev_data_center}, <class 'insights.parsers.rhn_charsets.RHNCharSets'>: {insights.specs.Specs.rhn_charsets}, <class 'insights.parsers.rhn_conf.RHNConf'>: {insights.specs.Specs.rhn_conf}, <class 'insights.parsers.rhn_entitlement_cert_xml.RHNCertConf'>: {insights.specs.Specs.rhn_entitlement_cert_xml}, <class 'insights.parsers.rhn_hibernate_conf.RHNHibernateConf'>: {insights.specs.Specs.rhn_hibernate_conf}, <class 'insights.parsers.rhn_logs.TaskomaticDaemonLog'>: {insights.specs.Specs.rhn_taskomatic_daemon_log}, <class 'insights.parsers.rhn_logs.ServerXMLRPCLog'>: {insights.specs.Specs.rhn_server_xmlrpc_log}, <class 'insights.parsers.rhn_logs.SearchDaemonLog'>: {insights.specs.Specs.rhn_search_daemon_log}, <class 'insights.parsers.rhn_logs.SatelliteServerLog'>: {insights.specs.Specs.rhn_server_satellite_log}, <class 'insights.parsers.rhn_schema_stats.DBStatsLog'>: {insights.specs.Specs.rhn_schema_stats}, <function rhn_schema_version>: {insights.specs.Specs.rhn_schema_version}, <class 'insights.parsers.rhosp_release.RhospRelease'>: {insights.specs.Specs.rhosp_release}, <class 'insights.parsers.rhsm_conf.RHSMConf'>: {insights.specs.Specs.rhsm_conf}, <class 'insights.parsers.rhsm_log.RhsmLog'>: {insights.specs.Specs.rhsm_log}, <class 'insights.parsers.rhsm_releasever.RhsmReleaseVer'>: {insights.specs.Specs.rhsm_releasever}, <class 'insights.parsers.rhv_log_collector_analyzer.RhvLogCollectorJson'>: {insights.specs.Specs.rhv_log_collector_analyzer}, <class 'insights.parsers.rndc_status.RndcStatus'>: {insights.specs.Specs.rndc_status}, <class 'insights.parsers.route.Route'>: {insights.specs.Specs.route}, <class 'insights.parsers.rsyslog_conf.RsyslogConf'>: {insights.specs.Specs.rsyslog_conf}, <class 'insights.parsers.samba.SambaConfig'>: {insights.specs.Specs.samba}, <class 'insights.parsers.samba_logs.SAMBALog'>: {insights.specs.Specs.samba_logs}, <class 'insights.parsers.sap_hdb_version.HDBVersion'>: {insights.specs.Specs.sap_hdb_version}, <class 'insights.parsers.sap_host_profile.SAPHostProfile'>: {insights.specs.Specs.sap_host_profile}, <class 'insights.parsers.sapcontrol.SAPControlSystemUpdateList'>: {insights.specs.Specs.sapcontrol_getsystemupdatelist}, <class 'insights.parsers.saphostctrl.SAPHostCtrlInstances'>: {insights.specs.Specs.saphostctl_getcimobject_sapinstance}, <class 'insights.parsers.saphostexec.SAPHostExecStatus'>: {insights.specs.Specs.saphostexec_status}, <class 'insights.parsers.saphostexec.SAPHostExecVersion'>: {insights.specs.Specs.saphostexec_version}, <class 'insights.parsers.sat5_insights_properties.Sat5InsightsProperties'>: {insights.specs.Specs.sat5_insights_properties}, <class 'insights.parsers.satellite_enabled_features.SatelliteEnabledFeatures'>: {insights.specs.Specs.satellite_enabled_features}, <class 'insights.parsers.satellite_installer_configurations.CustomHiera'>: {insights.specs.Specs.satellite_custom_hiera}, <class 'insights.parsers.satellite_mongodb.MongoDBStorageEngine'>: {insights.specs.Specs.satellite_mongodb_storage_engine}, <class 'insights.parsers.scheduler.Scheduler'>: {insights.specs.Specs.scheduler}, <class 'insights.parsers.scsi.SCSI'>: {insights.specs.Specs.scsi}, <class 'insights.parsers.scsi_eh_deadline.SCSIEhDead'>: {insights.specs.Specs.scsi_eh_deadline}, <class 'insights.parsers.scsi_fwver.SCSIFWver'>: {insights.specs.Specs.scsi_fwver}, <class 'insights.parsers.sctp.SCTPEps'>: {insights.specs.Specs.sctp_eps}, <class 'insights.parsers.sctp.SCTPAsc'>: {insights.specs.Specs.sctp_asc, <class 'insights.components.rhel_version.IsRhel6'>}, <class 'insights.parsers.sctp.SCTPAsc7'>: {insights.specs.Specs.sctp_asc, <class 'insights.components.rhel_version.IsRhel7'>}, <class 'insights.parsers.sctp.SCTPSnmp'>: {insights.specs.Specs.sctp_snmp}, <class 'insights.parsers.sealert.Sealert'>: {insights.specs.Specs.sealert}, <class 'insights.parsers.secure.Secure'>: {insights.specs.Specs.secure}, <class 'insights.parsers.selinux_config.SelinuxConfig'>: {insights.specs.Specs.selinux_config}, <class 'insights.parsers.sestatus.SEStatus'>: {insights.specs.Specs.sestatus}, <class 'insights.parsers.setup_named_chroot.SetupNamedChroot'>: {insights.specs.Specs.setup_named_chroot}, <class 'insights.parsers.slabinfo.SlabInfo'>: {insights.specs.Specs.proc_slabinfo}, <class 'insights.parsers.smartctl.SMARTctl'>: {insights.specs.Specs.smartctl}, <class 'insights.parsers.smartpdc_settings.SmartpdcSettings'>: {insights.specs.Specs.smartpdc_settings}, <class 'insights.parsers.smbstatus.SmbstatusS'>: {insights.specs.Specs.smbstatus_S}, <class 'insights.parsers.smbstatus.Smbstatusp'>: {insights.specs.Specs.smbstatus_p}, <class 'insights.parsers.smt.CpuSMTActive'>: {insights.specs.Specs.cpu_smt_active}, <class 'insights.parsers.smt.CpuCoreOnline'>: {insights.specs.Specs.cpu_cores}, <class 'insights.parsers.smt.CpuSiblings'>: {insights.specs.Specs.cpu_siblings}, <class 'insights.parsers.snmp.TcpIpStats'>: {insights.specs.Specs.proc_snmp_ipv4}, <class 'insights.parsers.snmp.TcpIpStatsIPV6'>: {insights.specs.Specs.proc_snmp_ipv6}, <class 'insights.parsers.sockstat.SockStats'>: {insights.specs.Specs.sockstat}, <class 'insights.parsers.softnet_stat.SoftNetStats'>: {insights.specs.Specs.softnet_stat}, <class 'insights.parsers.software_collections_list.SoftwareCollectionsListInstalled'>: {insights.specs.Specs.software_collections_list, <class 'insights.components.rhel_version.IsRhel6'>, <class 'insights.components.rhel_version.IsRhel7'>}, <class 'insights.parsers.ssh.SshDConfig'>: {insights.specs.Specs.sshd_config}, <class 'insights.parsers.ssh_client_config.EtcSshConfig'>: {insights.specs.Specs.ssh_config}, <class 'insights.parsers.ssh_client_config.ForemanSshConfig'>: {insights.specs.Specs.ssh_foreman_config}, <class 'insights.parsers.ssh_client_config.ForemanProxySshConfig'>: {insights.specs.Specs.ssh_foreman_proxy_config}, <class 'insights.parsers.sssd_conf.SSSD_Config'>: {insights.specs.Specs.sssd_config}, <class 'insights.parsers.sssd_logs.SSSDLog'>: {insights.specs.Specs.sssd_logs}, <class 'insights.parsers.subscription_manager_list.SubscriptionManagerListConsumed'>: {insights.specs.Specs.subscription_manager_list_consumed}, <class 'insights.parsers.subscription_manager_list.SubscriptionManagerListInstalled'>: {insights.specs.Specs.subscription_manager_list_installed}, <class 'insights.parsers.subscription_manager_release.SubscriptionManagerReleaseShow'>: {insights.specs.Specs.subscription_manager_release_show}, <class 'insights.parsers.swift_conf.SwiftProxyServerConf'>: {insights.specs.Specs.swift_proxy_server_conf}, <class 'insights.parsers.swift_conf.SwiftObjectExpirerConf'>: {insights.specs.Specs.swift_object_expirer_conf}, <class 'insights.parsers.swift_conf.SwiftConf'>: {insights.specs.Specs.swift_conf}, <class 'insights.parsers.swift_log.SwiftLog'>: {insights.specs.Specs.swift_log}, <class 'insights.parsers.sys_bus.CdcWDM'>: {insights.specs.Specs.cdc_wdm}, <class 'insights.parsers.sysconfig.CorosyncSysconfig'>: {insights.specs.Specs.corosync}, <class 'insights.parsers.sysconfig.ChronydSysconfig'>: {insights.specs.Specs.sysconfig_chronyd}, <class 'insights.parsers.sysconfig.DirsrvSysconfig'>: {insights.specs.Specs.dirsrv}, <class 'insights.parsers.sysconfig.DockerStorageSetupSysconfig'>: {insights.specs.Specs.docker_storage_setup}, <class 'insights.parsers.sysconfig.DockerSysconfig'>: {insights.specs.Specs.docker_sysconfig}, <class 'insights.parsers.sysconfig.DockerSysconfigStorage'>: {insights.specs.Specs.docker_storage}, <class 'insights.parsers.sysconfig.ForemanTasksSysconfig'>: {insights.specs.Specs.foreman_tasks_config}, <class 'insights.parsers.sysconfig.HttpdSysconfig'>: {insights.specs.Specs.sysconfig_httpd}, <class 'insights.parsers.sysconfig.IrqbalanceSysconfig'>: {insights.specs.Specs.sysconfig_irqbalance}, <class 'insights.parsers.sysconfig.KdumpSysconfig'>: {insights.specs.Specs.sysconfig_kdump}, <class 'insights.parsers.sysconfig.LibvirtGuestsSysconfig'>: {insights.specs.Specs.sysconfig_libvirt_guests}, <class 'insights.parsers.sysconfig.MemcachedSysconfig'>: {insights.specs.Specs.sysconfig_memcached}, <class 'insights.parsers.sysconfig.MongodSysconfig'>: {insights.specs.Specs.sysconfig_mongod}, <class 'insights.parsers.sysconfig.NetconsoleSysconfig'>: {insights.specs.Specs.netconsole}, <class 'insights.parsers.sysconfig.NetworkSysconfig'>: {insights.specs.Specs.sysconfig_network}, <class 'insights.parsers.sysconfig.NtpdSysconfig'>: {insights.specs.Specs.sysconfig_ntpd}, <class 'insights.parsers.sysconfig.PrelinkSysconfig'>: {insights.specs.Specs.sysconfig_prelink}, <class 'insights.parsers.sysconfig.SshdSysconfig'>: {insights.specs.Specs.sysconfig_sshd}, <class 'insights.parsers.sysconfig.PuppetserverSysconfig'>: {insights.specs.Specs.puppetserver_config}, <class 'insights.parsers.sysconfig.Up2DateSysconfig'>: {insights.specs.Specs.up2date}, <class 'insights.parsers.sysconfig.VirtWhoSysconfig'>: {insights.specs.Specs.sysconfig_virt_who}, <class 'insights.parsers.sysconfig.IfCFGStaticRoute'>: {insights.specs.Specs.ifcfg_static_route}, <class 'insights.parsers.sysctl.SysctlConf'>: {insights.specs.Specs.sysctl_conf}, <class 'insights.parsers.sysctl.Sysctl'>: {insights.specs.Specs.sysctl}, <class 'insights.parsers.sysctl.SysctlConfInitramfs'>: {insights.specs.Specs.sysctl_conf_initramfs}, <class 'insights.parsers.system_time.ChronyConf'>: {insights.specs.Specs.chrony_conf}, <class 'insights.parsers.system_time.NTPConf'>: {insights.specs.Specs.ntp_conf}, <class 'insights.parsers.system_time.LocalTime'>: {insights.specs.Specs.localtime}, <class 'insights.parsers.system_time.NtpTime'>: {insights.specs.Specs.ntptime}, <class 'insights.parsers.systemctl_show.SystemctlShowServiceAll'>: {insights.specs.Specs.systemctl_show_all_services}, <class 'insights.parsers.systemctl_show.SystemctlShowTarget'>: {insights.specs.Specs.systemctl_show_target}, <class 'insights.parsers.systemctl_show.SystemctlShowCinderVolume'>: {insights.specs.Specs.systemctl_cinder_volume}, <class 'insights.parsers.systemctl_show.SystemctlShowMariaDB'>: {insights.specs.Specs.systemctl_mariadb}, <class 'insights.parsers.systemctl_show.SystemctlShowPulpWorkers'>: {insights.specs.Specs.systemctl_pulp_workers}, <class 'insights.parsers.systemctl_show.SystemctlShowPulpResourceManager'>: {insights.specs.Specs.systemctl_pulp_resmg}, <class 'insights.parsers.systemctl_show.SystemctlShowPulpCelerybeat'>: {insights.specs.Specs.systemctl_pulp_celerybeat}, <class 'insights.parsers.systemctl_show.SystemctlShowHttpd'>: {insights.specs.Specs.systemctl_httpd}, <class 'insights.parsers.systemctl_show.SystemctlShowNginx'>: {insights.specs.Specs.systemctl_nginx}, <class 'insights.parsers.systemctl_show.SystemctlShowQpidd'>: {insights.specs.Specs.systemctl_qpidd}, <class 'insights.parsers.systemctl_show.SystemctlShowQdrouterd'>: {insights.specs.Specs.systemctl_qdrouterd}, <class 'insights.parsers.systemctl_show.SystemctlShowSmartpdc'>: {insights.specs.Specs.systemctl_smartpdc}, <class 'insights.parsers.systemd.config.SystemdDocker'>: {insights.specs.Specs.systemd_docker}, <class 'insights.parsers.systemd.config.SystemdSystemConf'>: {insights.specs.Specs.systemd_system_conf}, <class 'insights.parsers.systemd.config.SystemdOriginAccounting'>: {insights.specs.Specs.systemd_system_origin_accounting}, <class 'insights.parsers.systemd.config.SystemdOpenshiftNode'>: {insights.specs.Specs.systemd_openshift_node}, <class 'insights.parsers.systemd.config.SystemdLogindConf'>: {insights.specs.Specs.systemd_logind_conf}, <class 'insights.parsers.systemd.config.SystemdRpcbindSocketConf'>: {insights.specs.Specs.systemctl_cat_rpcbind_socket}, <class 'insights.parsers.systemd.unitfiles.UnitFiles'>: {insights.specs.Specs.systemctl_list_unit_files}, <class 'insights.parsers.systemd.unitfiles.ListUnits'>: {insights.specs.Specs.systemctl_list_units}, <class 'insights.parsers.systemid.SystemID'>: {insights.specs.Specs.systemid}, <class 'insights.parsers.systool.SystoolSCSIBus'>: {insights.specs.Specs.systool_b_scsi_v}, <class 'insights.parsers.tags.Tags'>: {insights.specs.Specs.tags}, <class 'insights.parsers.teamdctl_config_dump.TeamdctlConfigDump'>: {insights.specs.Specs.teamdctl_config_dump}, <class 'insights.parsers.teamdctl_state_dump.TeamdctlStateDump'>: {insights.specs.Specs.teamdctl_state_dump}, <class 'insights.parsers.tmpfilesd.TmpFilesD'>: {insights.specs.Specs.tmpfilesd}, <class 'insights.parsers.tomcat_virtual_dir_context.TomcatVirtualDirContextFallback'>: {insights.specs.Specs.tomcat_vdc_fallback}, <class 'insights.parsers.tomcat_virtual_dir_context.TomcatVirtualDirContextTargeted'>: {insights.specs.Specs.tomcat_vdc_targeted}, <class 'insights.parsers.tomcat_xml.TomcatWebXml'>: {insights.specs.Specs.tomcat_web_xml}, <class 'insights.parsers.tomcat_xml.TomcatServerXml'>: {insights.specs.Specs.tomcat_server_xml}, <class 'insights.parsers.transparent_hugepage.ThpUseZeroPage'>: {insights.specs.Specs.thp_use_zero_page}, <class 'insights.parsers.transparent_hugepage.ThpEnabled'>: {insights.specs.Specs.thp_enabled}, <class 'insights.parsers.tuned.Tuned'>: {insights.specs.Specs.tuned_adm}, <class 'insights.parsers.tuned_conf.TunedConfIni'>: {insights.specs.Specs.tuned_conf}, <class 'insights.parsers.udev_rules.UdevRulesFCWWPN'>: {insights.specs.Specs.udev_fc_wwpn_id_rules}, <class 'insights.parsers.up2date.Up2Date'>: {insights.specs.Specs.up2date}, <class 'insights.parsers.up2date_log.Up2dateLog'>: {insights.specs.Specs.up2date_log}, <class 'insights.parsers.uptime.Uptime'>: {insights.specs.Specs.uptime}, <class 'insights.parsers.vdo_status.VDOStatus'>: {insights.specs.Specs.vdo_status}, <class 'insights.parsers.vdsm_conf.VDSMConfIni'>: {insights.specs.Specs.vdsm_conf}, <class 'insights.parsers.vdsm_conf.VDSMLoggerConf'>: {insights.specs.Specs.vdsm_logger_conf}, <class 'insights.parsers.vdsm_log.VDSMLog'>: {insights.specs.Specs.vdsm_log}, <class 'insights.parsers.vdsm_log.VDSMImportLog'>: {insights.specs.Specs.vdsm_import_log}, <class 'insights.parsers.vgdisplay.VgDisplay'>: {insights.specs.Specs.vgdisplay}, <class 'insights.parsers.virsh_list_all.VirshListAll'>: {insights.specs.Specs.virsh_list_all}, <class 'insights.parsers.virt_uuid_facts.VirtUuidFacts'>: {insights.specs.Specs.virt_uuid_facts}, <class 'insights.parsers.virt_what.VirtWhat'>: {insights.specs.Specs.virt_what}, <class 'insights.parsers.virt_who_conf.VirtWhoConf'>: {insights.specs.Specs.virt_who_conf}, <class 'insights.parsers.virtlogd_conf.VirtlogdConf'>: {insights.specs.Specs.virtlogd_conf}, <class 'insights.parsers.vma_ra_enabled_s390x.VmaRaEnabledS390x'>: {insights.specs.Specs.vma_ra_enabled}, <class 'insights.parsers.vmcore_dmesg.VMCoreDmesg'>: {insights.specs.Specs.vmcore_dmesg}, <class 'insights.parsers.vmware_tools_conf.VMwareToolsConf'>: {insights.specs.Specs.vmware_tools_conf}, <class 'insights.parsers.vsftpd.VsftpdPamConf'>: {insights.specs.Specs.vsftpd}, <class 'insights.parsers.vsftpd.VsftpdConf'>: {insights.specs.Specs.vsftpd_conf}, <class 'insights.parsers.x86_debug.X86IBPBEnabled'>: {insights.specs.Specs.x86_ibpb_enabled}, <class 'insights.parsers.x86_debug.X86IBRSEnabled'>: {insights.specs.Specs.x86_ibrs_enabled}, <class 'insights.parsers.x86_debug.X86PTIEnabled'>: {insights.specs.Specs.x86_pti_enabled}, <class 'insights.parsers.x86_debug.X86RETPEnabled'>: {insights.specs.Specs.x86_retp_enabled}, <class 'insights.parsers.xfs_info.XFSInfo'>: {insights.specs.Specs.xfs_info}, <class 'insights.parsers.xinetd_conf.XinetdConf'>: {insights.specs.Specs.xinetd_conf}, <class 'insights.parsers.yum_conf.YumConf'>: {insights.specs.Specs.yum_conf}, <class 'insights.parsers.yum_list_installed.YumListInstalled'>: {insights.specs.Specs.yum_list_installed}, <class 'insights.parsers.yum_repos_d.YumReposD'>: {insights.specs.Specs.yum_repos_d}, <class 'insights.parsers.yumlog.YumLog'>: {insights.specs.Specs.yum_log}, <class 'insights.parsers.zdump_v.ZdumpV'>: {insights.specs.Specs.zdump_v}, <class 'insights.parsers.zipl_conf.ZiplConf'>: {insights.specs.Specs.zipl_conf}, <class 'insights.combiners.ceph_osd_tree.CephOsdTree'>: {<class 'insights.parsers.ceph_cmd_json_parsing.CephOsdTree'>, <class 'insights.parsers.ceph_osd_tree_text.CephOsdTreeText'>, <class 'insights.parsers.ceph_insights.CephInsights'>}, <class 'insights.combiners.ceph_version.CephVersion'>: {<class 'insights.parsers.ceph_version.CephVersion'>, <class 'insights.parsers.ceph_cmd_json_parsing.CephReport'>, <class 'insights.parsers.ceph_insights.CephInsights'>}, <class 'insights.combiners.cpu_vulns_all.CpuVulnsAll'>: {<class 'insights.parsers.cpu_vulns.CpuVulns'>}, <class 'insights.combiners.dmesg.Dmesg'>: {<class 'insights.parsers.dmesg.DmesgLineList'>, <class 'insights.parsers.dmesg_log.DmesgLog'>}, <class 'insights.combiners.dnsmasq_conf_all.DnsmasqConfTree'>: {<class 'insights.parsers.dnsmasq_config.DnsmasqConf'>}, <class 'insights.combiners.grub_conf.BootLoaderEntries'>: {<class 'insights.parsers.ls_sys_firmware.LsSysFirmware'>, <class 'insights.parsers.grub_conf.BootLoaderEntries'>}, <class 'insights.combiners.grub_conf.GrubConf'>: {<class 'insights.parsers.grub_conf.Grub1Config'>, <class 'insights.parsers.grub_conf.Grub2EFIConfig'>, <class 'insights.combiners.redhat_release.RedHatRelease'>, <class 'insights.parsers.installed_rpms.InstalledRpms'>, <class 'insights.parsers.grub_conf.Grub2Config'>, <class 'insights.combiners.grub_conf.BootLoaderEntries'>, <class 'insights.parsers.grub_conf.Grub1EFIConfig'>, <class 'insights.parsers.cmdline.CmdLine'>, <class 'insights.parsers.ls_sys_firmware.LsSysFirmware'>}, <class 'insights.combiners.hostname.Hostname'>: {<class 'insights.parsers.hostname.HostnameDefault'>, <class 'insights.parsers.facter.Facter'>, <class 'insights.parsers.hostname.Hostname'>, <class 'insights.parsers.systemid.SystemID'>, <class 'insights.parsers.hostname.HostnameShort'>}, <function hostname>: {<class 'insights.parsers.hostname.HostnameDefault'>, <class 'insights.parsers.facter.Facter'>, <class 'insights.parsers.hostname.Hostname'>, <class 'insights.parsers.systemid.SystemID'>, <class 'insights.parsers.hostname.HostnameShort'>}, <class 'insights.combiners.httpd_conf.HttpdConfAll'>: {<class 'insights.parsers.httpd_conf.HttpdConf'>}, <class 'insights.combiners.httpd_conf._HttpdConf'>: {insights.specs.Specs.httpd_conf}, <class 'insights.combiners.httpd_conf.HttpdConfTree'>: {<class 'insights.combiners.httpd_conf._HttpdConf'>}, <class 'insights.combiners.httpd_conf._HttpdConfSclHttpd24'>: {insights.specs.Specs.httpd_conf_scl_httpd24}, <class 'insights.combiners.httpd_conf.HttpdConfSclHttpd24Tree'>: {<class 'insights.combiners.httpd_conf._HttpdConfSclHttpd24'>}, <class 'insights.combiners.httpd_conf._HttpdConfSclJbcsHttpd24'>: {insights.specs.Specs.httpd_conf_scl_jbcs_httpd24}, <class 'insights.combiners.httpd_conf.HttpdConfSclJbcsHttpd24Tree'>: {<class 'insights.combiners.httpd_conf._HttpdConfSclJbcsHttpd24'>}, <class 'insights.combiners.ipcs_semaphores.IpcsSemaphores'>: {<class 'insights.parsers.ps.PsAuxcww'>, <class 'insights.parsers.ipcs.IpcsSI'>, <class 'insights.parsers.ipcs.IpcsS'>}, <class 'insights.combiners.ipcs_shared_memory.IpcsSharedMemory'>: {<class 'insights.parsers.ipcs.IpcsM'>, <class 'insights.parsers.ipcs.IpcsMP'>}, <class 'insights.combiners.ipv6.IPv6'>: {<class 'insights.parsers.uname.Uname'>, <class 'insights.parsers.lsmod.LsMod'>, <class 'insights.parsers.sysctl.Sysctl'>, <class 'insights.parsers.cmdline.CmdLine'>, <class 'insights.parsers.modprobe.ModProbe'>}, <class 'insights.combiners.journald_conf.JournaldConfAll'>: {<class 'insights.parsers.journald_conf.UsrJournaldConfD'>, <class 'insights.parsers.journald_conf.EtcJournaldConf'>, <class 'insights.parsers.journald_conf.EtcJournaldConfD'>}, <class 'insights.combiners.krb5.AllKrb5Conf'>: {<class 'insights.parsers.krb5.Krb5Configuration'>}, <class 'insights.combiners.limits_conf.AllLimitsConf'>: {<class 'insights.parsers.limits_conf.LimitsConf'>}, <class 'insights.combiners.logrotate_conf.LogrotateConfAll'>: {<class 'insights.parsers.logrotate_conf.LogrotateConf'>}, <class 'insights.combiners.logrotate_conf._LogRotateConf'>: {insights.specs.Specs.logrotate_conf}, <class 'insights.combiners.logrotate_conf.LogRotateConfTree'>: {<class 'insights.combiners.logrotate_conf._LogRotateConf'>}, <class 'insights.combiners.lvm.Lvm'>: {<class 'insights.parsers.lvm.PvsHeadings'>, <class 'insights.parsers.lvm.VgsHeadings'>, <class 'insights.parsers.lvm.LvsHeadings'>, <class 'insights.parsers.lvm.Pvs'>, <class 'insights.parsers.lvm.Lvs'>, <class 'insights.parsers.lvm.Vgs'>}, <class 'insights.combiners.lvm.LvmAll'>: {<class 'insights.parsers.lvm.PvsAll'>, <class 'insights.parsers.lvm.LvsAll'>, <class 'insights.parsers.lvm.VgsAll'>}, <class 'insights.combiners.md5check.NormalMD5'>: {<class 'insights.parsers.md5check.NormalMD5'>}, <class 'insights.combiners.mlx4_port.Mlx4Port'>: {<class 'insights.parsers.mlx4_port.Mlx4Port'>}, <class 'insights.combiners.modinfo.ModInfo'>: {<class 'insights.parsers.modinfo.ModInfoAll'>, <class 'insights.parsers.modinfo.ModInfoEach'>}, <class 'insights.combiners.modprobe.AllModProbe'>: {<class 'insights.parsers.modprobe.ModProbe'>}, <function multinode_product>: {<class 'insights.parsers.metadata.MetadataJson'>, <function hostname>, insights.specs.Specs.machine_id}, <function docker>: {<function multinode_product>}, <function OSP>: {<function multinode_product>}, <function RHEV>: {<function multinode_product>}, <function RHEL>: {<function multinode_product>}, <class 'insights.combiners.netstat.NetworkStats'>: {<class 'insights.parsers.ip.IpLinkInfo'>, <class 'insights.parsers.netstat.Netstat_I'>}, <class 'insights.combiners.nfs_exports.AllNFSExports'>: {<class 'insights.parsers.nfs_exports.NFSExportsD'>, <class 'insights.parsers.nfs_exports.NFSExports'>}, <class 'insights.combiners.nginx_conf._NginxConf'>: {insights.specs.Specs.nginx_conf}, <class 'insights.combiners.nginx_conf.NginxConfTree'>: {<class 'insights.combiners.nginx_conf._NginxConf'>}, <class 'insights.combiners.nmcli_dev_show.AllNmcliDevShow'>: {<class 'insights.parsers.nmcli.NmcliDevShow'>, <class 'insights.parsers.nmcli.NmcliDevShowSos'>}, <class 'insights.combiners.package_provides_httpd.PackageProvidesHttpdAll'>: {<class 'insights.parsers.package_provides_httpd.PackageProvidesHttpd'>}, <class 'insights.combiners.package_provides_java.PackageProvidesJavaAll'>: {<class 'insights.parsers.package_provides_java.PackageProvidesJava'>}, <class 'insights.combiners.ps.Ps'>: {<class 'insights.parsers.ps.PsAuxcww'>, <class 'insights.parsers.ps.PsAux'>, <class 'insights.parsers.ps.PsAlxwww'>, <class 'insights.parsers.ps.PsAuxww'>, <class 'insights.parsers.ps.PsEf'>, <class 'insights.parsers.ps.PsEo'>}, <class 'insights.combiners.rhsm_release.RhsmRelease'>: {<class 'insights.parsers.rhsm_releasever.RhsmReleaseVer'>, <class 'insights.parsers.subscription_manager_release.SubscriptionManagerReleaseShow'>}, <class 'insights.combiners.sap.Sap'>: {<class 'insights.parsers.lssap.Lssap'>, <class 'insights.parsers.saphostctrl.SAPHostCtrlInstances'>, <function hostname>}, <class 'insights.combiners.selinux.SELinux'>: {<class 'insights.parsers.sestatus.SEStatus'>, <class 'insights.combiners.grub_conf.GrubConf'>, <class 'insights.parsers.selinux_config.SelinuxConfig'>}, <class 'insights.combiners.services.Services'>: {<class 'insights.parsers.chkconfig.ChkConfig'>, <class 'insights.parsers.systemd.unitfiles.UnitFiles'>}, <class 'insights.combiners.smt.CpuTopology'>: {<class 'insights.parsers.smt.CpuSiblings'>, <class 'insights.parsers.smt.CpuCoreOnline'>}, <class 'insights.combiners.tmpfilesd.AllTmpFiles'>: {<class 'insights.parsers.tmpfilesd.TmpFilesD'>}, <class 'insights.combiners.tomcat_virtual_dir_context.TomcatVirtualDirContextCombined'>: {<class 'insights.parsers.tomcat_virtual_dir_context.TomcatVirtualDirContextTargeted'>, <class 'insights.parsers.tomcat_virtual_dir_context.TomcatVirtualDirContextFallback'>}, <function uptime>: {<class 'insights.parsers.uptime.Uptime'>, <class 'insights.parsers.facter.Facter'>}, <class 'insights.combiners.user_namespaces.UserNamespaces'>: {<class 'insights.parsers.cmdline.CmdLine'>, <class 'insights.parsers.grub_conf.Grub2Config'>}, <class 'insights.combiners.virt_what.VirtWhat'>: {<class 'insights.parsers.virt_what.VirtWhat'>, <class 'insights.parsers.dmidecode.DMIDecode'>}, <class 'insights.combiners.virt_who_conf.AllVirtWhoConf'>: {<class 'insights.parsers.virt_who_conf.VirtWhoConf'>, <class 'insights.parsers.sysconfig.VirtWhoSysconfig'>}, <class 'insights.combiners.x86_page_branch.X86PageBranch'>: {<class 'insights.parsers.x86_debug.X86RETPEnabled'>, <class 'insights.parsers.x86_debug.X86IBRSEnabled'>, <class 'insights.parsers.x86_debug.X86PTIEnabled'>, <class 'insights.parsers.x86_debug.X86IBPBEnabled'>}}), broker=None)[source]
insights.tools.query.dump_ds(d, space='')[source]
insights.tools.query.dump_info(comps)[source]
insights.tools.query.get_components(comps, default_module)[source]
insights.tools.query.get_datasources()[source]
insights.tools.query.get_matching_datasources(paths)[source]
insights.tools.query.get_pydoc(spec)[source]
insights.tools.query.get_source(spec)[source]
insights.tools.query.glob2re(pat)[source]

Translate a shell PATTERN to a regular expression. There is no way to quote meta-characters.

Stolen from https://stackoverflow.com/a/29820981/1451664

insights.tools.query.load_default_components()[source]
insights.tools.query.load_obj(spec)[source]
insights.tools.query.main()[source]
insights.tools.query.matches(d, path)[source]
insights.tools.query.parse_args()[source]
insights.tools.query.preload_components(comps)[source]
insights.tools.query.print_component(comp, verbose=False, specs=False)[source]
insights.tools.query.print_results(results, types, verbose, specs)[source]

insights.util

class insights.util.KeyPassingDefaultDict(*args, **kwargs)[source]

Bases: collections.defaultdict

A default dict that passes the key to its factory function.

insights.util.case_variants(*elements)[source]

For configs which take case-insensitive options, it is necessary to extend the list with various common case variants (all combinations are not practical). In the future, this should be removed, when parser filters are made case-insensitive.

Parameters

*elements (str) -- list of elements which need case-sensitive expansion, you should use default case such as Ciphers, MACs, UsePAM, MaxAuthTries

Returns

list of all expanded elements

Return type

list

insights.util.check_path(path)[source]
insights.util.defaults(default=None)[source]

Catches any exception thrown by the wrapped function and returns default instead.

Parameters

default (object) -- The default value to return if the wrapped function throws an exception

insights.util.deprecated(func, solution)[source]

Mark a parser or combiner as deprecated, and give a message of how to fix this. This will emit a warning in the logs when the function is used. When combined with modifications to conftest, this causes deprecations to become fatal errors when testing, so they get fixed.

Parameters
  • func (function) -- the function or method being deprecated.

  • solution (str) -- a string describing the replacement class, method or function that replaces the thing being deprecated. For example, “use the fnord() function” or “use the search() method with the parameter name=’(value)’”.

insights.util.ensure_dir(path, dirname=False)[source]
insights.util.enum(*e)[source]
insights.util.get_addr()[source]
insights.util.get_path_for_system_id(category, system_id)[source]
insights.util.keys_in(items, *args)[source]

Use this utility function to ensure multiple keys are in one or more dicts. Returns True if all keys are present in at least one of the given dicts, otherwise returns False.

Parameters
  • items: Iterable of required keys

  • Variable number of subsequent arguments, each one being a dict to check.

insights.util.logging_level(logger, level)[source]
insights.util.make_iter(item)[source]
class insights.util.objectview(dict_)[source]

Bases: object

insights.util.parse_bool(s, default=False)[source]

Return the boolean value of an English string or default if it can’t be determined.

insights.util.parse_keypair_lines(content, delim='|', kv_sep='=')[source]

Parses a set of entities, where each entity is a set of key-value pairs contained all on one line. Each entity is parsed into a dictionary and added to the list returned from this function.

insights.util.rsplit(_str, seps)[source]

Splits _str by the first sep in seps that is found from the right side. Returns a tuple without the separator.

insights.util.which(cmd, env=None)[source]
insights.util.word_wrap(line, wrap_len=72)[source]
class insights.util.file_permissions.FilePermissions(line)[source]

Bases: object

Class for parsing ls -l line targeted at concrete file and handling parsed properties.

It is useful for checking file permissions and owner.

perms_owner

Owner permissions, e.g. ‘rwx’

Type

str

perms_group

Group permissions

Type

str

perms_other

Other permissions

Type

str

owner

Owner user name

Type

str

group

Owner group name

Type

str

path

Full path to file

Type

str

Note

This class does not support Access Control Lists (ACLs). If that is needed in the future, it would be preferable to create another class than extend this one. Advanced File Permissions - SUID, SGID and Sticky Bit - are not yet correctly parsed.

all_zero()[source]

Checks that all permissions are zero (‘---------‘ in ls -l) - nobody but root can read, write, exec.

Returns

True if all permissions are zero (‘---------‘)

Return type

bool

classmethod from_dict(dirent)[source]

Create a new FilePermissions object from the given dictionary. This works with the FileListing parser class, which has already done the hard work of pulling many of these fields out. We create an object with all the dictionary keys available as properties, and also split the perms string up into owner, group

group_can_only_read()[source]

Checks if group has read-only permissions for the file. Therefore, write and execute bits for group must be unset and read bit must be set.

Returns

True if group can only read the file.

Return type

bool

group_can_read()[source]

Checks if group can read the file. Write and execute bits are not evaluated.

Returns

True if group can read the file.

Return type

bool

group_can_write()[source]

Checks if group can write the file. Read and execute bits are not evaluated.

Returns

True if group can write the file.

Return type

bool

only_root_can_read(root_group_can_read=True)[source]

Checks if only root is allowed to read the file (and anyone else is forbidden from reading). Write and execute bits are not checked. The read bits for root user/group are not checked because root can read/write anything regardless of the read/write permissions.

When called with root_root_group_can_read = True:

  • owner must be root

  • and ‘others’ permissions must not contain read

  • and if group owner is not root, the ‘group’ permissions must not contain read

Valid cases:

rwxrwxrwx    owner   ownergroup
-------------------------------
???-??-??    root    nonroot
??????-??    root    root
r--r-----    root    root
r--------    root    nonroot
rwxrwx---    root    root
rwxrwx-wx    root    root

Specifically, these cases are NOT valid because the owner can chmod permissions and grant themselves permissions without root’s knowledge:

rwxrwxrwx    owner   ownergroup
-------------------------------
-??-??-??    nonroot nonroot
-??r??-??    nonroot root
---------    nonroot nonroot

When called with root_root_group_can_read = False:

  • owner must be root

  • and ‘group’ and ‘others’ permissions must not contain read

Valid cases:

rwxrwxrwx    owner   ownergroup
-------------------------------
???-??-??    root    ?
r--------    root    root
r--------    root    nonroot
rwx-wx---    root    root
rwx-wx---    root    nonroot
rwx-wxrwx    root    nonroot

Specifically, these cases are NOT valid because the owner can chmod permissions and grant themselves permissions without root’s knowledge:

rwxrwxrwx    owner   ownergroup
-------------------------------
-??-??-??    nonroot nonroot
---------    nonroot nonroot
Parameters
  • root_group_can_read (bool) -- if set to True, this tests whether the

  • group can also read the file. ('root') --

Returns

True if only root user (or optionally root group) can read the file.

Return type

bool

only_root_can_write(root_group_can_write=True)[source]

Checks if only root is allowed to write the file (and anyone else is barred from writing). Read and execute bits are not checked. The write bits for root user/group are not checked because root can read/write anything regardless of the read/write permissions.

When called with root_root_group_can_write = True:

  • owner must be root

  • and ‘others’ permissions must not contain write

  • and if group owner is not root, the ‘group’ permissions must not contain write

Valid cases:

rwxrwxrwx    owner   ownergroup
-------------------------------
????-??-?    root    nonroot
???????-?    root    root
-w--w----    root    root
-w-------    root    root
rwxrwx---    root    root
rwxrwxr-x    root    root

Specifically, these cases are NOT valid because the owner can chmod permissions and grant themselves permissions without root’s knowledge:

rwxrwxrwx    owner   ownergroup
-------------------------------
?-??-??-?    nonroot nonroot
?-??w??-?    nonroot root
---------    nonroot nonroot

When called with root_root_group_can_write = False:

  • owner must be root

  • and ‘group’ and ‘others’ permissions must not contain write

Valid cases:

rwxrwxrwx    owner   ownergroup
-------------------------------
????-??-?    root    ?
-w-------    root    root
-w-------    root    nonroot
rwxr-x---    root    root
rwxr-x---    root    nonroot
rwxr-xrwx    root    nonroot

Specifically, these cases are NOT valid because the owner can chmod permissions and grant themselves permissions without root’s knowledge:

rwxrwxrwx    owner   ownergroup
-------------------------------
?-??-??-?    nonroot nonroot
---------    nonroot nonroot
Parameters
  • root_group_can_write (bool) -- if set to True, this tests whether

  • group can also write to the file. ('root') --

Returns

True if only root user (or optionally root group) can write the file.

Return type

bool

others_can_only_read()[source]

Checks if ‘others’ has read-only permissions for the file. Therefore, write and execute bits for ‘others’ must be unset and read bit must be set. (‘others’ in the sense of unix permissions that know about user, group, others.)

Returns

True if ‘others’ can only read the file.

Return type

bool

others_can_read()[source]

Checks if ‘others’ can read the file. Write and execute bits are not evaluated. (‘others’ in the sense of unix permissions that know about user, group, others.)

Returns

True if ‘others’ can read the file.

Return type

bool

others_can_write()[source]

Checks if ‘others’ can write the file. Read and execute bits are not evaluated. (‘others’ in the sense of unix permissions that know about user, group, others.)

Returns

True if ‘others’ can write the file.

Return type

bool

owned_by(owner, also_check_group=False)[source]

Checks if the specified user or user and group own the file.

Parameters
  • owner (str) -- the user (or group) name for which we ask about ownership

  • also_check_group (bool) -- if set to True, both user owner and group owner checked if set to False, only user owner checked

Returns

True if owner of the file is the specified owner

Return type

bool

owner_can_only_read()[source]

Checks if owner has read-only permissions for the file. Therefore, write and execute bits for owner must be unset and read bit must be set.

Returns

True if owner can only read the file.

Return type

bool

owner_can_read()[source]

Checks if owner can read the file. Write and execute bits are not evaluated.

Returns

True if owner can read the file.

Return type

bool

owner_can_write()[source]

Checks if owner can write the file. Read and execute bits are not evaluated.

Returns

True if owner can write the file.

Return type

bool