{{ row.model_name | default(row.id) }}
Basic Information
| Attribute |
Value |
| Model Name | {{ row.model_name }} |
| Serial Number | {{ row.serial_number }} |
| Firmware Version | {{ row.firmware_version }} |
| NVMe PCI Vendor ID | {{ row.nvme_pci_vendor.id if row.nvme_pci_vendor else 'N/A' }} |
| NVMe Controller ID | {{ row.nvme_controller_id }} |
| NVMe Version | {{ row.nvme_version.string if row.nvme_version else 'N/A' }} |
SMART Status
{% if row.smart_status %}
| Field |
Value |
| Passed | {{ row.smart_status.passed if row.smart_status.passed is not none else 'N/A' }} |
| NVMe Value | {{ row.smart_status.nvme.value if row.smart_status.nvme else 'N/A' }} |
{% else %}
No SMART status available.
{% endif %}
SMART Health Information
{% if row.nvme_smart_health_information_log %}
| Field |
Value |
| Critical Warning | {{ row.nvme_smart_health_information_log.critical_warning if row.nvme_smart_health_information_log.critical_warning is not none else 'N/A' }} |
| Temperature | {{ row.nvme_smart_health_information_log.temperature if row.nvme_smart_health_information_log.temperature is not none else 'N/A' }} |
| Available Spare | {{ row.nvme_smart_health_information_log.available_spare if row.nvme_smart_health_information_log.available_spare is not none else 'N/A' }} |
| Percentage Used | {{ row.nvme_smart_health_information_log.percentage_used if row.nvme_smart_health_information_log.percentage_used is not none else 'N/A' }} |
| Data Units Read | {{ row.nvme_smart_health_information_log.data_units_read if row.nvme_smart_health_information_log.data_units_read is not none else 'N/A' }} |
| Data Units Written | {{ row.nvme_smart_health_information_log.data_units_written if row.nvme_smart_health_information_log.data_units_written is not none else 'N/A' }} |
{% else %}
No SMART health information available.
{% endif %}
Usage
{% if row.usage %}
| Field |
Value |
| Total | {{ row.usage.Total }} |
| Used | {{ row.usage.Used }} |
| Free | {{ row.usage.Free }} |
| Percent Used | {{ row.usage.Percent }}% |
{% else %}
No usage information available.
{% endif %}
Temperature
{% if row.temperature %}
| Field |
Value |
| Current Temperature | {{ row.temperature.current if row.temperature.current is not none else 'N/A' }}°C |
{% else %}
No temperature information available.
{% endif %}
Power On Time
{% if row.power_on_time %}
| Field |
Value |
| Power On Time (hours) | {{ row.power_on_time.hours if row.power_on_time.hours is not none else 'N/A' }} |
{% else %}
No power on time information available.
{% endif %}
SMARTCTL
{% if row.smartctl %}
| Field |
Value |
| Version | {{ row.smartctl.version if row.smartctl.version else 'N/A' }} |
| Platform Info | {{ row.smartctl.platform_info if row.smartctl.platform_info else 'N/A' }} |
| Messages | {{ row.smartctl.messages | join(', ') if row.smartctl.messages else 'N/A' }} |
{% else %}
No SMARTCTL information available.
{% endif %}
{% endfor %}