Firmware (LuxOS)
API Docs
LUXMiner commands
healthctrl

healthctrl

Description

Returns the current healthcheck configuration. This is a mirror of the healthcheck configuration on luxminer.toml. See Healthcheck Configuration for details.

Command

$ echo '{"command": "healthctrl"}' | nc $MINER_IP 4028 | jq

Examples

$ echo '{"command": "healthctrl"}' | nc $MINER_IP 4028 | jq
{
  "HEALTH": [
    {
      "NumReadings": 120,
      "BadChipHealthThreshold": 0.2
    }
  ],
  "STATUS": [
    {
      "Code": 312,
      "Description": "LUXminer 0.1.0-15436f7140",
      "Msg": "Health config",
      "STATUS": "S",
      "When": 1667917088
    }
  ],
  "id": 1
}

Field details

FieldNotes
NumReadingsNumber of readings before evaluating chip health, scaled to 100MHz.
BadChipHealthThresholdThreshold on the hashcount to consider the chip healthy.