1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
.\"Created by graziano obertelli <graziano@cs.ucsb.edu>
.\"
.TH nws_proxy 1 "October 18, 2004" "nws_proxy"
.SH NAME
nws_proxy \- aggregate multiple series for the Network Weather Service
.SH SYNOPSIS
.B nws_proxy
[-N host][-A][-e file][-l file][-i file][-p port]
.SH DESCRIPTION
This manual page explains the
.B nws_proxy
program. The nws_proxy can query
.B nws_nameserver(1)
to find
.B nws_memory(1)
which are responsible for NWS series and start autofetching them. It's
purpose is to avoid the high latency when retrieving a large number of
NWS series. It returns only the last value/forecast pair.
The
.B nws_proxy
can be controlled and queried thorugh the
.B nws_ctrl(1)
program (check for the
.I proxy
and
.I proxyFetch
command.
.B WARNING:
the
.B nws_proxy
can use a lot of memory if the number of series is large.
.SH OPTIONS
.BI -e\ file
.RS
Save the error messages to
.I file.
.RE
.BI -l\ file
.RS
Save the log messages to
.I file.
.RE
.BI -i\ file
.RS
Write the pid to
.I file
.RE
.BI -N\ nws_nameserver
.RS
Use
.I nws_nameserver
to look up for NWS series.
.RE
.B -A
.RS
Start caching
.I all
the NWS series registered with the nameserver as
specified in the
.I -N
switch.
.RE
.BI -p\ port
Listen to port instead of the default for the nws_proxy (8070).
.SH BUGS
Bugs list is at
.UR http://nws.cs.ucsb.edu
http://nws.cs.ucsb.edu.
.UE
.SH AUTHOR
NWS is an original idea of Rich Wolski Rich Wolski (rich@cs.ucsb.edu).
Graziano Obertelli (graziano@cs.ucsb.edu) designed and implemented the
.B nws_proxy.
.SH SEE ALSO
.BR nws_nameserver(1),
|