1 .\" $OpenBSD: sensorsd.conf.5,v 1.23 2008/03/15 01:08:08 cnst Exp $
2 .\" $DragonFly: src/usr.sbin/sensorsd/sensorsd.conf.5,v 1.5 2008/11/02 18:29:07 swildner Exp $
4 .\" Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
5 .\" Copyright (c) 2005 Matthew Gream <matthew.gream@pobox.com>
6 .\" Copyright (c) 2007 Constantine A. Murenin <cnst@openbsd.org>
8 .\" Permission to use, copy, modify, and distribute this software for any
9 .\" purpose with or without fee is hereby granted, provided that the above
10 .\" copyright notice and this permission notice appear in all copies.
12 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
25 .Nd configuration file for sensorsd
31 to configure hardware sensor monitoring.
32 Each sensor registered in the system
33 is matched by at most one entry in
35 which may specify high and low limits,
36 and whether sensor status changes provided by the driver should be ignored.
37 If the limits are crossed or if the status provided by the driver changes,
39 alert functionality is triggered and a command, if specified, is
44 file follows the syntax of configuration databases as documented in
46 Sensors may be specified by their full
49 variable name or by type,
50 with the full name taking precedence.
51 For example, if an entry
52 .Va hw.sensors.lm0.temp1
53 is not found, then an entry for
55 will instead be looked for.
57 The following attributes may be used:
59 .Bl -tag -width ".Li command" -offset indent -compact
61 Specify a command to be executed on state change.
63 Specify an upper limit.
65 Specify a lower limit.
67 Ignore status provided by the driver.
70 The values for temperature sensors can be given in degrees Celsius or
71 Fahrenheit, for voltage sensors in volts, and fan speed sensors take a
72 unit-less number representing RPM.
73 Values for all other types of sensors can be specified
74 in the same units as they appear under the
79 Sensors that provide status
80 do not require boundary values specified
81 and simply trigger on status transitions.
82 If boundaries are specified nonetheless,
83 then they are used in addition to automatic status monitoring,
86 attribute is specified to ignore status values that are provided by the drivers.
88 The command is executed when there is any change in sensor state.
89 Tokens in the command are substituted as follows:
91 .Bl -tag -width indent -offset indent -compact
93 Whether the value exceeds or is within the user specified limits.
94 Can be one of: "below", "above", "within", "invalid", or "uninitialised".
102 of the device the sensor sits on.
106 The sensor's current value.
108 The sensor's low limit.
110 The sensor's high limit.
115 monitors status changes on all sensors that keep their state.
116 This behaviour may be altered by using the
119 status changes of sensors of a certain type
120 or individual sensors.
122 .Bl -tag -width ".Pa /etc/sensorsd.conf"
123 .It Pa /etc/sensorsd.conf
124 Configuration file for
128 In the following configuration file,
130 .Va hw.sensors.lm0.temp0
131 transitions 80C, the command
132 .Pa /etc/sensorsd/log_warning
134 with the sensor type, number and current value passed to it.
137 .Va hw.sensors.lm0.volt3
138 transitions to being within or outside
139 a range of 4.8V and 5.2V;
140 if the speed of the fan attached to
141 .Va hw.sensors.lm0.fan1
142 transitions to being below or above 1000RPM;
143 however, no alerts will be generated for status changes on
145 For all other sensors whose drivers automatically provide
146 sensor status updates, alerts will be generated
147 each time those sensors undergo status transitions.
148 .Bd -literal -offset indent
149 # Comments are allowed
150 hw.sensors.lm0.temp0:high=80C:command=/etc/sensorsd/log_warning %t %n %2
151 hw.sensors.lm0.volt3:low=4.8V:high=5.2V
152 hw.sensors.lm0.fan1:low=1000
153 timedelta:istatus #ignore status changes for timedelta
163 file format first appeared in
165 The format was altered in
167 to accommodate hierarchical device-based sensor addressing.
170 attribute was introduced in
173 Alert functionality is triggered every time there is a change in sensor state;
177 the status of each monitored sensor changes
178 from undefined to whatever it is.
179 One must keep this in mind when using commands
180 that may unconditionally perform adverse actions (e.g.\&
182 as they will be executed even when all sensors perform to specification.
183 If this is undesirable, then a wrapper shell script should be used instead.