2011-01-26 11:35:08 +02:00
'\" t
. \" Title: upslog
2022-07-10 10:23:45 +03:00
. \" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
. \" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
. \" Date: 04/26/2022
2011-01-26 11:35:08 +02:00
. \" Manual: NUT Manual
2022-07-10 10:23:45 +03:00
. \" Source: Network UPS Tools 2.8.0
2011-01-26 11:35:08 +02:00
. \" Language: English
. \"
2022-07-10 10:23:45 +03:00
.TH "UPSLOG" "8" "04/26/2022" "Network UPS Tools 2\&.8\&.0" "NUT Manual"
2011-01-26 11:35:08 +02:00
. \" -----------------------------------------------------------------
. \" * Define some portability stuff
. \" -----------------------------------------------------------------
. \" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
. \" http://bugs.debian.org/507673
. \" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
. \" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n (.g .ds Aq \(aq
.el .ds Aq '
. \" -----------------------------------------------------------------
. \" * set default formatting
. \" -----------------------------------------------------------------
. \" disable hyphenation
.nh
. \" disable justification (adjust text to left margin only)
.ad l
. \" -----------------------------------------------------------------
. \" * MAIN CONTENT STARTS HERE *
. \" -----------------------------------------------------------------
.SH "NAME"
upslog \- UPS status logger
.SH "SYNOPSIS"
.sp
\fB upslog \- h\fR
.sp
\fB upslog\fR [\fI OPTIONS\fR ]
.SH "DESCRIPTION"
.sp
\fB upslog\fR is a daemon that will poll a UPS at periodic intervals, fetch the variables that interest you, format them, and write them to a file\& .
.sp
The default format string includes variables that are supported by many common UPS models\& . See the description below to make your own\& .
.SH "OPTIONS"
.PP
\fB \- h\fR
.RS 4
Display the help message\& .
.RE
.PP
\fB \- f\fR \fI format\fR
.RS 4
Monitor the UPS using this format string\& . Be sure to enclose
\fI format\fR
in quotes so your shell doesn\(cq t split it up\& . Valid escapes within this string are:
.PP
%%
.RS 4
Insert a single "%"
.RE
.PP
%TIME format%
.RS 4
Insert the time with strftime formatting
.RE
.PP
%ETIME%
.RS 4
Insert the number of seconds, ala time_t\& . This is now a 10 digit number\& .
.RE
.PP
%HOST%
.RS 4
insert the local hostname
.RE
.PP
%UPSHOST%
.RS 4
insert the host of the UPS being monitored
.RE
.PP
%PID%
.RS 4
insert the pid of upslog
.RE
.PP
%VAR varname%
.RS 4
insert the value of variable varname
.RE
.RE
.sp
The default format string is:
.sp
.if n \{ \
.RS 4
. \}
.nf
%TIME @Y@m@d @H@M@S% %VAR battery\& .charge% %VAR input\& .voltage%
%VAR ups\& .load% [%VAR ups\& .status%] %VAR ups\& .temperature%
%VAR input\& .frequency%
.fi
.if n \{ \
.RE
. \}
.PP
\fB \- i\fR \fI interval\fR
.RS 4
Wait this many seconds between polls\& . This defaults to 30 seconds\& .
.sp
If you require tighter timing, you should write your own logger using the
\fB upsclient\fR (3)
library\& .
.RE
.PP
\fB \- l\fR \fI logfile\fR
.RS 4
Store the results in this file\& .
.sp
2022-07-10 10:23:45 +03:00
You can use "\- " for stdout, but upslog will remain in the foreground by default\& .
.RE
.PP
\fB \- F\fR
.RS 4
upslog will run in the foreground, regardless of logging target\& .
.RE
.PP
\fB \- B\fR
.RS 4
upslog will run in the background, regardless of logging target\& .
2011-01-26 11:35:08 +02:00
.RE
.PP
\fB \- s\fR \fI ups\fR
.RS 4
Monitor this UPS\& . The format for this option is
upsname[@hostname[:port]]\& . The default hostname is "localhost"\& .
.RE
.PP
\fB \- u\fR \fI username\fR
.RS 4
2022-07-10 10:23:45 +03:00
If started as root, upslog will
2011-01-26 11:35:08 +02:00
\fB setuid\fR (2) to the user id associated with
\fI username\fR
for security\& .
.sp
If
\fI username\fR
is not defined, it will use the value that was compiled into the program\& . This defaults to "nobody", which is less than ideal\& .
.RE
.SH "SERVICE DELAYS"
.sp
The interval value is merely the number given to \fB sleep\fR (3) after running through the format string\& . Therefore, a query will actually take slightly longer than the interval, depending on the speed of your system\& .
2022-07-10 10:23:45 +03:00
.SH "ON\-DEMAND LOGGING"
2015-04-30 16:53:36 +03:00
.sp
Sending a USR1 signal to a running \fB upslog\fR process makes it wake from the current sleep and log immediately\& . This is useful when triggered from a \fB upssched\fR event trigger (e\& .g\& . AT ONBATT or AT ONLINE) to ensure that an entry always exists, even if the power goes away for a period of time shorter than that specified by the \- i argument\& .
2011-01-26 11:35:08 +02:00
.SH "LOG ROTATION"
.sp
\fB upslog\fR writes its PID to upslog\& .pid, and will reopen the log file if you send it a SIGHUP\& . This allows it to keep running when the log is rotated by an external program\& .
.SH "SEE ALSO"
.SS "Server:"
.sp
\fB upsd\fR (8)
.SS "Clients:"
.sp
2015-04-30 16:53:36 +03:00
\fB upsc\fR (8), \fB upscmd\fR (8), \fB upsrw\fR (8), \fB upsmon\fR (8), \fB upssched\fR (8)
2011-01-26 11:35:08 +02:00
.SS "Internet resources:"
.sp
The NUT (Network UPS Tools) home page: http://www\& .networkupstools\& .org/