-
Notifications
You must be signed in to change notification settings - Fork 6
/
ceph-collect
438 lines (366 loc) · 15.9 KB
/
ceph-collect
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
#!/usr/bin/env python3
"""
ceph-collect is a tool used by 42on to gather information from a Ceph cluster
in case of support or emergency assistance.
The tool gathers information from the Ceph cluster and creates a tarball in /tmp
Author: Wido den Hollander <wido@42on.com>
License: GPL2
"""
import argparse
import datetime
import sys
import shutil
import logging
import tempfile
import tarfile
import json
import subprocess
import re
CEPH_CONFIG_FILE = '/etc/ceph/ceph.conf'
CEPH_TIMEOUT = 10
DEFAULT_CONFIG_FILTERS = [
'(?i)password',
'(?i)key',
'(?i)cert'
]
FILTER_PLACEHOLDER = "** HIDDEN **"
# Logging configuration
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
LOGGER = logging.getLogger()
try:
import rados
except ImportError:
if sys.version_info[0] == 3:
LOGGER.error("rados module not found, try running with python2")
sys.exit(1)
else:
LOGGER.error("rados module not found, try running with python3")
sys.exit(1)
# Functions to gather Ceph information
def write_file(filename, content):
"""
:param filename: File to write to
:param content: Content to write to file
:return: True on succes
"""
with open(filename, 'wb') as file_handle:
file_handle.write(content)
return True
def read_file(filename):
"""
:param filename: File to read contents from
:return: File contents as a String
"""
with open(filename, 'r') as file_handle:
return file_handle.read()
def get_rados_connection(ceph_config, timeout):
"""
Create a connection with a Ceph cluster
:param ceph_config: Path to ceph.conf file
:param timeout: Seconds for timeouts on Ceph operations
:return: Rados connection
"""
LOGGER.debug('Using Ceph configuration file: %s', ceph_config)
r = rados.Rados(conffile=ceph_config)
LOGGER.debug('Setting client_mount_timeout to: %d', timeout)
r.conf_set('client_mount_timeout', str(timeout))
LOGGER.debug('Connecting to Ceph cluster')
r.connect(timeout=timeout)
return r
def spawn(command, shell=True):
"""
Simply spawn a process and return the output
"""
p = subprocess.Popen(command, stdout=subprocess.PIPE, shell=shell)
(result, _) = p.communicate()
return result.strip()
def ceph_mon_command(r, command, timeout, output_format, **kwargs):
"""
Using librados directly execute a command inside the Monitors.
Args:
:param r:
The rados object connect to the cluster
:type r: ``rados.Rados``
:param command:
The command to be exected by the Mon
:type command: ``str``
:param timeout:
The timeout for the request
:type timeout: ``int``
:param output_format:
:type output_format: ``str``
:param \**kwargs:
the arguments to pass to the mon command
Example:
# 'ceph device get-health-metrics 130c0631-fa78-4697-9"
ceph_mon_command(r,"device get-health-metrics", dev_id="130c0631-fa78-4697-9")
"""
cmd = kwargs.copy()
cmd['prefix'] = command
cmd['format'] = output_format
_, buf, _ = r.mon_command(json.dumps(cmd), b'', timeout=timeout)
return buf
def get_health_info(r, timeout, output_format):
info = dict()
info['stat'] = ceph_mon_command(r, 'health', timeout, output_format)
info['df'] = ceph_mon_command(r, 'df', timeout, output_format)
info['report'] = ceph_mon_command(r, 'report', timeout, output_format)
info['detail'] = ceph_mon_command(r, 'health', timeout, output_format, detail='detail')
return info
def get_mon_info(r, timeout, output_format):
info = dict()
info['stat'] = ceph_mon_command(r, 'mon stat', timeout, output_format)
info['dump'] = ceph_mon_command(r, 'mon dump', timeout, output_format)
info['map'] = ceph_mon_command(r, 'mon getmap', timeout, output_format)
info['metadata'] = ceph_mon_command(r, 'mon metadata', timeout, output_format)
return info
def get_osd_info(r, timeout, output_format):
info = dict()
info['tree'] = ceph_mon_command(r, 'osd tree', timeout, output_format)
info['df'] = ceph_mon_command(r, 'osd df', timeout, output_format)
info['dump'] = ceph_mon_command(r, 'osd dump', timeout, output_format)
info['stat'] = ceph_mon_command(r, 'osd stat', timeout, output_format)
info['crushmap'] = ceph_mon_command(r, 'osd getcrushmap', timeout, output_format)
info['map'] = ceph_mon_command(r, 'osd getmap', timeout, output_format)
info['metadata'] = ceph_mon_command(r, 'osd metadata', timeout, output_format)
info['perf'] = ceph_mon_command(r, 'osd perf', timeout, output_format)
return info
def get_mds_info(r, timeout, output_format):
info = dict()
info['metadata'] = ceph_mon_command(r, 'mds metadata', timeout, output_format)
info['dump'] = ceph_mon_command(r, 'mds dump', timeout, output_format)
if not info['dump']:
# New ceph version
LOGGER.debug("Gathering MDS: Luminous or newer version")
info['dump'] = ceph_mon_command(r, 'fs dump', timeout, output_format)
# The standard output format is colorized, force to 'json-pretty'
info['status'] = ceph_mon_command(r, 'fs status', timeout, 'json-pretty')
else:
# Old ceph version
LOGGER.debug("Gathering MDS: Mimic or previous version")
info['stat'] = ceph_mon_command(r, 'mds stat', timeout, output_format)
info['map'] = ceph_mon_command(r, 'mds getmap', timeout, output_format)
return info
def get_pg_info(r, timeout, output_format):
info = dict()
info['stat'] = ceph_mon_command(r, 'pg stat', timeout, output_format)
info['dump'] = ceph_mon_command(r, 'pg dump', timeout, output_format)
info['dump_stuck'] = ceph_mon_command(r, 'pg dump_stuck', timeout, output_format)
return info
def get_device_info(r, timeout, output_format):
info = dict()
info['check_health'] = ceph_mon_command(r, 'device check-health', timeout, output_format)
device_list_str = ceph_mon_command(r, 'device ls', timeout, 'json')
if device_list_str:
device_list = json.loads(device_list_str)
for device in device_list:
metrics_str = ceph_mon_command(r, 'device get-health-metrics' , timeout, output_format, devid=device['devid'])
device['metrics'] = {}
if metrics_str:
metrics = json.loads(metrics_str)
metrics_keys = [k for k in metrics.keys()]
metrics_keys.sort()
for key in metrics_keys[-1:]:
device['metrics'][key] = metrics[key]
info['status'] = json.dumps(device_list, sort_keys=True, indent=4).encode('utf-8')
else:
LOGGER.info('Device health info is enabled, but it seems not supported by this ceph version')
info['status'] = b''
return info
def get_ceph_config(ceph_config):
return read_file(ceph_config)
def collect_ceph_information(r, ceph_config, output_directory, timeout,
output_format, cleanup=True, device_health=False,
custom_config_filters=[],log_config=False):
config_filters=DEFAULT_CONFIG_FILTERS
config_filters.extend(custom_config_filters)
def filter_config(data, mode, is_conffile):
"""
It purges the configuration
Args:
:param data:
configuraration data
:type data: ``str``
:param mode:
mode can be:
* 'plain'
* 'json'
:type mode: ``str``
:param is_conffile:
True if data is from "ceph.conf"
:type is_conffile: ``bool``
Return:
bytes
"""
if not data:
return data
if mode == 'plain':
if type(data) == bytes:
data=data.decode('utf-8')
lines=data.splitlines()
if not is_conffile:
# find the position of the VALUE Column
config_value_start=lines[0].rfind("VALUE")
config_value_end=lines[0].rfind("RO")
for patter in config_filters:
for index in range(len(lines)-1, 0, -1):
line=lines[index]
if bool(re.search(patter, line)):
if is_conffile:
# replace from '=' to end of line with FILTER_PLACEHOLDER
lines[index] = line[:line.rfind("=")] + ' = ' + FILTER_PLACEHOLDER
else:
# replace the VALUE column with FILTER_PLACEHOLDER
lines[index] = line[:config_value_start] + \
FILTER_PLACEHOLDER + " " + \
line[config_value_end]
data='\n'.join(lines)
elif mode in ('json', 'json-pretty'):
js= json.loads(data)
for patter in config_filters:
for index in range(len(js)-1, -1, -1):
for key in ('name', 'section', 'value'):
if bool(re.search(patter, js[index][key])):
js[index]['value']=FILTER_PLACEHOLDER
break
if mode == 'json':
data = json.dumps(js)
else:
data = json.dumps(js, sort_keys=True, indent=4)
else:
LOGGER.error("Unsupported output mode")
sys.exit(1)
return data.encode('utf-8')
tmpdir = tempfile.mkdtemp()
LOGGER.debug('Using temporary directory %s', tmpdir)
files = dict()
LOGGER.info('Gathering overall system information')
files['uname'] = spawn('uname -a') + b'\n'
lsb_release = spawn('lsb_release -a')
if(len(lsb_release)==0):
lsb_release = spawn('cat /etc/*-release')
files['lsb_release'] = lsb_release + b'\n'
LOGGER.info('Gathering overall Ceph information')
files['status'] = ceph_mon_command(r, 'status', timeout, output_format)
files['version'] = spawn('ceph -v') + b'\n'
files['versions'] = ceph_mon_command(r, 'versions', timeout, output_format)
files['features'] = ceph_mon_command(r, 'features', timeout, output_format)
##Add if to get around python2/python3 dependencies etc.
if sys.version_info[0] == 3:
files['fsid'] = bytes(r.get_fsid() + '\n', 'utf-8')
files['ceph.conf'] = filter_config(
get_ceph_config(ceph_config),
'plain',
True
)
else:
files['fsid'] = str(r.get_fsid()) + '\n'
files['ceph.conf'] = str(
filter_config(
get_ceph_config(ceph_config),
'plain',
True
)
)
files['config'] = filter_config(
ceph_mon_command(r, 'config dump', timeout, output_format),
output_format,
False
)
if log_config:
LOGGER.info('==== ceph.conf ======')
for line in files['ceph.conf'] .splitlines():
writemessage = " - " + line.decode('utf-8')
LOGGER.info(str(writemessage))
LOGGER.info('====== config ======')
for line in files['config'] .splitlines():
writemessage = " - " + line.decode('utf-8')
LOGGER.info(str(writemessage))
LOGGER.info('Gathering Health information')
for key, item in get_health_info(r, timeout, output_format).items():
files['health_{0}'.format(key)] = item
LOGGER.info('Gathering MON information')
for key, item in get_mon_info(r, timeout, output_format).items():
files['mon_{0}'.format(key)] = item
LOGGER.info('Gathering OSD information')
for key, item in get_osd_info(r, timeout, output_format).items():
files['osd_{0}'.format(key)] = item
LOGGER.info('Gathering PG information')
for key, item in get_pg_info(r, timeout, output_format).items():
files['pg_{0}'.format(key)] = item
LOGGER.info('Gathering MDS information')
for key, item in get_mds_info(r, timeout, output_format).items():
files['mds_{0}'.format(key)] = item
if device_health:
LOGGER.info('Gathering Device Health information')
for key, item in get_device_info(r, timeout, output_format).items():
files['device_{0}'.format(key)] = item
timestr = datetime.datetime.now().strftime("%Y%m%d_%H%I%S")
tarball = '{0}/ceph-collect_{1}.tar.gz'.format(output_directory, timestr)
with tarfile.open(tarball, 'w:gz') as tar:
for filename, content in files.items():
tmpfile = '{0}/{1}'.format(tmpdir, filename)
LOGGER.debug('Writing file %s', tmpfile)
#write_file(tmpfile, bytes(content, 'utf-8'))
write_file(tmpfile, content)
tar.add(name=tmpfile,
arcname='ceph-collect_{0}/{1}'.format(timestr, filename))
tar.close()
LOGGER.info('Outputted Ceph information to %s', tarball)
if cleanup:
LOGGER.debug('Cleaning up temporary directory %s', tmpdir)
shutil.rmtree(tmpdir)
else:
LOGGER.debug('Not cleaning up temporary directory %s', tmpdir)
if __name__ == '__main__':
RETURN_VALUE = 1
PARSER = argparse.ArgumentParser(description='Ceph Collect: Gather '
'information from a Ceph '
'cluster for support desks')
PARSER.add_argument('--ceph-config', action='store', dest='ceph_config',
default=CEPH_CONFIG_FILE,
help='Ceph Configuration file')
PARSER.add_argument('--output-dir', action='store', dest='output_dir',
default=tempfile.gettempdir(),
help='Directory to store output in')
PARSER.add_argument('--timeout', action='store', type=int,
dest='timeout',
default=CEPH_TIMEOUT,
help='Timeout for Ceph operations')
PARSER.add_argument('--format', action='store', dest='output_format',
default='plain', help='output format plain|json')
PARSER.add_argument('--debug', action='store_true', dest='debug',
default=False, help='Debug logging')
PARSER.add_argument('--no-cleanup', action='store_false', dest='cleanup',
default=True, help='Clean up temporary directory')
PARSER.add_argument('--device-health-metrics', action='store_true',
dest='device_health_metrics', default=False,
help='Enable the collection of device health information')
PARSER.add_argument('--config-filter', action='append',
dest='custom_config_filter',
help='Custom filter (python regex) for purging config dump. '
)
PARSER.add_argument('--log-gathered-config', action='store_true',
dest='log_gathered_config', default=False,
help='Log on INFO the config after the purge')
ARGS = PARSER.parse_args()
if ARGS.debug:
LOGGER.setLevel(logging.DEBUG)
try:
CNX = get_rados_connection(ceph_config=ARGS.ceph_config,
timeout=ARGS.timeout)
collect_ceph_information(r=CNX, ceph_config=ARGS.ceph_config,
output_directory=ARGS.output_dir,
timeout=ARGS.timeout, cleanup=ARGS.cleanup,
device_health=ARGS.device_health_metrics,
custom_config_filters=ARGS.custom_config_filter or [],
output_format=ARGS.output_format,
log_config=ARGS.log_gathered_config)
RETURN_VALUE = 0
except (rados.Error,
tarfile.TarError,
IOError,
KeyError,
ValueError) as exc:
LOGGER.error(exc)
sys.exit(RETURN_VALUE)