如何为collectd调试exec脚本

时间:2017-11-19 15:24:22

标签: bash debugging debian exec collectd

我写了一个小脚本来收集磁盘的电源状态(待机,执行)。 它基于以下脚本:https://github.com/collectd/collectd/blob/master/contrib/exec-smartctl

/usr/share/collectd/exec_hddpwrmode.sh

#!/bin/bash
HOSTNAME="${COLLECTD_HOSTNAME:-$(hostname -f)}"
INTERVAL="${COLLECTD_INTERVAL:-60}"

while sleep "$INTERVAL"
do
  for disk in sda sdb sdc sdd sde sdf
  do
    STATE=$(sudo smartctl -i -n standby /dev/$disk | grep -e "Device is in STANDBY mode" -e "Power mode is:    ACTIVE or IDLE" 2>/dev/null)
    if [ "$STATE" = "Device is in STANDBY mode, exit(2)" ]
      then
        # STANBY
        VALUE="0"
      else
        if [ "$STATE" = "Power mode is:    ACTIVE or IDLE" ]
          then
            # ACTIVE or IDLE
            VALUE="1"
          else
            # ERROR
            VALUE="U"
        fi
    fi
    echo "PUTVAL $HOSTNAME/disk-$disk/disk-state interval=$INTERVAL N:$VALUE" | tee -a /tmp/hddpwrstate.log
  done
done

/tmp/hddpwrstate.log中的输出看起来不错。

PUTVAL magneto/exec-smart/pwrstate_sdf interval=10.000 N:0
PUTVAL magneto/exec-smart/pwrstate_sda interval=10.000 N:0
PUTVAL magneto/exec-smart/pwrstate_sdb interval=10.000 N:1
PUTVAL magneto/exec-smart/pwrstate_sdc interval=10.000 N:0
PUTVAL magneto/exec-smart/pwrstate_sdd interval=10.000 N:0
PUTVAL magneto/exec-smart/pwrstate_sde interval=10.000 N:0
PUTVAL magneto/exec-smart/pwrstate_sdf interval=10.000 N:0

这意味着我没有权限问题(脚本需要由可以使用sudo的用户运行)。 它由collectd执行

但我在/var/lib/collectd/rrd/<hostname>中没有新的rrd文件或者我的InfluxDB中没有新的测量值。

> show measurements
name: measurements
name
----
cpu_value
df_value
disk_io_time
disk_read
disk_value
disk_weighted_io_time
disk_write
entropy_value
interface_rx
interface_tx
irq_value
load_longterm
load_midterm
load_shortterm
memory_value
processes_value
rrdcached_value
swap_value
uptime_value
users_value

我尝试激活调试。

<Plugin syslog>
  LogLevel debug
</Plugin>

但它没有帮助。

Nov 19 12:13:12 magneto collectd[30028]: Exiting normally.
Nov 19 12:13:12 magneto collectd[30028]: collectd: Stopping 5 read threads.
Nov 19 12:13:12 magneto collectd[30028]: exec plugin: Sent SIGTERM to 30042
Nov 19 12:13:12 magneto collectd[30028]: collectd: Stopping 5 write threads.
Nov 19 12:13:13 magneto collectd[31752]: Stopping statistics collection and monitoring daemon: collectd.
Nov 19 12:13:13 magneto collectd[31767]: syslog: invalid loglevel [debug] defaulting to 'info'
Nov 19 12:13:13 magneto collectd[31768]: syslog: invalid loglevel [debug] defaulting to 'info'
Nov 19 12:13:13 magneto collectd[31769]: Initialization complete, entering read-loop.
Nov 19 12:13:13 magneto collectd[31764]: Starting statistics collection and monitoring daemon: collectd.

那么,为什么我的脚本不起作用? 有什么不对? 或者我如何调试以自行查找问题?

我的系统:使用OpenMediaVault的Debian 8。

1 个答案:

答案 0 :(得分:2)

我明白了。

Loks就像我的PUTVAL不正确。

现在正在运作:

echo "PUTVAL $HOSTNAME/exec-$disk/gauge-disk_state interval=$INTERVAL N:$VALUE" | tee -a /tmp/hddpwrstate.log