forked from scalyr/scalyr-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scalyr
executable file
·659 lines (536 loc) · 25.5 KB
/
scalyr
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
#!/usr/bin/env python
#
# Scalyr command-line utility
import sys
import os
import argparse
import time
import datetime
import json
import csv
# unicode string type, set to str initially as 'str' exists in both
# python 2 and 3. If python 2 we will override it with the unicode
# type. If python 3 we'll do nothing as 'str' is the unicode type
# for python 3
_unicode_type = str
# are we python2 or not
_python2 = False
try:
# Python 2 versions
import httplib
import StringIO
#if we are here then it's python 2 so set _unicode_type to unicode
_unicode_type = unicode
_python2 = True
except ImportError:
# Python 3+ versions
import http.client as httplib
import io as StringIO
from collections import deque
# Define some constants
TOOL_VERSION = "0.4"
# Return the API token from the command line or environment variables.
def getApiToken(args, environmentVariableName, permissionType):
apiToken = args.token
if apiToken == '':
apiToken = os.getenv(environmentVariableName, '')
if apiToken == '':
print_stderr('Please specify an API token granting ' + permissionType + ' permission. You can place it in the')
print_stderr('command line as --token "XXX", or in the environment variable "' + environmentVariableName + '".')
print_stderr('Use of an environment variable is recommended, to avoid displaying your API token in the')
print_stderr('console or your command history. You can find API tokens at https://www.scalyr.com/keys.')
sys.exit(1)
return apiToken
# Print a string to stderr.
def print_stderr(message):
sys.stderr.write(str(message) + '\n')
def output_encoded( message ):
"""Converts a string to ensure the output will be utf8 so that output can be safely redirected
to a file without causing conversion errors. This works differently in Python2 vs Python3
In Python2, we need to explicitly convert all unicode strings to utf8 otherwise we'll get a conversion
error if output contains unicode *and* output has been redirected to a file.
In Python3, output is utf8 by default and we need to leave the string alone - if we manually convert
python3 strings to utf8 then the output will wrap all strings in b''
"""
if _python2 and type( message ) is _unicode_type:
return message.encode( 'utf-8' )
return message
# Send a request to the server, and return the parsed JSON response.
# args: Our parsed command-line arguments
# uri: Request path for this RPC, e.g. "api/query"
# parametetDict: The dictionary to be sent (JSON-encoded) to the server as the request body
def sendRequest(args, uri, parameterDict):
parameterJson = json.dumps(parameterDict)
queryStartTime = datetime.datetime.now()
verbose = args.verbose
if verbose:
print_stderr("Using arguments: %s" % args)
# Allow to set custom scalyr_server via environment variable
serverAddress = args.server
if serverAddress is None:
serverAddress = os.environ.get('scalyr_server', 'https://www.scalyr.com')
useSSL = True
if serverAddress.startswith("http://"):
useSSL = False
serverAddress = serverAddress[7:]
elif serverAddress.startswith("https://"):
serverAddress = serverAddress[8:]
if verbose:
if useSSL:
protocol = 'https'
else:
protocol = 'http'
print_stderr("Connecting to %s via %s" % (serverAddress, protocol))
conn = None
if useSSL:
conn = httplib.HTTPSConnection(serverAddress)
else:
conn = httplib.HTTPConnection(serverAddress)
headers = {"Content-type": "application/json"}
if verbose:
print_stderr("Request headers:")
for i in headers:
print_stderr(" %s: %s" % (i, headers[i]))
print_stderr("Request body:")
print_stderr(json.dumps(json.loads(parameterJson), sort_keys=True, indent=2, separators=(',', ': ')))
conn.request("POST", uri, parameterJson, headers)
# Retrieve and parse the response.
response = conn.getresponse()
responseBody = response.read().decode('utf8')
if verbose or (response.status != 200):
print_stderr("After %s seconds, Scalyr server returned %s bytes; status %d / %s" % (int((datetime.datetime.now() - queryStartTime). total_seconds() * 1000) / 1000.0, len(responseBody), response.status, response.reason))
if response.status != 200:
print_stderr('Response body:')
print_stderr(responseBody)
sys.exit(1)
try:
parsedResponse = json.loads(responseBody)
except ValueError:
print_stderr('Scalyr server returned invalid response:')
print_stderr(responseBody)
sys.exit(1)
status = parsedResponse['status']
if not status.startswith('success'):
print_stderr('Scalyr server returned error: %s (%s)' % (parsedResponse['message'], status))
sys.exit(1)
return (parsedResponse, responseBody)
# Implement the "scalyr get-file" command.
def commandGetFile(parser):
parser.add_argument('filepath',
help='server pathname of the file to retrieve, e.g. "/scalyr/alerts"')
args = parser.parse_args()
# Send the request to the server.
response, rawResponse = sendRequest(args, '/getFile', {
"token": getApiToken(args, 'scalyr_readconfig_token', 'Read Config'),
"path": args.filepath,
})
# Print the file content.
if response['status'] == 'success/noSuchFile':
print_stderr('File "%s" does not exist' % (args.filepath))
else:
createDate = datetime.datetime.fromtimestamp(int(response['createDate']) / 1000)
modDate = datetime.datetime.fromtimestamp(int(response['modDate']) / 1000)
print_stderr('Retrieved file "%s", version %d, created %s, modified %s, length %s' % (args.filepath, response['version'], createDate, modDate, len(response['content'])))
print( output_encoded( response['content'] ) )
# Implement the "scalyr put-file" command.
def commandPutFile(parser):
# Parse the command-line arguments.
parser.add_argument('filepath',
help='server pathname of the file to retrieve, e.g. "/scalyr/alerts"')
args = parser.parse_args()
# Send the request to the server.
content = sys.stdin.read()
response, rawResponse = sendRequest(args, '/putFile', {
"token": getApiToken(args, 'scalyr_writeconfig_token', 'Write Config'),
"path": args.filepath,
"content": content
})
# Confirm file was updated.
print_stderr('File "%s" updated' % (args.filepath))
# Implement the "scalyr delete-file" command.
def commandDeleteFile(parser):
# Parse the command-line arguments.
parser.add_argument('filepath',
help='server pathname of the file to delete, e.g. "/scalyr/alerts"')
args = parser.parse_args()
# Send the request to the server.
response, rawResponse = sendRequest(args, '/putFile', {
"token": getApiToken(args, 'scalyr_writeconfig_token', 'Write Config'),
"path": args.filepath,
"deleteFile": True
})
# Confirm file was deleted.
print_stderr('File "%s" deleted' % (args.filepath))
# Implement the "scalyr list-files" command.
def commandListFiles(parser):
# Parse the command-line arguments.
args = parser.parse_args()
# Send the request to the server.
response, rawResponse = sendRequest(args, '/listFiles', {
"token": getApiToken(args, 'scalyr_readconfig_token', 'Read Config')
})
# Print the file content.
paths = response['paths']
for i in range(len(paths)):
print(paths[i])
# Implement the "scalyr query" command.
def commandQuery(parser):
# Parse the command-line arguments.
parser.add_argument('filter', nargs='?', default='',
help='search term or filter expression')
parser.add_argument('--start', default='',
help='beginning of the time range to query')
parser.add_argument('--end', default='',
help='end of the time range to query')
parser.add_argument('--count', type=int, default=10,
help='how many log records to retrieve (1-5000)')
parser.add_argument('--mode', choices=['head', 'tail'], default='',
help='specifies whether to show logs from the beginning or end of the time range')
parser.add_argument('--columns', default='',
help='comma-delimited list of columns to display; defaults to all')
parser.add_argument('--output', choices=['singleline', 'multiline', 'csv', 'json', 'json-pretty'], default='multiline',
help='specifies the format in which matching log messages are displayed')
parser.add_argument('--priority', choices=['high', 'low'], default='high',
help='specifies the execution priority for this query. Use low for scripted operations where a delay of a second or so is acceptable.')
args = parser.parse_args()
columns = args.columns
output = args.output
if output == 'csv' and columns == '':
print_stderr('For CSV output, you must supply a nonempty --columns option')
sys.exit(1)
# Get the API token.
apiToken = getApiToken(args, 'scalyr_readlog_token', 'Read Logs')
# Send the query to the server.
response, rawResponse = sendRequest(args, '/api/query', {
"token": apiToken,
"queryType": "log",
"filter": args.filter,
"startTime": args.start,
"endTime": args.end,
"maxCount": args.count,
"pageMode": args.mode,
"columns": columns,
"priority": args.priority
})
# Print the log records.
matches = response['matches']
if args.output == 'json':
print( output_encoded( rawResponse ) )
elif args.output == 'json-pretty':
print( output_encoded( json.dumps(response, ensure_ascii=args.no_escape_unicode, sort_keys=True, indent=2, separators=(',', ': ')) ) )
elif args.output == 'csv':
columnList = columns.split(',')
ar = []
for i in range(len(columnList)):
ar.append(columnList[i])
csvBuffer = StringIO.StringIO()
csvWriter = csv.writer(csvBuffer, dialect='excel')
csvWriter.writerow(ar)
for i in range(len(matches)):
match = matches[i]
attributes = match.get('attributes')
for i in range(len(columnList)):
column = columnList[i]
if column in match:
ar[i] = output_encoded( match.get(column))
elif column in attributes:
ar[i] = output_encoded( attributes.get(column) )
else:
ar[i] = ''
csvWriter.writerow(ar)
print(csvBuffer.getvalue())
else:
# Readable text format (singleline or multiline)
for i in range(len(matches)):
printReadableRow(args.output, matches[i])
def printReadableRow(output, match):
rawTimestamp = match.get('timestamp')
timestamp = ""
if rawTimestamp:
timestamp = str(datetime.datetime.fromtimestamp(int(rawTimestamp) / 1E9)) + ": "
rawSeverity = match.get('severity')
severity = ""
if rawSeverity or 0 == rawSeverity:
severity = ['L', 'K', 'J', 'I', 'W', 'E', 'F'][rawSeverity] + " "
# get message, minus any trailing whitespace
message = match.get('message')
if not message:
message = ''
if output == 'messageonly':
output = 'singleline'
message = message.rstrip()
message = output_encoded( message )
attributes = match.get('attributes')
if output == 'singleline':
print('%s%s%s' % (timestamp, severity, message)),
for attrName in sorted(attributes.keys()):
print(' %s=%s' % (attrName, attributes[attrName])),
print('')
elif output == 'messageonly':
print(message)
else:
print('%s%s%s' % (timestamp, severity, message))
for attrName in sorted(attributes.keys()):
print(' %s = %s' % (attrName, attributes[attrName]))
# Print the output of a numeric-query or timeseries-query command.
def printNumericResults(values, outputFormat, rawResponse, response):
if outputFormat == 'json':
print(rawResponse)
elif outputFormat == 'json-pretty':
print(json.dumps(response, sort_keys=True, indent=2, separators=(',', ': ')))
else:
# csv
print(','.join(map(str, values)))
def get_match_unique_id(match):
return (match['timestamp'], match['session'])
def liveTail(apiToken, args):
maximum_tail_time = 10 * 60
readback_limit = 10 * 60 # 10 minutes
max_matches = 1000
poll_interval = 10
initial_lines = args.lines
if initial_lines > max_matches:
print_stderr("Output of previous lines is limited to 1000 lines only")
initial_lines = max_matches
start_time = time.time()
current_time = time.time()
first = True
previous_matches = deque(maxlen=max_matches)
print_stderr("Beginning live tail..")
while current_time - start_time < maximum_tail_time:
# Send the query to the server.
response, rawResponse = sendRequest(args, '/api/query', {
"token": apiToken,
"queryType": "log",
"filter": args.filter,
"startTime": int(current_time - readback_limit),
"endTime": int(current_time),
"maxCount": max_matches,
"pageMode": "tail",
"columns": '',
"priority": "low"
})
# get a list of matches that we haven't seen yet
new_matches = [match for match in response['matches'] if get_match_unique_id(match) not in previous_matches]
# if the "not in previous_matches" test didn't find any duplicates, that means there have been
# so many new log events that our new query didn't overlap with the previous query. Therefore, we'll
# have missed some of the intervening messages.
row_count = len(new_matches)
if not first and row_count >= max_matches:
print_stderr("[WARN] Too many messages for tail to keep up; some messages are not being shown.")
# print out any new matches, and add the ids to the list of matches we have already seen.
# Also keep track of how many rows we have seen already, so the first time through we can
# print the last few lines
for match in new_matches:
if not first or row_count <= initial_lines:
printReadableRow(args.output, match)
previous_matches.append(get_match_unique_id(match))
row_count -= 1
# sleep for any remaining time
new_time = time.time()
elapsed_time = new_time - current_time
remaining_time = poll_interval - elapsed_time
if remaining_time > 0:
time.sleep(remaining_time)
current_time = time.time()
first = False
print_stderr("----\nTo minimize server load, live tail expires after 10 minutes. If this is bothersome, please let us know at support@scalyr.com.\n")
# Implement the 'scalyr tail' command
def commandTail(parser):
# Build the args
parser.add_argument('filter', nargs='?', default='',
help='search term or filter expression')
parser.add_argument('--output', choices=['singleline', 'multiline', 'messageonly'], default='messageonly',
help='specifies the format in which matching log messages are displayed')
parser.add_argument('--lines', '-n', type=int, default=10,
help='Output the previous \'n\' lines at the start of the tail')
# Get the API token
args = parser.parse_args()
apiToken = getApiToken(args, 'scalyr_readlog_token', 'Read Logs')
try:
liveTail(apiToken, args)
except KeyboardInterrupt:
print_stderr("\nLive tail has quit.")
# Implement the "scalyr numeric-query" command.
def commandNumericQuery(parser):
# Parse the command-line arguments.
parser.add_argument('filter', nargs=1, default='',
help='search term or filter expression')
parser.add_argument('--function', default='',
help='the value to compute from the events matching the filter')
parser.add_argument('--start', required=True,
help='beginning of the time range to query')
parser.add_argument('--end', default='',
help='end of the time range to query')
parser.add_argument('--buckets', type=int, default=1,
help='how many buckets to divide the time interval into (1-5000)')
parser.add_argument('--output', choices=['csv', 'json', 'json-pretty'], default='csv',
help='specifies the format in which numbers are emitted')
parser.add_argument('--priority', choices=['high', 'low'], default='high',
help='specifies the execution priority for this query. Use low for scripted operations where a delay of a second or so is acceptable.')
args = parser.parse_args()
# Get the API token.
apiToken = getApiToken(args, 'scalyr_readlog_token', 'Read Logs')
# Send the query to the server.
response, rawResponse = sendRequest(args, '/api/numericQuery', {
"token": apiToken,
"queryType": "numeric",
"filter": args.filter[0],
"function": args.function,
"startTime": args.start,
"endTime": args.end,
"buckets": args.buckets,
"priority": args.priority
})
printNumericResults(response['values'], args.output, rawResponse, response)
# Print the output of a facet-query command.
def printFacetResults(matchCount, values, outputFormat, rawResponse, response, ensure_ascii=True):
if outputFormat == 'json':
print( output_encoded( rawResponse ) )
elif outputFormat == 'json-pretty':
print( output_encoded( json.dumps(response, ensure_ascii=ensure_ascii, sort_keys=True, indent=2, separators=(',', ': ') ) ))
else:
# csv
csvBuffer = StringIO.StringIO()
csvWriter = csv.writer(csvBuffer, dialect='excel')
csvWriter.writerow(['count', 'value'])
for i in range(len(values)):
valueAndCount = values[i]
csvWriter.writerow([valueAndCount.get('count'), output_encoded(valueAndCount.get('value'))])
print(csvBuffer.getvalue())
# Implement the "scalyr facet-query" command.
def commandFacetQuery(parser):
# Parse the command-line arguments.
parser.add_argument('filter', nargs=1,
help='search term or filter expression')
parser.add_argument('field', nargs=1,
help='the field whose values should be retrieved')
parser.add_argument('--count', type=int, default=100,
help='maximum number of unique values to retrieve (1-1000)')
parser.add_argument('--start', required=True,
help='beginning of the time range to query')
parser.add_argument('--end', default='',
help='end of the time range to query')
parser.add_argument('--output', choices=['csv', 'json', 'json-pretty'], default='csv',
help='specifies the format in which values are emitted')
parser.add_argument('--priority', choices=['high', 'low'], default='high',
help='specifies the execution priority for this query. Use low for scripted operations where a delay of a second or so is acceptable.')
args = parser.parse_args()
# Get the API token.
apiToken = getApiToken(args, 'scalyr_readlog_token', 'Read Logs')
# Send the query to the server.
response, rawResponse = sendRequest(args, '/api/facetQuery', {
"token": apiToken,
"queryType": "facet",
"filter": args.filter[0],
"field": args.field[0],
"maxCount": args.count,
"startTime": args.start,
"endTime": args.end,
"priority": args.priority
})
printFacetResults(response['matchCount'], response['values'], args.output, rawResponse, response, ensure_ascii=args.no_escape_unicode)
# Implement the "scalyr timeseries-query" command.
def commandTimeseriesQuery(parser):
# Parse the command-line arguments.
parser.add_argument('--timeseries', default='',
help='ID of the timeseries to query')
parser.add_argument('filter', nargs='*', default='',
help='search term or filter expression, used only if --timeseries is not provided')
parser.add_argument('--function', default='',
help='the value to compute from the events matching the filter, used only if --timeseries is not provided')
parser.add_argument('--start', required=True,
help='beginning of the time range to query')
parser.add_argument('--end', default='',
help='end of the time range to query')
parser.add_argument('--buckets', type=int, default=1,
help='how many buckets to divide the time interval into (1-5000)')
parser.add_argument('--output', choices=['csv', 'json', 'json-pretty'], default='csv',
help='specifies the format in which numbers are emitted')
parser.add_argument('--priority', choices=['high', 'low'], default='high',
help='specifies the execution priority for this query. Use low for scripted operations where a delay of a second or so is acceptable.')
args = parser.parse_args()
# Get the API token.
apiToken = getApiToken(args, 'scalyr_readlog_token', 'Read Logs')
# build the query, in either flavor
query = {
"queryType": "numeric",
"startTime": args.start,
"endTime": args.end,
"buckets": args.buckets,
"priority": args.priority
}
if args.timeseries == '':
query["filter"] = args.filter[0]
query["function"] = args.function
else:
query["timeseriesId"] = args.timeseries
# Send the query to the server.
response, rawResponse = sendRequest(args, '/api/timeseriesQuery', {
"token": apiToken,
"queries": [ query ]
})
# Print the results.
printNumericResults(response['results'][0]['values'], args.output, rawResponse, response)
# Implement the "scalyr create-timeseries" command.
def commandCreateTimeseries(parser):
# Parse the command-line arguments.
parser.add_argument('filter', nargs=1, default='',
help='search term or filter expression')
parser.add_argument('--function', default='',
help='the value to compute from the events matching the filter')
args = parser.parse_args()
# Get the API token.
apiToken = getApiToken(args, 'scalyr_writeconfig_token', 'Write Config')
# Send the query to the server.
response, rawResponse = sendRequest(args, '/api/createTimeseries', {
"token": apiToken,
"queryType": "numeric",
"filter": args.filter[0],
"function": args.function
})
print(response['timeseriesId'])
if __name__ == '__main__':
# All available commands
all_commands = {
'query': commandQuery,
'tail': commandTail,
'numeric-query': commandNumericQuery,
'facet-query': commandFacetQuery,
'timeseries-query': commandTimeseriesQuery,
'timerseries-query': commandTimeseriesQuery, # mispelling; kept for backwards compatibility
'create-timeseries': commandCreateTimeseries,
'get-file': commandGetFile,
'put-file': commandPutFile,
'delete-file': commandDeleteFile,
'list-files': commandListFiles,
}
# Define arguments that are the same for all commands
parser = argparse.ArgumentParser(description='Scalyr command-line tool. See https://github.com/scalyr/scalyr-tool for documentation.')
parser.add_argument('command', choices=all_commands.keys(),
help='specifies the action to be performed')
parser.add_argument('--version', action='version', version='%(prog)s ' + TOOL_VERSION)
parser.add_argument('--server',
help='URL for the Scalyr API server. Defaults to https://www.scalyr.com. If you are using eu.scalyr.com then this should be set to https://eu.scalyr.com.')
parser.add_argument('--token', default='',
help='API access token')
parser.add_argument('--verbose', action='store_true', default=False,
help='enables additional diagnostic output')
parser.add_argument('--no-escape-unicode', action="store_false",
help='When true, the json-pretty output format will show unicode characters rather than escaped unicode characters (the default for json-pretty is to use escaped characters)')
command = None
# Because the options are command-specific, we cannot fully parse the arguments until we know the
# command... but we also need to know which command to invoke so that we can add the command-specific
# options and then execute the command. So, here, we just guess what the command is by looking over all the
# arguments and seeing the first one that matches one of the possible commands.
for arg in sys.argv[1:]:
if arg in all_commands:
command = arg
# If we could not find a possible command, then just try to parse the commandline with the current options, which
# we know will fail since there's no valid value for 'command'.
if command is None:
tmp_args = parser.parse_args()
# Invoke the command's function from the all_command's mapping. We really should change this to a more
# object oriented approach.
command_func = all_commands[command]
command_func(parser)