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

network_ups_tools_battery_charge metric is missing when using NUT_EXPORTER_VARIABLES #54

Open
a15355447898a opened this issue Feb 7, 2025 · 3 comments

Comments

@a15355447898a
Copy link

I also have a similar problem to network_ups_tools_ups_status metric is missing when using NUT_EXPORTER_VARIABLES, but what I'm missing is battery.charge

I've tried switching the order, but that didn't fix the problem.

My UPS NUT output values are as follows.

Init SSL without certificate database
battery.charge: 100
battery.charge.low: 20
battery.runtime: 1104
battery.type: PbAc
device.mfr: EATON
device.model: SANTAK TG-BOX 850
device.serial: Blank
device.type: ups
driver.debug: 0
driver.flag.allow_killpower: 0
driver.name: usbhid-ups
driver.parameter.pollfreq: 30
driver.parameter.pollinterval: 2
driver.parameter.port: auto
driver.parameter.synchronous: auto
driver.state: quiet
driver.version: 2.8.2
driver.version.data: MGE HID 1.46
driver.version.internal: 0.53
driver.version.usb: libusb-1.0.27 (API: 0x100010a)
input.transfer.high: 264
input.transfer.low: 184
outlet.1.desc: PowerShare Outlet 1
outlet.1.id: 1
outlet.1.status: on
outlet.1.switchable: no
outlet.desc: Main Outlet
outlet.id: 0
outlet.switchable: yes
output.frequency.nominal: 50
output.voltage: 230.0
output.voltage.nominal: 220
ups.beeper.status: enabled
ups.delay.shutdown: 20
ups.delay.start: 30
ups.firmware: 02.08.0010
ups.load: 27
ups.mfr: EATON
ups.model: SANTAK TG-BOX 850
ups.power.nominal: 850
ups.productid: ffff
ups.realpower: 184
ups.serial: Blank
ups.status: OL
ups.timer.shutdown: -1
ups.timer.start: -1
ups.type: offline / line interactive
ups.vendorid: 0463  

If my Docker Compose is configured like this

    nut_exporter:
        container_name: nut_exporter
        image: ghcr.io/druggeri/nut_exporter:latest
        restart: always
        ports:
          - "10443:9199"
        environment:
          - NUT_EXPORTER_SERVER=192.168.1.90
          - NUT_EXPORTER_USERNAME=monuser
          - NUT_EXPORTER_PASSWORD=secret
          - NUT_EXPORTER_VARIABLES="ups.load,ups.status,battery.runtime,output.voltage,ups.realpower,battery.charge"

Output as follows:

# HELP network_ups_tools_battery_runtime Battery runtime (seconds) (battery.runtime)
# TYPE network_ups_tools_battery_runtime gauge
network_ups_tools_battery_runtime 1104
# HELP network_ups_tools_device_info UPS Device information
# TYPE network_ups_tools_device_info gauge
network_ups_tools_device_info{contact="",description="",location="",macaddr="",mfr="EATON",model="SANTAK TG-BOX 850",part="",serial="Blank",type="ups"} 1
# HELP network_ups_tools_output_voltage Output voltage (V) (output.voltage)
# TYPE network_ups_tools_output_voltage gauge
network_ups_tools_output_voltage 230
# HELP network_ups_tools_ups_realpower Current value of real power (W) (ups.realpower)
# TYPE network_ups_tools_ups_realpower gauge
network_ups_tools_ups_realpower 177
# HELP network_ups_tools_ups_status UPS status (ups.status)
# TYPE network_ups_tools_ups_status gauge
network_ups_tools_ups_status{flag="BOOST"} 0
network_ups_tools_ups_status{flag="BYPASS"} 0
network_ups_tools_ups_status{flag="CAL"} 0
network_ups_tools_ups_status{flag="CHRG"} 0
network_ups_tools_ups_status{flag="DISCHRG"} 0
network_ups_tools_ups_status{flag="FSD"} 0
network_ups_tools_ups_status{flag="HB"} 0
network_ups_tools_ups_status{flag="LB"} 0
network_ups_tools_ups_status{flag="OB"} 0
network_ups_tools_ups_status{flag="OFF"} 0
network_ups_tools_ups_status{flag="OL"} 1
network_ups_tools_ups_status{flag="OVER"} 0
network_ups_tools_ups_status{flag="RB"} 0
network_ups_tools_ups_status{flag="SD"} 0
network_ups_tools_ups_status{flag="TRIM"} 0
# HELP promhttp_metric_handler_errors_total Total number of internal errors encountered by the promhttp metric handler.
# TYPE promhttp_metric_handler_errors_total counter
promhttp_metric_handler_errors_total{cause="encoding"} 0
promhttp_metric_handler_errors_total{cause="gathering"} 0
# HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.
# TYPE promhttp_metric_handler_requests_in_flight gauge
promhttp_metric_handler_requests_in_flight 1
# HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.
# TYPE promhttp_metric_handler_requests_total counter
promhttp_metric_handler_requests_total{code="200"} 15
promhttp_metric_handler_requests_total{code="500"} 0
promhttp_metric_handler_requests_total{code="503"} 0

But if I don't set the NUT_EXPORTER_VARIABLES variable

    nut_exporter:
        container_name: nut_exporter
        image: ghcr.io/druggeri/nut_exporter:latest
        restart: always
        ports:
          - "10443:9199"
        environment:
          - NUT_EXPORTER_SERVER=192.168.1.90
          - NUT_EXPORTER_USERNAME=monuser
          - NUT_EXPORTER_PASSWORD=secret
          #- NUT_EXPORTER_VARIABLES="ups.load,ups.status,battery.runtime,output.voltage,ups.realpower,battery.charge"

Output as follows:

# HELP network_ups_tools_battery_charge Battery charge (percent of full) (battery.charge)
# TYPE network_ups_tools_battery_charge gauge
network_ups_tools_battery_charge 100
# HELP network_ups_tools_device_info UPS Device information
# TYPE network_ups_tools_device_info gauge
network_ups_tools_device_info{contact="",description="",location="",macaddr="",mfr="EATON",model="SANTAK TG-BOX 850",part="",serial="Blank",type="ups"} 1
# HELP network_ups_tools_ups_load Load on UPS (percent of full) (ups.load)
# TYPE network_ups_tools_ups_load gauge
network_ups_tools_ups_load 26
# HELP network_ups_tools_ups_status UPS status (ups.status)
# TYPE network_ups_tools_ups_status gauge
network_ups_tools_ups_status{flag="BOOST"} 0
network_ups_tools_ups_status{flag="BYPASS"} 0
network_ups_tools_ups_status{flag="CAL"} 0
network_ups_tools_ups_status{flag="CHRG"} 0
network_ups_tools_ups_status{flag="DISCHRG"} 0
network_ups_tools_ups_status{flag="FSD"} 0
network_ups_tools_ups_status{flag="HB"} 0
network_ups_tools_ups_status{flag="LB"} 0
network_ups_tools_ups_status{flag="OB"} 0
network_ups_tools_ups_status{flag="OFF"} 0
network_ups_tools_ups_status{flag="OL"} 1
network_ups_tools_ups_status{flag="OVER"} 0
network_ups_tools_ups_status{flag="RB"} 0
network_ups_tools_ups_status{flag="SD"} 0
network_ups_tools_ups_status{flag="TRIM"} 0
# HELP promhttp_metric_handler_errors_total Total number of internal errors encountered by the promhttp metric handler.
# TYPE promhttp_metric_handler_errors_total counter
promhttp_metric_handler_errors_total{cause="encoding"} 0
promhttp_metric_handler_errors_total{cause="gathering"} 0
# HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.
# TYPE promhttp_metric_handler_requests_in_flight gauge
promhttp_metric_handler_requests_in_flight 1
# HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.
# TYPE promhttp_metric_handler_requests_total counter
promhttp_metric_handler_requests_total{code="200"} 1
promhttp_metric_handler_requests_total{code="500"} 0
promhttp_metric_handler_requests_total{code="503"} 0
@a15355447898a
Copy link
Author

This environment variable fixed my problem, but I still don't know why.
input.transfer.low,output.voltage,battery.charge,ups.realpower,ups.load,ups.status,battery.runtime,input.transfer.high

@DRuggeri
Copy link
Owner

Interesting. Because the default list of variables scraped includes battery.charge, I think disabling override of the ENV var is why you see it in the second case. However, I can't think of any reason why the first string you used (ups.load,ups.status,battery.runtime,output.voltage,ups.realpower,battery.charge) didn't show battery.charge, but the second string you used (input.transfer.low,output.voltage,battery.charge,ups.realpower,ups.load,ups.status,battery.runtime,input.transfer.high) did. Both include that variable.

I know you got it working, but if possible, sharing debug output with the first string will help demystify what may have happened. The logic to parse the list of variables is pretty simple (i.e... if one works, all should work) so I wonder if there may have been something else within the exporter that led to that missing variable.

@a15355447898a
Copy link
Author

a15355447898a commented Feb 13, 2025

Interesting. Because the default list of variables scraped includes battery.charge, I think disabling override of the ENV var is why you see it in the second case. However, I can't think of any reason why the first string you used (ups.load,ups.status,battery.runtime,output.voltage,ups.realpower,battery.charge) didn't show battery.charge, but the second string you used (input.transfer.low,output.voltage,battery.charge,ups.realpower,ups.load,ups.status,battery.runtime,input.transfer.high) did. Both include that variable.

I know you got it working, but if possible, sharing debug output with the first string will help demystify what may have happened. The logic to parse the list of variables is pretty simple (i.e... if one works, all should work) so I wonder if there may have been something else within the exporter that led to that missing variable.

I used this Docker Compose file

services:
  nut_exporter:
    container_name: nut_exporter
    image: ghcr.io/druggeri/nut_exporter:latest
    restart: always
    ports:
      - "10443:9199"
    environment:
      - NUT_EXPORTER_SERVER=192.168.1.90
      - NUT_EXPORTER_USERNAME=monuser
      - NUT_EXPORTER_PASSWORD=secret
      - NUT_EXPORTER_VARIABLES="ups.load,ups.status,battery.runtime,output.voltage,ups.realpower,battery.charge"
    command: ["--log.level=debug"]
    networks:
      - homelab-network

networks:
  homelab-network:
    external: true

Output on the webpage as follows

# HELP network_ups_tools_battery_runtime Battery runtime (seconds) (battery.runtime)
# TYPE network_ups_tools_battery_runtime gauge
network_ups_tools_battery_runtime 1152
# HELP network_ups_tools_device_info UPS Device information
# TYPE network_ups_tools_device_info gauge
network_ups_tools_device_info{contact="",description="",location="",macaddr="",mfr="EATON",model="SANTAK TG-BOX 850",part="",serial="Blank",type="ups"} 1
# HELP network_ups_tools_output_voltage Output voltage (V) (output.voltage)
# TYPE network_ups_tools_output_voltage gauge
network_ups_tools_output_voltage 230
# HELP network_ups_tools_ups_realpower Current value of real power (W) (ups.realpower)
# TYPE network_ups_tools_ups_realpower gauge
network_ups_tools_ups_realpower 184
# HELP network_ups_tools_ups_status UPS status (ups.status)
# TYPE network_ups_tools_ups_status gauge
network_ups_tools_ups_status{flag="BOOST"} 0
network_ups_tools_ups_status{flag="BYPASS"} 0
network_ups_tools_ups_status{flag="CAL"} 0
network_ups_tools_ups_status{flag="CHRG"} 0
network_ups_tools_ups_status{flag="DISCHRG"} 0
network_ups_tools_ups_status{flag="FSD"} 0
network_ups_tools_ups_status{flag="HB"} 0
network_ups_tools_ups_status{flag="LB"} 0
network_ups_tools_ups_status{flag="OB"} 0
network_ups_tools_ups_status{flag="OFF"} 0
network_ups_tools_ups_status{flag="OL"} 1
network_ups_tools_ups_status{flag="OVER"} 0
network_ups_tools_ups_status{flag="RB"} 0
network_ups_tools_ups_status{flag="SD"} 0
network_ups_tools_ups_status{flag="TRIM"} 0
# HELP promhttp_metric_handler_errors_total Total number of internal errors encountered by the promhttp metric handler.
# TYPE promhttp_metric_handler_errors_total counter
promhttp_metric_handler_errors_total{cause="encoding"} 0
promhttp_metric_handler_errors_total{cause="gathering"} 0
# HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served.
# TYPE promhttp_metric_handler_requests_in_flight gauge
promhttp_metric_handler_requests_in_flight 1
# HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code.
# TYPE promhttp_metric_handler_requests_total counter
promhttp_metric_handler_requests_total{code="200"} 0
promhttp_metric_handler_requests_total{code="500"} 0
promhttp_metric_handler_requests_total{code="503"} 0

Docker log output follows

ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:173 level=debug command=load.on.delay description="Turn on the load with a delay (seconds)"
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:173 level=debug command=shutdown.return description="Turn off the load and return when power is back"
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:173 level=debug command=shutdown.stayoff description="Turn off the load and remain off"
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:173 level=debug command=shutdown.stop description="Stop a shutdown in progress"
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:176 level=debug variable_name=battery.charge value=100 type=INTEGER description="Battery charge (percent of full)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:176 level=debug variable_name=battery.charge.low value=20 type=INTEGER description="Remaining battery level when UPS switches to LB (percent)" writeable=true maximum_length=5 original_type=STRING
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:176 level=debug variable_name=battery.runtime value=1152 type=INTEGER description="Battery runtime (seconds)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:192 level=debug msg="Export the variable? true"
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:176 level=debug variable_name=battery.type value=PbAc type=STRING description="Battery chemistry" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:176 level=debug variable_name=device.mfr value=EATON type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:176 level=debug variable_name=device.model value="SANTAK TG-BOX 850" type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:176 level=debug variable_name=device.serial value=Blank type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:176 level=debug variable_name=device.type value=ups type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:176 level=debug variable_name=driver.debug value=0 type=INTEGER description="Current debug verbosity level of the driver program" writeable=true maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:176 level=debug variable_name=driver.flag.allow_killpower value=0 type=INTEGER description="Safety flip-switch to allow the driver daemon to send UPS shutdown command (accessible via driver.killpower)" writeable=true maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.235Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.name value=usbhid-ups type=STRING description="Driver name" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.parameter.pollfreq value=30 type=INTEGER description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.parameter.pollinterval value=2 type=INTEGER description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.parameter.port value=auto type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.parameter.synchronous value=auto type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.state value=updateinfo type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.version value=2.8.2 type=NUMBER description="Driver version - NUT release" writeable=false maximum_length=0 original_type=
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.236Z caller=nut_collector.go:176 level=debug variable_name=driver.version.data value="MGE HID 1.46" type=STRING description="Description unavailable" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:176 level=debug variable_name=driver.version.internal value=0.53 type=FLOAT_64 description="Internal driver version" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:176 level=debug variable_name=driver.version.usb value="libusb-1.0.27 (API: 0x100010a)" type=STRING description="USB library version" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:176 level=debug variable_name=input.transfer.high value=264 type=INTEGER description="High voltage transfer point (V)" writeable=true maximum_length=5 original_type=STRING
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:176 level=debug variable_name=input.transfer.low value=184 type=INTEGER description="Low voltage transfer point (V)" writeable=true maximum_length=5 original_type=STRING
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:176 level=debug variable_name=outlet.1.desc value="PowerShare Outlet 1" type=STRING description="Outlet description" writeable=true maximum_length=20 original_type=STRING
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:176 level=debug variable_name=outlet.1.id value=1 type=INTEGER description="Outlet system identifier" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.237Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:176 level=debug variable_name=outlet.1.status value=on type=STRING description="Outlet switch status" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:176 level=debug variable_name=outlet.1.switchable value=no type=STRING description="Outlet switch ability" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:176 level=debug variable_name=outlet.desc value="Main Outlet" type=STRING description="Outlet description" writeable=true maximum_length=20 original_type=STRING
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:176 level=debug variable_name=outlet.id value=0 type=INTEGER description="Outlet system identifier" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:176 level=debug variable_name=outlet.switchable value=yes type=STRING description="Outlet switch ability" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:176 level=debug variable_name=output.frequency.nominal value=50 type=INTEGER description="Nominal output frequency (Hz)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.238Z caller=nut_collector.go:176 level=debug variable_name=output.voltage value=230 type=FLOAT_64 description="Output voltage (V)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.239Z caller=nut_collector.go:192 level=debug msg="Export the variable? true"
ts=2025-02-13T12:33:59.239Z caller=nut_collector.go:176 level=debug variable_name=output.voltage.nominal value=220 type=INTEGER description="Nominal output voltage (V)" writeable=true maximum_length=0 original_type=ENUM
ts=2025-02-13T12:33:59.239Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.239Z caller=nut_collector.go:176 level=debug variable_name=ups.beeper.status value=true type=STRING description="UPS beeper status" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.239Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.239Z caller=nut_collector.go:176 level=debug variable_name=ups.delay.shutdown value=20 type=INTEGER description="Interval to wait after shutdown with delay command (seconds)" writeable=true maximum_length=10 original_type=STRING
ts=2025-02-13T12:33:59.239Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:176 level=debug variable_name=ups.delay.start value=30 type=INTEGER description="Interval to wait before (re)starting the load (seconds)" writeable=true maximum_length=10 original_type=STRING
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:176 level=debug variable_name=ups.firmware value=02.08.0010 type=NUMBER description="UPS firmware" writeable=false maximum_length=0 original_type=
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:176 level=debug variable_name=ups.load value=27 type=INTEGER description="Load on UPS (percent of full)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:176 level=debug variable_name=ups.mfr value=EATON type=STRING description="UPS manufacturer" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:176 level=debug variable_name=ups.model value="SANTAK TG-BOX 850" type=STRING description="UPS model" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:176 level=debug variable_name=ups.power.nominal value=850 type=INTEGER description="UPS power rating (VA)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:176 level=debug variable_name=ups.productid value=ffff type=STRING description="Product ID for USB devices" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.240Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:176 level=debug variable_name=ups.realpower value=184 type=INTEGER description="Current value of real power (W)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:192 level=debug msg="Export the variable? true"
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:176 level=debug variable_name=ups.serial value=Blank type=STRING description="UPS serial number" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:176 level=debug variable_name=ups.status value=OL type=STRING description="UPS status" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:192 level=debug msg="Export the variable? true"
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:176 level=debug variable_name=ups.timer.shutdown value=-1 type=INTEGER description="Time before the load will be shutdown (seconds)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.241Z caller=nut_collector.go:176 level=debug variable_name=ups.timer.start value=-1 type=INTEGER description="Time before the load will be started (seconds)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.242Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.242Z caller=nut_collector.go:176 level=debug variable_name=ups.type value="offline / line interactive" type=STRING description="UPS type" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.242Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"
ts=2025-02-13T12:33:59.242Z caller=nut_collector.go:176 level=debug variable_name=ups.vendorid value=463 type=INTEGER description="Vendor ID for USB devices" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.242Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"

I believe the key error message is here

ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:176 level=debug variable_name=battery.charge value=100 type=INTEGER description="Battery charge (percent of full)" writeable=false maximum_length=0 original_type=NUMBER
ts=2025-02-13T12:33:59.234Z caller=nut_collector.go:269 level=debug msg="Export the variable? false" count=6 variables="unsupported value type"

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

2 participants