NVMeCoreIOTimeout - The timeout for I/O operations submitted to NVMe devices

This parser reads the content of /sys/module/nvme_core/parameters/io_timeout.

class insights.parsers.nvme_core_io_timeout.NVMeCoreIOTimeout(context)[source]

Bases: insights.core.Parser

Class for parsing the content of the /sys/module/nvme_core/parameters/io_timeout.

A typical sample of the content of this file looks like:

4294967295
Raises:
  • SkipComponent -- When content is empty or no parse-able content.
  • ParseException -- When type cannot be recognized.
val

It is used to show the current value of the timeout for I/O operations submitted to NVMe devices.

Type:int

Examples

>>> nciotmo.val
4294967295
parse_content(content)[source]

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