forked from membase/ns_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcbcollect_info
executable file
·410 lines (357 loc) · 15.3 KB
/
cbcollect_info
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
#!/usr/bin/python
# -*- python -*-
import os
import sys
import tempfile
import time
import subprocess
import string
import re
import platform
class TempFile(object):
unlink = os.unlink
def __init__(self):
fd, self.name = tempfile.mkstemp(text=True)
self.fp = os.fdopen(fd, 'w+')
def __getattr__(self, name):
return getattr(self.__dict__['fp'], name)
def __delete__(self):
try:
self.fp.close()
except:
pass
self.unlink(self.name)
class Task(object):
privileged = False
num_samples = 0
interval = 0
def __init__(self, description, command, **kwargs):
self.description = description
self.command = command
self.__dict__.update(kwargs)
def execute(self, fp):
"""Run the task"""
import subprocess
if hasattr(self, 'reformat') and self.reformat:
p = subprocess.Popen(self.command, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
print >> fp, p.stdout.read()
else:
p = subprocess.Popen(self.command, bufsize=-1, stdout=fp, stderr=fp,
shell=True)
return p.wait()
def will_run(self):
"""Determine if this task will run on this platform."""
return sys.platform in self.platforms
class TaskRunner(object):
default_name = "couchbase.log"
def __init__(self, verbosity=0):
self.files = {}
self.tasks = {}
self.verbosity = verbosity
self.start_time = time.strftime("%Y%m%d-%H%M%S", time.gmtime())
def get_file(self, filename):
if filename in self.files:
fp = self.files[filename]
else:
fp = TempFile()
self.files[filename] = fp
return fp
def header(self, fp, title, subtitle):
separator = '=' * 78
print >> fp, separator
print >> fp, title
print >> fp, subtitle
print >> fp, separator
fp.flush()
def log_result(self, result):
if result == 0:
print >> sys.stderr, "OK"
else:
print >> sys.stderr, "Exit code %d" % result
def run(self, task):
"""Run a task with a file descriptor corresponding to its log file"""
if task.will_run():
print >> sys.stderr, "%s (%s) - " % (task.description, task.command),
if task.privileged and os.getuid() != 0:
print >> sys.stderr, "skipped (needs root privs)"
return
if hasattr(task, 'log_file'):
filename = task.log_file
else:
filename = self.default_name
fp = self.get_file(filename)
self.header(fp, task.description, task.command)
result = task.execute(fp)
fp.flush()
self.log_result(result)
for i in xrange(2, task.num_samples + 2):
print >> sys.stderr, "Taking sample %d after %f seconds - " % \
(i, task.interval)
time.sleep(task.interval)
result = task.execute(fp)
self.log_result(result)
elif self.verbosity >= 2:
print >> sys.stderr, 'Skipping "%s" (%s): not for platform %s' \
% (task.description, task.command, sys.platform)
def zip(self, filename):
"""Write all our logs to a zipfile"""
from zipfile import ZipFile, ZIP_DEFLATED
zf = ZipFile(filename, mode='w', compression=ZIP_DEFLATED)
try:
for name, fp in self.files.iteritems():
fp.close()
zf.write(fp.name, "cbcollect_info_" + self.start_time + "/" + name)
finally:
zf.close()
class SolarisTask(Task):
platforms = ['sunos5', 'solaris']
class LinuxTask(Task):
platforms = ['linux2']
class WindowsTask(Task):
platforms = ['win32', 'cygwin']
class MacOSXTask(Task):
platforms = ['darwin']
class UnixTask(SolarisTask, LinuxTask, MacOSXTask):
platforms = SolarisTask.platforms + LinuxTask.platforms + MacOSXTask.platforms
class AllOsTask(UnixTask, WindowsTask):
platforms = UnixTask.platforms + WindowsTask.platforms
def basedir():
mydir = os.path.dirname(sys.argv[0])
if mydir == "":
mydir = "."
return mydir
def retrieve_config_value(config_key, node=None):
if platform.system() == 'Windows':
return retrieve_config_value_ex("escript.exe",
"cbdump-config",
"../var/lib/couchbase/config/config.dat",
config_key, node=node)
places = [("escript",
os.path.dirname(os.path.abspath(__file__)) +
"/cbdump-config",
os.path.dirname(os.path.abspath(__file__)) +
"/../var/lib/couchbase/config/config.dat"),
("escript",
"cbdump-config",
"~/Library/Application Support/Couchbase/var/lib/couchbase/config/config.dat")]
for escript_cmd, script, config_file in places:
rv = retrieve_config_value_ex(escript_cmd, script, config_file, config_key, node=node)
if rv:
return rv
return None
def retrieve_config_value_ex(escript_cmd, script, config_file, config_key, node=None):
cmd_list = [escript_cmd, script, config_file]
if node:
cmd_list.append("node")
cmd_list.append(node)
try:
node_cfg = subprocess.Popen(cmd_list,
stdout=subprocess.PIPE).communicate()[0]
node_cfg = string.strip(node_cfg)
if len(node_cfg) <= 0:
return None
node_cfg = node_cfg.split("\n")
for line in node_cfg:
m = re.match(config_key, line)
if m:
return m.groups()
except:
pass
return None
def get_ip():
ip = None
try:
f = open('/opt/couchbase/var/lib/couchbase/ip', 'r')
ip = string.strip(f.read())
f.close()
except:
pass
if (not ip) or (len(ip) <= 0):
if platform.system() == 'Windows':
ip = subprocess.Popen("ip_addr.bat",
stdout=subprocess.PIPE).communicate()[0]
else:
ip = '127.0.0.1'
node = 'ns_1@' + ip
return node
def get_dbdir():
node = get_ip()
ret = retrieve_config_value('\s*{dbdir,\s*"(.+)"}', node)
if ret:
return ret[0]
else:
return ""
def get_credential():
ret = retrieve_config_value('\s*{creds,\[\{"(.+)",\s*\[\{password,\s*"(.*)"\}')
if ret:
return "%s:%s" % (ret[0], ret[1])
else:
return ""
def make_tasks():
_tasks = [
UnixTask("uname", "uname -a"),
WindowsTask("System information", "systeminfo"),
WindowsTask("Computer system", "wmic computersystem", reformat=True),
WindowsTask("Computer OS", "wmic os", reformat=True),
UnixTask("Directory structure",
"ls -lR /opt/couchbase /opt/membase /var/membase /etc/opt/membase"),
UnixTask("Database directory structure",
"ls -lR " + get_dbdir()),
WindowsTask("Database directory structure",
["dir", "/s", get_dbdir().replace("/", "\\")]),
UnixTask("Directory structure membase - previous versions",
"ls -lR /opt/membase /var/membase /var/opt/membase /etc/opt/membase"),
SolarisTask("Process list snapshot", "prstat -a -c -n 100 -t -v -L 1 10"),
SolarisTask("Process list", "ps -ef"),
SolarisTask("Service configuration", "svcs -a"),
SolarisTask("Swap configuration", "swap -l"),
SolarisTask("Disk activity", "zpool iostat 1 10"),
SolarisTask("Disk activity", "iostat -E 1 10"),
LinuxTask("Process list snapshot", "top -H -n 1"),
LinuxTask("Process list ", "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command"),
LinuxTask("Swap configuration", "free -t"),
LinuxTask("Swap configuration", "swapon -s"),
LinuxTask("Kernel modules", "lsmod"),
LinuxTask("Distro version", "cat /etc/redhat-release"),
LinuxTask("Distro version", "lsb_release -a"),
LinuxTask("Installed software", "rpm -qa"),
LinuxTask("Installed software", "COLUMNS=300 dpkg -l"),
LinuxTask("Extended iostat", "iostat -x -p ALL 1 10 || iostat -x 1 10"),
LinuxTask("Process usage", "export TERM=linux; top -b -n1 | egrep 'moxi|memcached|vbucketmigrator|CPU|load|Mem:|Swap:|Cpu(s)'"),
LinuxTask("Core dump settings", "find /proc/sys/kernel -type f -name '*core*' -print -exec cat '{}' ';'"),
LinuxTask("netstat -nap", "netstat -nap"),
LinuxTask("relevant lsof output", "lsof -n | grep 'moxi\|memcached\|vbucketmigrator\|beam'"),
MacOSXTask("Process list snapshot", "top -l 1"),
MacOSXTask("Disk activity", "iostat 1 10"),
MacOSXTask("Process list ",
"ps -Aww -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,"
"stat,wchan:12,start,bsdtime,command"),
WindowsTask("Service list", "wmic service where state=\"running\" GET caption, name, state", reformat=True),
WindowsTask("Process list", "wmic process", reformat=True),
WindowsTask("Swap settings", "wmic pagefile", reformat=True),
WindowsTask("Disk partition", "wmic partition", reformat=True),
WindowsTask("Disk volumes", "wmic volume", reformat=True),
UnixTask("Network configuration", "ifconfig -a", interval=10,
num_samples=1),
WindowsTask("Network configuration", "ipconfig /all", interval=10,
num_samples=1),
UnixTask("Network status", "netstat -an"),
WindowsTask("Network status", "netstat -an"),
AllOsTask("Network routing table", "netstat -rn"),
UnixTask("Arp cache", "arp -na"),
WindowsTask("Arp cache", "arp -a"),
WindowsTask("Network Interface Controller", "wmic nic", reformat=True),
WindowsTask("Network Adapter", "wmic nicconfig", reformat=True),
WindowsTask("Active network connection", "wmic netuse", reformat=True),
WindowsTask("Protocols", "wmic netprotocol", reformat=True),
WindowsTask("Cache memory", "wmic memcache", reformat=True),
WindowsTask("Physical memory", "wmic memphysical", reformat=True),
WindowsTask("Physical memory chip info", "wmic memorychip", reformat=True),
WindowsTask("Local storage devices", "wmic logicaldisk", reformat=True),
WindowsTask("Version file",
"type " + basedir() + "\\..\\VERSION.txt", reformat=True),
WindowsTask("Manifest file",
"type " + basedir() + "\\..\\manifest.txt", reformat=True),
WindowsTask("Manifest file",
"type " + basedir() + "\\..\\manifest.xml", reformat=True),
WindowsTask("Couchbase config",
basedir() + "\\erlang\\bin\\escript.exe " +
basedir() + "\\cbdump-config " +
basedir() + "\\..\\var\\lib\\couchbase\\config\\config.dat",
reformat=True),
UnixTask("Filesystem", "df -ha"),
UnixTask("System activity reporter", "sar 1 10"),
UnixTask("System paging activity", "vmstat 1 10"),
UnixTask("System uptime", "uptime"),
UnixTask("couchbase user definition", "getent passwd couchbase"),
UnixTask("couchbase user limits", "su couchbase -c \"ulimit -a\"",
privileged=True),
UnixTask("membase user definition", "getent passwd membase"),
UnixTask("couchbase user limits", "su couchbase -c \"ulimit -a\"",
privileged=True),
UnixTask("membase user limits", "su membase -c \"ulimit -a\"",
privileged=True),
UnixTask("Interrupt status", "intrstat 1 10"),
UnixTask("Processor status", "mpstat 1 10"),
UnixTask("System log", "cat /var/adm/messages"),
LinuxTask("System log", "cat /var/log/syslog"),
LinuxTask("System log", "cat /var/log/messages"),
LinuxTask("Version file", "cat /opt/couchbase/VERSION.txt"),
LinuxTask("Manifest file", "cat /opt/couchbase/manifest.txt"),
LinuxTask("Manifest file", "cat /opt/couchbase/manifest.xml"),
UnixTask("Kernel log buffer", "dmesg"),
LinuxTask("couchbase config",
os.path.dirname(sys.argv[0]) + "/cbdump-config /opt/couchbase/var/lib/couchbase/config/config.dat"),
AllOsTask("couchbase logs (debug)", "cbbrowse_logs", log_file="ns_server.debug.log"),
AllOsTask("couchbase logs (info)", "cbbrowse_logs info", log_file="ns_server.info.log"),
AllOsTask("couchbase logs (error)", "cbbrowse_logs error", log_file="ns_server.error.log"),
AllOsTask("couchbase logs (couchdb)", "cbbrowse_logs couchdb", log_file="ns_server.couchdb.log"),
AllOsTask("couchbase logs (views)", "cbbrowse_logs views", log_file="ns_server.views.log"),
]
c = get_credential()
if c:
_tasks.append(
AllOsTask("couchbase diags",
"curl \"http://%s@127.0.0.1:8091/diag?noLogs=1\"" % (c),
log_file="diag.log"))
for flg in ['', '-a']:
_tasks = _tasks + [
AllOsTask("memcached stats all",
"cbstats %s 127.0.0.1:11210 all _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached stats checkpoint",
"cbstats %s 127.0.0.1:11210 checkpoint _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached stats dispatcher",
"cbstats %s 127.0.0.1:11210 dispatcher logs _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached stats hash",
"cbstats %s 127.0.0.1:11210 hash detail _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached stats tap",
"cbstats %s 127.0.0.1:11210 tap _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached stats tapagg",
"cbstats %s 127.0.0.1:11210 tapagg _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached stats timings",
"cbstats %s 127.0.0.1:11210 timings _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached memory stats",
"cbstats %s 127.0.0.1:11210 raw memory _admin _admin" % (flg),
log_file="stats.log"),
AllOsTask("memcached allocator stats",
"cbstats %s 127.0.0.1:11210 raw allocator _admin _admin" % (flg),
log_file="stats.log")
]
return _tasks
def main():
from optparse import OptionParser
parser = OptionParser("usage: %prog [options] output_file.zip")
parser.add_option("-v", dest="verbosity", help="increase verbosity level",
action="count", default=0)
options, args = parser.parse_args()
if len(args) != 1:
parser.error("incorrect number of arguments")
mydir = os.path.dirname(sys.argv[0])
erldir = os.path.join(mydir, 'erlang', 'bin')
if os.name == 'posix':
path = [mydir,
'/bin',
'/sbin',
'/usr/bin',
'/usr/sbin',
'/opt/couchbase/bin',
erldir,
os.environ['PATH']]
os.environ['PATH'] = ':'.join(path)
elif os.name == 'nt':
path = [mydir, erldir, os.environ['PATH']]
os.environ['PATH'] = ';'.join(path)
runner = TaskRunner(verbosity=options.verbosity)
for task in make_tasks():
runner.run(task)
runner.zip(args[0])
if __name__ == '__main__':
main()