/usr/bin/whisper-fetch is in python-whisper 0.9.10-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/python
import sys, time
import whisper
from optparse import OptionParser
now = int( time.time() )
yesterday = now - (60 * 60 * 24)
option_parser = OptionParser(usage='''%prog [options] path''')
option_parser.add_option('--from', default=yesterday, type='int', dest='_from',
help=("Unix epoch time of the beginning of "
"your requested interval (default: 24 hours ago)"))
option_parser.add_option('--until', default=now, type='int',
help="Unix epoch time of the end of your requested interval (default: now)")
option_parser.add_option('--json', default=False, action='store_true',
help="Output results in JSON form")
option_parser.add_option('--pretty', default=False, action='store_true',
help="Show human-readable timestamps instead of unix times")
(options, args) = option_parser.parse_args()
if len(args) != 1:
option_parser.print_usage()
sys.exit(1)
path = args[0]
from_time = int( options._from )
until_time = int( options.until )
(timeInfo, values) = whisper.fetch(path, from_time, until_time)
(start,end,step) = timeInfo
if options.json:
values_json = str(values).replace('None','null')
print '''{
"start" : %d,
"end" : %d,
"step" : %d,
"values" : %s
}''' % (start,end,step,values_json)
sys.exit(0)
t = start
for value in values:
if options.pretty:
timestr = time.ctime(t)
else:
timestr = str(t)
if value is None:
valuestr = "None"
else:
valuestr = "%f" % value
print "%s\t%s" % (timestr,valuestr)
t += step
|