mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
9113c6cf0f
Fix the following metrics that were exported as zero because the exporter did not know how to read them for SCSI devices: - smartctl_device_bytes_read - smartctl_device_bytes_written - smartctl_device_power_cycle_count New metrics: - smartctl_read_errors_corrected_by_eccdelayed - smartctl_read_errors_corrected_by_eccfast - smartctl_write_errors_corrected_by_eccdelayed - smartctl_write_errors_corrected_by_eccfast Fix labels: - smartctl_device{model_name} is now populated for SCSI/SAS, using scsi_model_name. New labels: - smartctl_device{} gains: scsi_product,scsi_revision,scsi_vendor,scsi_version Signed-off-by: Robin H. Johnson <rjohnson@coreweave.com>
357 lines
7.9 KiB
Go
357 lines
7.9 KiB
Go
// Copyright 2022 The Prometheus Authors
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
metricSmartctlVersion = prometheus.NewDesc(
|
|
"smartctl_version",
|
|
"smartctl version",
|
|
[]string{
|
|
"json_format_version",
|
|
"smartctl_version",
|
|
"svn_revision",
|
|
"build_info",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceModel = prometheus.NewDesc(
|
|
"smartctl_device",
|
|
"Device info",
|
|
[]string{
|
|
"device",
|
|
"interface",
|
|
"protocol",
|
|
"model_family",
|
|
"model_name",
|
|
"serial_number",
|
|
"ata_additional_product_id",
|
|
"firmware_version",
|
|
"ata_version",
|
|
"sata_version",
|
|
"form_factor",
|
|
// scsi_model_name is mapped into model_name
|
|
"scsi_vendor",
|
|
"scsi_product",
|
|
"scsi_revision",
|
|
"scsi_version",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceCount = prometheus.NewDesc(
|
|
"smartctl_devices",
|
|
"Number of devices configured or dynamically discovered",
|
|
[]string{},
|
|
nil,
|
|
)
|
|
metricDeviceCapacityBlocks = prometheus.NewDesc(
|
|
"smartctl_device_capacity_blocks",
|
|
"Device capacity in blocks",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceCapacityBytes = prometheus.NewDesc(
|
|
"smartctl_device_capacity_bytes",
|
|
"Device capacity in bytes",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceTotalCapacityBytes = prometheus.NewDesc(
|
|
"smartctl_device_nvme_capacity_bytes",
|
|
"NVMe device total capacity bytes",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceBlockSize = prometheus.NewDesc(
|
|
"smartctl_device_block_size",
|
|
"Device block size",
|
|
[]string{
|
|
"device",
|
|
"blocks_type",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceInterfaceSpeed = prometheus.NewDesc(
|
|
"smartctl_device_interface_speed",
|
|
"Device interface speed, bits per second",
|
|
[]string{
|
|
"device",
|
|
"speed_type",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceAttribute = prometheus.NewDesc(
|
|
"smartctl_device_attribute",
|
|
"Device attributes",
|
|
[]string{
|
|
"device",
|
|
"attribute_name",
|
|
"attribute_flags_short",
|
|
"attribute_flags_long",
|
|
"attribute_value_type",
|
|
"attribute_id",
|
|
},
|
|
nil,
|
|
)
|
|
metricDevicePowerOnSeconds = prometheus.NewDesc(
|
|
"smartctl_device_power_on_seconds",
|
|
"Device power on seconds",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceRotationRate = prometheus.NewDesc(
|
|
"smartctl_device_rotation_rate",
|
|
"Device rotation rate",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceTemperature = prometheus.NewDesc(
|
|
"smartctl_device_temperature",
|
|
"Device temperature celsius",
|
|
[]string{
|
|
"device",
|
|
"temperature_type",
|
|
},
|
|
nil,
|
|
)
|
|
metricDevicePowerCycleCount = prometheus.NewDesc(
|
|
"smartctl_device_power_cycle_count",
|
|
"Device power cycle count",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDevicePercentageUsed = prometheus.NewDesc(
|
|
"smartctl_device_percentage_used",
|
|
"Device write percentage used",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceAvailableSpare = prometheus.NewDesc(
|
|
"smartctl_device_available_spare",
|
|
"Normalized percentage (0 to 100%) of the remaining spare capacity available",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceAvailableSpareThreshold = prometheus.NewDesc(
|
|
"smartctl_device_available_spare_threshold",
|
|
"When the Available Spare falls below the threshold indicated in this field, an asynchronous event completion may occur. The value is indicated as a normalized percentage (0 to 100%)",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceCriticalWarning = prometheus.NewDesc(
|
|
"smartctl_device_critical_warning",
|
|
"This field indicates critical warnings for the state of the controller",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceMediaErrors = prometheus.NewDesc(
|
|
"smartctl_device_media_errors",
|
|
"Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceNumErrLogEntries = prometheus.NewDesc(
|
|
"smartctl_device_num_err_log_entries",
|
|
"Contains the number of Error Information log entries over the life of the controller",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceBytesRead = prometheus.NewDesc(
|
|
"smartctl_device_bytes_read",
|
|
"",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceBytesWritten = prometheus.NewDesc(
|
|
"smartctl_device_bytes_written",
|
|
"",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceSmartStatus = prometheus.NewDesc(
|
|
"smartctl_device_smart_status",
|
|
"General smart status",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceExitStatus = prometheus.NewDesc(
|
|
"smartctl_device_smartctl_exit_status",
|
|
"Exit status of smartctl on device",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceState = prometheus.NewDesc(
|
|
"smartctl_device_state",
|
|
"Device state (0=active, 1=standby, 2=sleep, 3=dst, 4=offline, 5=sct)",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceStatistics = prometheus.NewDesc(
|
|
"smartctl_device_statistics",
|
|
"Device statistics",
|
|
[]string{
|
|
"device",
|
|
"statistic_table",
|
|
"statistic_name",
|
|
"statistic_flags_short",
|
|
"statistic_flags_long",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceErrorLogCount = prometheus.NewDesc(
|
|
"smartctl_device_error_log_count",
|
|
"Device SMART error log count",
|
|
[]string{
|
|
"device",
|
|
"error_log_type",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceSelfTestLogCount = prometheus.NewDesc(
|
|
"smartctl_device_self_test_log_count",
|
|
"Device SMART self test log count",
|
|
[]string{
|
|
"device",
|
|
"self_test_log_type",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceSelfTestLogErrorCount = prometheus.NewDesc(
|
|
"smartctl_device_self_test_log_error_count",
|
|
"Device SMART self test log error count",
|
|
[]string{
|
|
"device",
|
|
"self_test_log_type",
|
|
},
|
|
nil,
|
|
)
|
|
metricDeviceERCSeconds = prometheus.NewDesc(
|
|
"smartctl_device_erc_seconds",
|
|
"Device SMART Error Recovery Control Seconds",
|
|
[]string{
|
|
"device",
|
|
"op_type",
|
|
},
|
|
nil,
|
|
)
|
|
metricSCSIGrownDefectList = prometheus.NewDesc(
|
|
"smartctl_scsi_grown_defect_list",
|
|
"Device SCSI grown defect list counter",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricReadErrorsCorrectedByRereadsRewrites = prometheus.NewDesc(
|
|
"smartctl_read_errors_corrected_by_rereads_rewrites",
|
|
"Read Errors Corrected by ReReads/ReWrites",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricReadErrorsCorrectedByEccFast = prometheus.NewDesc(
|
|
"smartctl_read_errors_corrected_by_eccfast",
|
|
"Read Errors Corrected by ECC Fast",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricReadErrorsCorrectedByEccDelayed = prometheus.NewDesc(
|
|
"smartctl_read_errors_corrected_by_eccdelayed",
|
|
"Read Errors Corrected by ECC Delayed",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricReadTotalUncorrectedErrors = prometheus.NewDesc(
|
|
"smartctl_read_total_uncorrected_errors",
|
|
"Read Total Uncorrected Errors",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricWriteErrorsCorrectedByRereadsRewrites = prometheus.NewDesc(
|
|
"smartctl_write_errors_corrected_by_rereads_rewrites",
|
|
"Write Errors Corrected by ReReads/ReWrites",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricWriteErrorsCorrectedByEccFast = prometheus.NewDesc(
|
|
"smartctl_write_errors_corrected_by_eccfast",
|
|
"Write Errors Corrected by ECC Fast",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricWriteErrorsCorrectedByEccDelayed = prometheus.NewDesc(
|
|
"smartctl_write_errors_corrected_by_eccdelayed",
|
|
"Write Errors Corrected by ECC Delayed",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
metricWriteTotalUncorrectedErrors = prometheus.NewDesc(
|
|
"smartctl_write_total_uncorrected_errors",
|
|
"Write Total Uncorrected Errors",
|
|
[]string{
|
|
"device",
|
|
},
|
|
nil,
|
|
)
|
|
)
|