Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

crash: collected metric smartctl_device_rotation_rate with unregistered descriptor #95

Open
pshirshov opened this issue Nov 5, 2022 · 2 comments

Comments

@pshirshov
Copy link

Seems like the presence of certain modern disks breaks the exporter, it just returns a list of error instead of any metrics:

An error has occurred while serving metrics:

4 error(s) occurred:
* collected metric smartctl_device_rotation_rate label:<name:"device" value:"/dev/sda" > label:<name:"model_family" value:"" > label:<name:"model_name" value:"" > label:<name:"serial_number" value:"ZL27NCHC0000C102G1BY" > gauge:<value:7200 >  with unregistered descriptor Desc{fqName: "smartctl_device_rotation_rate", help: "Device rotation rate", constLabels: {}, variableLabels: [device model_family model_name serial_number]}
* collected metric smartctl_device_rotation_rate label:<name:"device" value:"/dev/sdb" > label:<name:"model_family" value:"" > label:<name:"model_name" value:"" > label:<name:"serial_number" value:"3WHR4HGJ" > gauge:<value:7200 >  with unregistered descriptor Desc{fqName: "smartctl_device_rotation_rate", help: "Device rotation rate", constLabels: {}, variableLabels: [device model_family model_name serial_number]}
* collected metric smartctl_device_rotation_rate label:<name:"device" value:"/dev/sdc" > label:<name:"model_family" value:"" > label:<name:"model_name" value:"" > label:<name:"serial_number" value:"ZL267DH30000C043SY5E" > gauge:<value:7200 >  with unregistered descriptor Desc{fqName: "smartctl_device_rotation_rate", help: "Device rotation rate", constLabels: {}, variableLabels: [device model_family model_name serial_number]}
* collected metric smartctl_device_rotation_rate label:<name:"device" value:"/dev/sdd" > label:<name:"model_family" value:"" > label:<name:"model_name" value:"" > label:<name:"serial_number" value:"3WHSW4HP" > gauge:<value:7200 >  with unregistered descriptor Desc{fqName: "smartctl_device_rotation_rate", help: "Device rotation rate", constLabels: {}, variableLabels: [device model_family model_name serial_number]}

The corresponding json for /dev/sda:

❯ smartctl --json --all /dev/sda
{
  "json_format_version": [
    1,
    0
  ],
  "smartctl": {
    "version": [
      7,
      3
    ],
    "svn_revision": "5338",
    "platform_info": "x86_64-linux-5.15.76",
    "build_info": "(local build)",
    "argv": [
      "smartctl",
      "--json",
      "--all",
      "/dev/sda"
    ],
    "exit_status": 0
  },
  "local_time": {
    "time_t": 1667681710,
    "asctime": "Sat Nov  5 20:55:10 2022 GMT"
  },
  "device": {
    "name": "/dev/sda",
    "info_name": "/dev/sda",
    "type": "scsi",
    "protocol": "SCSI"
  },
  "scsi_vendor": "SEAGATE",
  "scsi_product": "ST16000NM002G",
  "scsi_model_name": "SEAGATE ST16000NM002G",
  "scsi_revision": "E003",
  "scsi_version": "SPC-5",
  "user_capacity": {
    "blocks": 31251759104,
    "bytes": 16000900661248
  },
  "logical_block_size": 512,
  "physical_block_size": 4096,
  "scsi_lb_provisioning": {
    "name": "fully provisioned",
    "value": 0,
    "management_enabled": {
      "name": "LBPME",
      "value": 0
    },
    "read_zeros": {
      "name": "LBPRZ",
      "value": 0
    }
  },
  "rotation_rate": 7200,
  "form_factor": {
    "scsi_value": 2,
    "name": "3.5 inches"
  },
  "logical_unit_id": "0x5000c500cab57793",
  "serial_number": "ZL27NCHC0000C102G1BY",
  "device_type": {
    "scsi_terminology": "Peripheral Device Type [PDT]",
    "scsi_value": 0,
    "name": "disk"
  },
  "scsi_transport_protocol": {
    "name": "SAS (SPL-4)",
    "value": 6
  },
  "smart_support": {
    "available": true,
    "enabled": true
  },
  "temperature_warning": {
    "enabled": true
  },
  "smart_status": {
    "passed": true
  },
  "temperature": {
    "current": 28,
    "drive_trip": 60
  },
  "power_on_time": {
    "hours": 18182,
    "minutes": 55
  },
  "scsi_start_stop_cycle_counter": {
    "year_of_manufacture": "2020",
    "week_of_manufacture": "33",
    "specified_cycle_count_over_device_lifetime": 50000,
    "accumulated_start_stop_cycles": 34,
    "specified_load_unload_count_over_device_lifetime": 600000,
    "accumulated_load_unload_cycles": 868
  },
  "scsi_grown_defect_list": 0,
  "scsi_error_counter_log": {
    "read": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 0,
      "gigabytes_processed": "119681.796",
      "total_uncorrected_errors": 0
    },
    "write": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 0,
      "gigabytes_processed": "22840.662",
      "total_uncorrected_errors": 0
    },
    "verify": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 0,
      "gigabytes_processed": "20.934",
      "total_uncorrected_errors": 0
    }
  },
  "scsi_pending_defects": {
    "count": 0
  }
}
@pshirshov pshirshov changed the title crash: collected metric with unregistered descriptor crash: collected metric smartctl_device_rotation_rate with unregistered descriptor Nov 5, 2022
@NiceGuyIT
Copy link
Member

Hi @pshirshov. Is this still an issue? I ran your JSON thru the current exporter and it did not produce any errors.

@yodaldevoid
Copy link

yodaldevoid commented Mar 4, 2024

As of version 0.11.0 I am running into a similar looking issue with both a Toshiba HDWG480 and a Western Digital WD80EFZZ.

Error Message
An error has occurred while serving metrics:

168 error(s) occurred:
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:50} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"2"}  label:{name:"attribute_name"  value:"Throughput_Performance"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"2"}  label:{name:"attribute_name"  value:"Throughput_Performance"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"2"}  label:{name:"attribute_name"  value:"Throughput_Performance"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:50} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"2"}  label:{name:"attribute_name"  value:"Throughput_Performance"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:1} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:11998} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:6} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:50} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,error_rate"}  label:{name:"attribute_flags_short"  value:"PO-R--"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:50} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"8"}  label:{name:"attribute_name"  value:"Seek_Time_Performance"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"8"}  label:{name:"attribute_name"  value:"Seek_Time_Performance"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"8"}  label:{name:"attribute_name"  value:"Seek_Time_Performance"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:50} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,performance"}  label:{name:"attribute_flags_short"  value:"P-S---"}  label:{name:"attribute_id"  value:"8"}  label:{name:"attribute_name"  value:"Seek_Time_Performance"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:149} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:30} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:6} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"191"}  label:{name:"attribute_name"  value:"G-Sense_Error_Rate"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"191"}  label:{name:"attribute_name"  value:"G-Sense_Error_Rate"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"191"}  label:{name:"attribute_name"  value:"G-Sense_Error_Rate"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"191"}  label:{name:"attribute_name"  value:"G-Sense_Error_Rate"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:5} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:12} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:2.14749544484e+11} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online"}  label:{name:"attribute_flags_short"  value:"-O----"}  label:{name:"attribute_id"  value:"220"}  label:{name:"attribute_name"  value:"Disk_Shift"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online"}  label:{name:"attribute_flags_short"  value:"-O----"}  label:{name:"attribute_id"  value:"220"}  label:{name:"attribute_name"  value:"Disk_Shift"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online"}  label:{name:"attribute_flags_short"  value:"-O----"}  label:{name:"attribute_id"  value:"220"}  label:{name:"attribute_name"  value:"Disk_Shift"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:917505} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online"}  label:{name:"attribute_flags_short"  value:"-O----"}  label:{name:"attribute_id"  value:"220"}  label:{name:"attribute_name"  value:"Disk_Shift"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"222"}  label:{name:"attribute_name"  value:"Loaded_Hours"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:142} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"222"}  label:{name:"attribute_name"  value:"Loaded_Hours"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"222"}  label:{name:"attribute_name"  value:"Loaded_Hours"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"222"}  label:{name:"attribute_name"  value:"Loaded_Hours"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"223"}  label:{name:"attribute_name"  value:"Load_Retry_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"223"}  label:{name:"attribute_name"  value:"Load_Retry_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"223"}  label:{name:"attribute_name"  value:"Load_Retry_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"223"}  label:{name:"attribute_name"  value:"Load_Retry_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"224"}  label:{name:"attribute_name"  value:"Load_Friction"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"224"}  label:{name:"attribute_name"  value:"Load_Friction"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"224"}  label:{name:"attribute_name"  value:"Load_Friction"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"224"}  label:{name:"attribute_name"  value:"Load_Friction"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OS--K"}  label:{name:"attribute_id"  value:"226"}  label:{name:"attribute_name"  value:"Load-in_Time"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OS--K"}  label:{name:"attribute_id"  value:"226"}  label:{name:"attribute_name"  value:"Load-in_Time"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OS--K"}  label:{name:"attribute_id"  value:"226"}  label:{name:"attribute_name"  value:"Load-in_Time"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OS--K"}  label:{name:"attribute_id"  value:"226"}  label:{name:"attribute_name"  value:"Load-in_Time"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:507} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure"}  label:{name:"attribute_flags_short"  value:"P-----"}  label:{name:"attribute_id"  value:"240"}  label:{name:"attribute_name"  value:"Head_Flying_Hours"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure"}  label:{name:"attribute_flags_short"  value:"P-----"}  label:{name:"attribute_id"  value:"240"}  label:{name:"attribute_name"  value:"Head_Flying_Hours"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sda"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure"}  label:{name:"attribute_flags_short"  value:"P-----"}  label:{name:"attribute_id"  value:"240"}  label:{name:"attribute_name"  value:"Head_Flying_Hours"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sda"}  gauge:{value:1} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure"}  label:{name:"attribute_flags_short"  value:"P-----"}  label:{name:"attribute_id"  value:"240"}  label:{name:"attribute_name"  value:"Head_Flying_Hours"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sda"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_rotation_rate label:{name:"device"  value:"sda"}  gauge:{value:7200} with unregistered descriptor Desc{fqName: "smartctl_device_rotation_rate", help: "Device rotation rate", constLabels: {}, variableLabels: [{device <nil>}]}
* collected metric smartctl_device_error_log_count label:{name:"device"  value:"sda"}  label:{name:"error_log_type"  value:"summary"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_error_log_count", help: "Device SMART error log count", constLabels: {}, variableLabels: [{device <nil>} {error_log_type <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"POSR-K"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"POSR-K"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:51} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"POSR-K"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"POSR-K"}  label:{name:"attribute_id"  value:"1"}  label:{name:"attribute_name"  value:"Raw_Read_Error_Rate"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:253} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:21} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,performance,auto_keep"}  label:{name:"attribute_flags_short"  value:"POS--K"}  label:{name:"attribute_id"  value:"3"}  label:{name:"attribute_name"  value:"Spin_Up_Time"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:2} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"4"}  label:{name:"attribute_name"  value:"Start_Stop_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"prefailure,updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"PO--CK"}  label:{name:"attribute_id"  value:"5"}  label:{name:"attribute_name"  value:"Reallocated_Sector_Ct"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:140} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OSR-K"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OSR-K"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OSR-K"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:253} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,performance,error_rate,auto_keep"}  label:{name:"attribute_flags_short"  value:"-OSR-K"}  label:{name:"attribute_id"  value:"7"}  label:{name:"attribute_name"  value:"Seek_Error_Rate"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"9"}  label:{name:"attribute_name"  value:"Power_On_Hours"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:173} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:253} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"10"}  label:{name:"attribute_name"  value:"Spin_Retry_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"11"}  label:{name:"attribute_name"  value:"Calibration_Retry_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:253} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"11"}  label:{name:"attribute_name"  value:"Calibration_Retry_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"11"}  label:{name:"attribute_name"  value:"Calibration_Retry_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"11"}  label:{name:"attribute_name"  value:"Calibration_Retry_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"12"}  label:{name:"attribute_name"  value:"Power_Cycle_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:2} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"192"}  label:{name:"attribute_name"  value:"Power-Off_Retract_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:7} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"193"}  label:{name:"attribute_name"  value:"Load_Cycle_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:37} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:115} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:110} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O---K"}  label:{name:"attribute_id"  value:"194"}  label:{name:"attribute_name"  value:"Temperature_Celsius"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"196"}  label:{name:"attribute_name"  value:"Reallocated_Event_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"197"}  label:{name:"attribute_name"  value:"Current_Pending_Sector"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:100} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:253} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"----CK"}  label:{name:"attribute_id"  value:"198"}  label:{name:"attribute_name"  value:"Offline_Uncorrectable"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"updated_online,event_count,auto_keep"}  label:{name:"attribute_flags_short"  value:"-O--CK"}  label:{name:"attribute_id"  value:"199"}  label:{name:"attribute_name"  value:"UDMA_CRC_Error_Count"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"error_rate"}  label:{name:"attribute_flags_short"  value:"---R--"}  label:{name:"attribute_id"  value:"200"}  label:{name:"attribute_name"  value:"Multi_Zone_Error_Rate"}  label:{name:"attribute_value_type"  value:"value"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"error_rate"}  label:{name:"attribute_flags_short"  value:"---R--"}  label:{name:"attribute_id"  value:"200"}  label:{name:"attribute_name"  value:"Multi_Zone_Error_Rate"}  label:{name:"attribute_value_type"  value:"worst"}  label:{name:"device"  value:"sdb"}  gauge:{value:200} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"error_rate"}  label:{name:"attribute_flags_short"  value:"---R--"}  label:{name:"attribute_id"  value:"200"}  label:{name:"attribute_name"  value:"Multi_Zone_Error_Rate"}  label:{name:"attribute_value_type"  value:"thresh"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_attribute label:{name:"attribute_flags_long"  value:"error_rate"}  label:{name:"attribute_flags_short"  value:"---R--"}  label:{name:"attribute_id"  value:"200"}  label:{name:"attribute_name"  value:"Multi_Zone_Error_Rate"}  label:{name:"attribute_value_type"  value:"raw"}  label:{name:"device"  value:"sdb"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_attribute", help: "Device attributes", constLabels: {}, variableLabels: [{device <nil>} {attribute_name <nil>} {attribute_flags_short <nil>} {attribute_flags_long <nil>} {attribute_value_type <nil>} {attribute_id <nil>}]}
* collected metric smartctl_device_rotation_rate label:{name:"device"  value:"sdb"}  gauge:{value:5640} with unregistered descriptor Desc{fqName: "smartctl_device_rotation_rate", help: "Device rotation rate", constLabels: {}, variableLabels: [{device <nil>}]}
* collected metric smartctl_device_error_log_count label:{name:"device"  value:"sdb"}  label:{name:"error_log_type"  value:"summary"}  gauge:{value:0} with unregistered descriptor Desc{fqName: "smartctl_device_error_log_count", help: "Device SMART error log count", constLabels: {}, variableLabels: [{device <nil>} {error_log_type <nil>}]}
`smartctl --json --all /dev/sda` Output
{
  "json_format_version": [
    1,
    0
  ],
  "smartctl": {
    "version": [
      7,
      4
    ],
    "pre_release": false,
    "svn_revision": "5530",
    "platform_info": "x86_64-linux-6.1.79",
    "build_info": "(local build)",
    "argv": [
      "smartctl",
      "--json",
      "--all",
      "/dev/sda"
    ],
    "drive_database_version": {
      "string": "7.3/5387"
    },
    "exit_status": 0
  },
  "local_time": {
    "time_t": 1709527329,
    "asctime": "Sun Mar  3 23:42:09 2024 EST"
  },
  "device": {
    "name": "/dev/sda",
    "info_name": "/dev/sda [SAT]",
    "type": "sat",
    "protocol": "ATA"
  },
  "model_family": "Toshiba N300/MN NAS HDD",
  "model_name": "TOSHIBA HDWG480",
  "serial_number": "X3A0A0BLFR0H",
  "wwn": {
    "naa": 5,
    "oui": 57,
    "id": 55176727407
  },
  "firmware_version": "0601",
  "user_capacity": {
    "blocks": 15628053168,
    "bytes": 8001563222016
  },
  "logical_block_size": 512,
  "physical_block_size": 4096,
  "rotation_rate": 7200,
  "form_factor": {
    "ata_value": 2,
    "name": "3.5 inches"
  },
  "trim": {
    "supported": false
  },
  "in_smartctl_database": true,
  "ata_version": {
    "string": "ACS-3 T13/2161-D revision 5",
    "major_value": 2040,
    "minor_value": 109
  },
  "sata_version": {
    "string": "SATA 3.3",
    "value": 511
  },
  "interface_speed": {
    "max": {
      "sata_value": 14,
      "string": "6.0 Gb/s",
      "units_per_second": 60,
      "bits_per_unit": 100000000
    },
    "current": {
      "sata_value": 3,
      "string": "6.0 Gb/s",
      "units_per_second": 60,
      "bits_per_unit": 100000000
    }
  },
  "smart_support": {
    "available": true,
    "enabled": true
  },
  "smart_status": {
    "passed": true
  },
  "ata_smart_data": {
    "offline_data_collection": {
      "status": {
        "value": 130,
        "string": "was completed without error",
        "passed": true
      },
      "completion_seconds": 120
    },
    "self_test": {
      "status": {
        "value": 0,
        "string": "completed without error",
        "passed": true
      },
      "polling_minutes": {
        "short": 2,
        "extended": 664
      }
    },
    "capabilities": {
      "values": [
        91,
        3
      ],
      "exec_offline_immediate_supported": true,
      "offline_is_aborted_upon_new_cmd": false,
      "offline_surface_scan_supported": true,
      "self_tests_supported": true,
      "conveyance_self_test_supported": false,
      "selective_self_test_supported": true,
      "attribute_autosave_enabled": true,
      "error_logging_supported": true,
      "gp_logging_supported": true
    }
  },
  "ata_sct_capabilities": {
    "value": 61,
    "error_recovery_control_supported": true,
    "feature_control_supported": true,
    "data_table_supported": true
  },
  "ata_smart_attributes": {
    "revision": 16,
    "table": [
      {
        "id": 1,
        "name": "Raw_Read_Error_Rate",
        "value": 100,
        "worst": 100,
        "thresh": 50,
        "when_failed": "",
        "flags": {
          "value": 11,
          "string": "PO-R-- ",
          "prefailure": true,
          "updated_online": true,
          "performance": false,
          "error_rate": true,
          "event_count": false,
          "auto_keep": false
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 2,
        "name": "Throughput_Performance",
        "value": 100,
        "worst": 100,
        "thresh": 50,
        "when_failed": "",
        "flags": {
          "value": 5,
          "string": "P-S--- ",
          "prefailure": true,
          "updated_online": false,
          "performance": true,
          "error_rate": false,
          "event_count": false,
          "auto_keep": false
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 3,
        "name": "Spin_Up_Time",
        "value": 100,
        "worst": 100,
        "thresh": 1,
        "when_failed": "",
        "flags": {
          "value": 39,
          "string": "POS--K ",
          "prefailure": true,
          "updated_online": true,
          "performance": true,
          "error_rate": false,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 11998,
          "string": "11998"
        }
      },
      {
        "id": 4,
        "name": "Start_Stop_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 6,
          "string": "6"
        }
      },
      {
        "id": 5,
        "name": "Reallocated_Sector_Ct",
        "value": 100,
        "worst": 100,
        "thresh": 50,
        "when_failed": "",
        "flags": {
          "value": 51,
          "string": "PO--CK ",
          "prefailure": true,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 7,
        "name": "Seek_Error_Rate",
        "value": 100,
        "worst": 100,
        "thresh": 50,
        "when_failed": "",
        "flags": {
          "value": 11,
          "string": "PO-R-- ",
          "prefailure": true,
          "updated_online": true,
          "performance": false,
          "error_rate": true,
          "event_count": false,
          "auto_keep": false
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 8,
        "name": "Seek_Time_Performance",
        "value": 100,
        "worst": 100,
        "thresh": 50,
        "when_failed": "",
        "flags": {
          "value": 5,
          "string": "P-S--- ",
          "prefailure": true,
          "updated_online": false,
          "performance": true,
          "error_rate": false,
          "event_count": false,
          "auto_keep": false
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 9,
        "name": "Power_On_Hours",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 150,
          "string": "150"
        }
      },
      {
        "id": 10,
        "name": "Spin_Retry_Count",
        "value": 100,
        "worst": 100,
        "thresh": 30,
        "when_failed": "",
        "flags": {
          "value": 51,
          "string": "PO--CK ",
          "prefailure": true,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 12,
        "name": "Power_Cycle_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 6,
          "string": "6"
        }
      },
      {
        "id": 191,
        "name": "G-Sense_Error_Rate",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 192,
        "name": "Power-Off_Retract_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 5,
          "string": "5"
        }
      },
      {
        "id": 193,
        "name": "Load_Cycle_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 12,
          "string": "12"
        }
      },
      {
        "id": 194,
        "name": "Temperature_Celsius",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 34,
          "string": "-O---K ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 214749544484,
          "string": "36 (Min/Max 18/50)"
        }
      },
      {
        "id": 196,
        "name": "Reallocated_Event_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 197,
        "name": "Current_Pending_Sector",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 198,
        "name": "Offline_Uncorrectable",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 48,
          "string": "----CK ",
          "prefailure": false,
          "updated_online": false,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 199,
        "name": "UDMA_CRC_Error_Count",
        "value": 200,
        "worst": 200,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 220,
        "name": "Disk_Shift",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 2,
          "string": "-O---- ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": false,
          "auto_keep": false
        },
        "raw": {
          "value": 917505,
          "string": "917505"
        }
      },
      {
        "id": 222,
        "name": "Loaded_Hours",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 142,
          "string": "142"
        }
      },
      {
        "id": 223,
        "name": "Load_Retry_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 224,
        "name": "Load_Friction",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 34,
          "string": "-O---K ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 226,
        "name": "Load-in_Time",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 38,
          "string": "-OS--K ",
          "prefailure": false,
          "updated_online": true,
          "performance": true,
          "error_rate": false,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 507,
          "string": "507"
        }
      },
      {
        "id": 240,
        "name": "Head_Flying_Hours",
        "value": 100,
        "worst": 100,
        "thresh": 1,
        "when_failed": "",
        "flags": {
          "value": 1,
          "string": "P----- ",
          "prefailure": true,
          "updated_online": false,
          "performance": false,
          "error_rate": false,
          "event_count": false,
          "auto_keep": false
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      }
    ]
  },
  "power_on_time": {
    "hours": 150
  },
  "power_cycle_count": 6,
  "temperature": {
    "current": 36
  },
  "ata_smart_error_log": {
    "summary": {
      "revision": 1,
      "count": 0
    }
  },
  "ata_smart_self_test_log": {
    "standard": {
      "revision": 1,
      "table": [
        {
          "type": {
            "value": 1,
            "string": "Short offline"
          },
          "status": {
            "value": 0,
            "string": "Completed without error",
            "passed": true
          },
          "lifetime_hours": 0
        }
      ],
      "count": 1,
      "error_count_total": 0,
      "error_count_outdated": 0
    }
  },
  "ata_smart_selective_self_test_log": {
    "revision": 1,
    "table": [
      {
        "lba_min": 0,
        "lba_max": 0,
        "status": {
          "value": 0,
          "string": "Not_testing"
        }
      },
      {
        "lba_min": 0,
        "lba_max": 0,
        "status": {
          "value": 0,
          "string": "Not_testing"
        }
      },
      {
        "lba_min": 0,
        "lba_max": 0,
        "status": {
          "value": 0,
          "string": "Not_testing"
        }
      },
      {
        "lba_min": 0,
        "lba_max": 0,
        "status": {
          "value": 0,
          "string": "Not_testing"
        }
      },
      {
        "lba_min": 0,
        "lba_max": 0,
        "status": {
          "value": 0,
          "string": "Not_testing"
        }
      }
    ],
    "flags": {
      "value": 0,
      "remainder_scan_enabled": false
    },
    "power_up_scan_resume_minutes": 0
  }
}
`smartctl --json --all /dev/sdb` Output
{
  "json_format_version": [
    1,
    0
  ],
  "smartctl": {
    "version": [
      7,
      4
    ],
    "pre_release": false,
    "svn_revision": "5530",
    "platform_info": "x86_64-linux-6.1.79",
    "build_info": "(local build)",
    "argv": [
      "smartctl",
      "--json",
      "--all",
      "/dev/sdb"
    ],
    "drive_database_version": {
      "string": "7.3/5387"
    },
    "exit_status": 0
  },
  "local_time": {
    "time_t": 1709527360,
    "asctime": "Sun Mar  3 23:42:40 2024 EST"
  },
  "device": {
    "name": "/dev/sdb",
    "info_name": "/dev/sdb [SAT]",
    "type": "sat",
    "protocol": "ATA"
  },
  "model_name": "WDC WD80EFZZ-68BTXN0",
  "serial_number": "WD-CA30BH9L",
  "wwn": {
    "naa": 5,
    "oui": 5358,
    "id": 8955849650
  },
  "firmware_version": "81.00A81",
  "user_capacity": {
    "blocks": 15628053168,
    "bytes": 8001563222016
  },
  "logical_block_size": 512,
  "physical_block_size": 4096,
  "rotation_rate": 5640,
  "form_factor": {
    "ata_value": 2,
    "name": "3.5 inches"
  },
  "trim": {
    "supported": false
  },
  "in_smartctl_database": false,
  "ata_version": {
    "string": "ACS-3 T13/2161-D revision 5",
    "major_value": 2046,
    "minor_value": 109
  },
  "sata_version": {
    "string": "SATA 3.1",
    "value": 126
  },
  "interface_speed": {
    "max": {
      "sata_value": 14,
      "string": "6.0 Gb/s",
      "units_per_second": 60,
      "bits_per_unit": 100000000
    },
    "current": {
      "sata_value": 3,
      "string": "6.0 Gb/s",
      "units_per_second": 60,
      "bits_per_unit": 100000000
    }
  },
  "smart_support": {
    "available": true,
    "enabled": true
  },
  "smart_status": {
    "passed": true
  },
  "ata_smart_data": {
    "offline_data_collection": {
      "status": {
        "value": 0,
        "string": "was never started"
      },
      "completion_seconds": 11804
    },
    "self_test": {
      "status": {
        "value": 0,
        "string": "completed without error",
        "passed": true
      },
      "polling_minutes": {
        "short": 2,
        "extended": 817
      }
    },
    "capabilities": {
      "values": [
        17,
        3
      ],
      "exec_offline_immediate_supported": true,
      "offline_is_aborted_upon_new_cmd": false,
      "offline_surface_scan_supported": false,
      "self_tests_supported": true,
      "conveyance_self_test_supported": false,
      "selective_self_test_supported": false,
      "attribute_autosave_enabled": true,
      "error_logging_supported": true,
      "gp_logging_supported": true
    }
  },
  "ata_sct_capabilities": {
    "value": 12349,
    "error_recovery_control_supported": true,
    "feature_control_supported": true,
    "data_table_supported": true
  },
  "ata_smart_attributes": {
    "revision": 16,
    "table": [
      {
        "id": 1,
        "name": "Raw_Read_Error_Rate",
        "value": 200,
        "worst": 200,
        "thresh": 51,
        "when_failed": "",
        "flags": {
          "value": 47,
          "string": "POSR-K ",
          "prefailure": true,
          "updated_online": true,
          "performance": true,
          "error_rate": true,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 3,
        "name": "Spin_Up_Time",
        "value": 100,
        "worst": 253,
        "thresh": 21,
        "when_failed": "",
        "flags": {
          "value": 39,
          "string": "POS--K ",
          "prefailure": true,
          "updated_online": true,
          "performance": true,
          "error_rate": false,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 4,
        "name": "Start_Stop_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 2,
          "string": "2"
        }
      },
      {
        "id": 5,
        "name": "Reallocated_Sector_Ct",
        "value": 200,
        "worst": 200,
        "thresh": 140,
        "when_failed": "",
        "flags": {
          "value": 51,
          "string": "PO--CK ",
          "prefailure": true,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 7,
        "name": "Seek_Error_Rate",
        "value": 100,
        "worst": 253,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 46,
          "string": "-OSR-K ",
          "prefailure": false,
          "updated_online": true,
          "performance": true,
          "error_rate": true,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 9,
        "name": "Power_On_Hours",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 174,
          "string": "174"
        }
      },
      {
        "id": 10,
        "name": "Spin_Retry_Count",
        "value": 100,
        "worst": 253,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 11,
        "name": "Calibration_Retry_Count",
        "value": 100,
        "worst": 253,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 12,
        "name": "Power_Cycle_Count",
        "value": 100,
        "worst": 100,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 2,
          "string": "2"
        }
      },
      {
        "id": 192,
        "name": "Power-Off_Retract_Count",
        "value": 200,
        "worst": 200,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 193,
        "name": "Load_Cycle_Count",
        "value": 200,
        "worst": 200,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 7,
          "string": "7"
        }
      },
      {
        "id": 194,
        "name": "Temperature_Celsius",
        "value": 115,
        "worst": 110,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 34,
          "string": "-O---K ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": false,
          "auto_keep": true
        },
        "raw": {
          "value": 37,
          "string": "37"
        }
      },
      {
        "id": 196,
        "name": "Reallocated_Event_Count",
        "value": 200,
        "worst": 200,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 197,
        "name": "Current_Pending_Sector",
        "value": 200,
        "worst": 200,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 198,
        "name": "Offline_Uncorrectable",
        "value": 100,
        "worst": 253,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 48,
          "string": "----CK ",
          "prefailure": false,
          "updated_online": false,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 199,
        "name": "UDMA_CRC_Error_Count",
        "value": 200,
        "worst": 200,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 50,
          "string": "-O--CK ",
          "prefailure": false,
          "updated_online": true,
          "performance": false,
          "error_rate": false,
          "event_count": true,
          "auto_keep": true
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      },
      {
        "id": 200,
        "name": "Multi_Zone_Error_Rate",
        "value": 200,
        "worst": 200,
        "thresh": 0,
        "when_failed": "",
        "flags": {
          "value": 8,
          "string": "---R-- ",
          "prefailure": false,
          "updated_online": false,
          "performance": false,
          "error_rate": true,
          "event_count": false,
          "auto_keep": false
        },
        "raw": {
          "value": 0,
          "string": "0"
        }
      }
    ]
  },
  "power_on_time": {
    "hours": 174
  },
  "power_cycle_count": 2,
  "temperature": {
    "current": 37
  },
  "ata_smart_error_log": {
    "summary": {
      "revision": 1,
      "count": 0
    }
  },
  "ata_smart_self_test_log": {
    "standard": {
      "revision": 1,
      "table": [
        {
          "type": {
            "value": 2,
            "string": "Extended offline"
          },
          "status": {
            "value": 0,
            "string": "Completed without error",
            "passed": true
          },
          "lifetime_hours": 118
        },
        {
          "type": {
            "value": 1,
            "string": "Short offline"
          },
          "status": {
            "value": 0,
            "string": "Completed without error",
            "passed": true
          },
          "lifetime_hours": 0
        },
        {
          "type": {
            "value": 1,
            "string": "Short offline"
          },
          "status": {
            "value": 0,
            "string": "Completed without error",
            "passed": true
          },
          "lifetime_hours": 0
        }
      ],
      "count": 3,
      "error_count_total": 0,
      "error_count_outdated": 0
    }
  }
}

I will upgrade to 0.12.0 as soon as Nixpkgs updates and test again. NixOS/nixpkgs#293121

EDIT: Thinking through things, my issue may be unremated to @pshirshov's. I think smartctl_exporter did not like these drives as they were hot-swapped into the system. smartctl_exporter only registers metrics/descriptors on startup when it probably update the registered metrics if any new devices are found on a re-scan. This is backed up by a quirck reboot of smartctl_exporter having resolved the issue for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants