/usr/lib/python3/dist-packages/cgroup_top.py is in ctop 0.4.1-1.
This file is owned by root:root, with mode 0o644.
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 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 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Monitor local cgroups as used by Docker, LXC, SystemD, ...
Usage:
ctop [--tree] [--refresh=<seconds>] [--columns=<columns>] [--sort-col=<sort-col>] [--follow=<name>] [--fold=<cgroup>, ...]
ctop (-h | --help)
Options:
--tree Show tree view by default.
--fold=<name> Start with <name> cgroup path folded
--follow=<name> Follow/highlight cgroup at path.
--refresh=<seconds> Refresh display every <seconds> [default: 1].
--columns=<columns> List of optional columns to display. Always includes 'name'. [default: owner,processes,memory,cpu-sys,cpu-user,blkio,cpu-time].
--sort-col=<sort-col> Select column to sort by initially. Can be changed dynamically. [default: cpu-user]
-h --help Show this screen.
'''
from __future__ import print_function
import os
import re
import sys
import stat
import pwd
import time
import pty
import subprocess
import multiprocessing
from collections import defaultdict
from collections import namedtuple
from optparse import OptionParser
try:
import curses, _curses
except ImportError:
print("Curse is not available on this system. Exiting.", file=sys.stderr)
sys.exit(0)
def cmd_exists(cmd):
return subprocess.call(["/bin/which", cmd], stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0
HAS_LXC = cmd_exists('lxc-start')
HAS_DOCKER = cmd_exists('docker')
HIDE_EMPTY_CGROUP = True
CGROUP_MOUNTPOINTS={}
CONFIGURATION = {
'sort_by': 'cpu_total',
'sort_asc': False,
'tree': False,
'follow': False,
'pause_refresh': False,
'refresh_interval': 1.0,
'columns': [],
'selected_line': None,
'selected_line_num': 0,
'selected_line_name': '/',
'cgroups': [],
'fold': [],
}
Column = namedtuple('Column', ['title', 'width', 'align', 'col_fmt', 'col_data', 'col_sort'])
COLUMNS = []
COLUMNS_MANDATORY = ['name']
COLUMNS_AVAILABLE = {
'owner': Column("OWNER", 10, '<', '{0:%ss}', 'owner', 'owner'),
'type': Column("TYPE", 10, '<', '{0:%ss}', 'type', 'type'),
'processes': Column("PROC", 4, '>', '{0:%sd}', 'tasks', 'tasks'),
'memory': Column("MEMORY", 17, '^', '{0:%ss}', 'memory_cur_str', 'memory_cur_bytes'),
'cpu-sys': Column("SYST", 5, '^', '{0: >%s.1%%}', 'cpu_syst', 'cpu_total'),
'cpu-user': Column("USER", 5, '^', '{0: >%s.1%%}', 'cpu_user', 'cpu_total'),
'blkio': Column("BLKIO", 10, '^', '{0: >%s}', 'blkio_bw', 'blkio_bw_bytes'),
'cpu-time': Column("TIME+", 14, '^', '{0: >%ss}', 'cpu_total_str', 'cpu_total_seconds'),
'name': Column("CGROUP", '', '<', '{0:%ss}', 'cgroup', 'cgroup'),
}
# TODO:
# - visual CPU/memory usage
# - auto-color
# - persist preferences
# - dynamic column width
# - handle small screens
# - massive refactoring. This code U-G-L-Y
## Utils
def to_human(num, suffix='B'):
num = int(num)
for unit in [' ','K','M','G','T','P','E','Z']:
if abs(num) < 1024.0:
return "{0:.1f}{1}{2}".format(num, unit, suffix)
num /= 1024.0
return "{0:5.1d}{1}{2}" % (num, 'Y', suffix)
def div(num, by):
res = num / by
mod = num % by
return res, mod
def to_human_time(seconds):
minutes, seconds = div(seconds, 60)
hours, minutes = div(minutes, 60)
days, hours = div(hours, 24)
if days:
return '%3dd %02d:%02d.%02d' % (days, hours, minutes, seconds)
else:
return '%02d:%02d.%02d' % (hours, minutes, seconds)
def get_total_memory():
'''
Get total memory from /proc if available.
'''
try:
with open('/proc/meminfo') as f:
content = f.read()
except OSError:
content = ''
for line in content.split('\n'):
fields = re.split(' +', line)
if fields[0].strip() == "MemTotal:":
return int(fields[1])*1024
return -1
def run(user, cmd, interactive=False):
'''
Run ``cmd`` as ``user``. If ``interactive`` is True, save any curses status
and synchronously run the command in foreground. Otherwise, run the command
in background, discarding any output.
special user -2 means: current user
'''
prefix = []
cur_uid = os.getuid()
try:
cur_user = pwd.getpwuid(cur_uid).pw_name
except:
cur_user = cur_uid
if user != cur_user and user != -2:
if cur_uid == 0:
prefix = ['su', user]
if user == 'root':
prefix = ['sudo']
else:
prefix = ['sudo', '-u', user]
if interactive:
# Prepare screen for interactive command
curses.savetty()
curses.nocbreak()
curses.echo()
curses.endwin()
# Run command
pty.spawn(prefix+cmd)
# Restore screen
curses.start_color() # load colors
curses.use_default_colors()
curses.noecho() # do not echo text
curses.cbreak() # do not wait for "enter"
curses.curs_set(0) # hide cursor
curses.mousemask(curses.ALL_MOUSE_EVENTS)
curses.resetty()
else:
with open('/dev/null', 'w') as dev_null:
subprocess.Popen(
prefix+cmd,
stdout=dev_null,
stderr=dev_null,
close_fds=True,
)
class Cgroup(object):
def __init__(self, path, base_path):
self.path = path
self.base_path = base_path
@property
def name(self):
return self.path[len(self.base_path):] or '/'
@property
def owner(self):
path = os.path.join(self.base_path, self.path, 'tasks')
uid = os.stat(path).st_uid
try:
return pwd.getpwuid(uid).pw_name
except:
return uid
@property
def type(self):
path = self.name
# Guess cgroup owner
if path.startswith('/docker/') or path.startswith('/system.slice/docker-'):
return 'docker'
elif path.startswith('/lxc/'):
return 'lxc'
elif path.startswith('/user.slice/'):
_, parent, name = path.rsplit('/', 2)
if parent.endswith('.scope'):
if os.path.isdir('/home/%s/.local/share/lxc/%s' % (self.owner, name)):
return 'lxc-user'
return 'systemd'
elif path == '/user.slice' or path == '/system.slice' or path.startswith('/system.slice/'):
return 'systemd'
else:
return '-'
def _coerce(self, value):
try:
return int(value)
except:
pass
try:
return float(value)
except:
pass
return value
def __getitem__(self, name):
path = os.path.join(self.base_path, self.path, name)
with open(path) as f:
content = f.read().strip()
if name == 'tasks' or '\n' in content or ' ' in content:
content = content.split('\n')
if ' ' in content[0]:
content = dict((re.split(' +', l, 1) for l in content))
for k, v in content.items():
content[k] = self._coerce(v)
else:
content = [self._coerce(v) for v in content]
else:
content = self._coerce(content)
return content
def cgroups(base_path):
'''
Generator of cgroups under path ``name``
'''
for cgroup_path, dirs, files in os.walk(base_path):
yield Cgroup(cgroup_path, base_path)
## Grab cgroup data
def init():
# Get all cgroup subsystems avalaible on this system
with open("/proc/cgroups") as f:
cgroups = f.read().strip()
subsystems = []
for cgroup in cgroups.split('\n'):
if cgroup[0] == '#': continue
subsystems.append(cgroup.split()[0])
# Match cgroup mountpoints to susbsytems. Always take the first matching
with open("/proc/mounts") as f:
mounts = f.read().strip()
for mount in mounts.split('\n'):
mount = mount.split(' ')
if mount[2] != "cgroup":
continue
for arg in mount[3].split(','):
if arg in subsystems and arg not in CGROUP_MOUNTPOINTS:
CGROUP_MOUNTPOINTS[arg] = mount[1]
def collect(measures):
cur = defaultdict(dict)
prev = measures['data']
# Collect global data
if 'cpuacct' in CGROUP_MOUNTPOINTS:
# list all "folders" under mountpoint
for cgroup in cgroups(CGROUP_MOUNTPOINTS['cpuacct']):
# Collect tasks
cur[cgroup.name]['tasks'] = cgroup['tasks']
# Collect user
cur[cgroup.name]['owner'] = cgroup.owner
# Collect cgroup type
cur[cgroup.name]['type'] = cgroup.type
# Collect memory statistics
if 'memory' in CGROUP_MOUNTPOINTS:
# list all "folders" under mountpoint
for cgroup in cgroups(CGROUP_MOUNTPOINTS['memory']):
cur[cgroup.name]['memory.usage_in_bytes'] = cgroup['memory.usage_in_bytes']
cur[cgroup.name]['memory.limit_in_bytes'] = min(int(cgroup['memory.limit_in_bytes']), measures['global']['total_memory'])
# Collect CPU statistics
if 'cpuacct' in CGROUP_MOUNTPOINTS:
# list all "folders" under mountpoint
for cgroup in cgroups(CGROUP_MOUNTPOINTS['cpuacct']):
# Collect CPU stats
cur[cgroup.name]['cpuacct.stat'] = cgroup['cpuacct.stat']
cur[cgroup.name]['cpuacct.stat.diff'] = {'user':0, 'system':0}
# Collect CPU increase on run > 1
if cgroup.name in prev:
for key, value in cur[cgroup.name]['cpuacct.stat'].items():
cur[cgroup.name]['cpuacct.stat.diff'][key] = value - prev[cgroup.name]['cpuacct.stat'][key]
# Collect BlockIO statistics
if 'blkio' in CGROUP_MOUNTPOINTS:
# list all "folders" under mountpoint
for cgroup in cgroups(CGROUP_MOUNTPOINTS['blkio']):
# Collect BlockIO stats
cur[cgroup.name]['blkio.throttle.io_service_bytes'] = cgroup['blkio.throttle.io_service_bytes']
cur[cgroup.name]['blkio.throttle.io_service_bytes.diff'] = {'total':0}
# Collect BlockIO increase on run > 1
if cgroup.name in prev:
cur_val = cur[cgroup.name]['blkio.throttle.io_service_bytes']['Total']
prev_val = prev[cgroup.name]['blkio.throttle.io_service_bytes']['Total']
cur[cgroup.name]['blkio.throttle.io_service_bytes.diff']['total'] = cur_val - prev_val
# Sanity check: any data at all ?
if not len(cur):
raise KeyboardInterrupt()
# Apply
measures['data'] = cur
def built_statistics(measures, conf):
# Time
prev_time = measures['global'].get('time', -1)
cur_time = time.time()
time_delta = cur_time - prev_time
measures['global']['time'] = cur_time
cpu_to_percent = measures['global']['scheduler_frequency'] * measures['global']['total_cpu'] * time_delta
# Build data lines
results = []
for cgroup, data in measures['data'].items():
cpu_usage = data.get('cpuacct.stat.diff', {})
line = {
'owner': str(data.get('owner', 'nobody')),
'type': str(data.get('type', 'cgroup')),
'tasks': len(data['tasks']),
'memory_cur_bytes': data.get('memory.usage_in_bytes', 0),
'memory_limit_bytes': data.get('memory.limit_in_bytes', measures['global']['total_memory']),
'cpu_total_seconds': data.get('cpuacct.stat', {}).get('system', 0) + data.get('cpuacct.stat', {}).get('user', 0),
'cpu_syst': cpu_usage.get('system', 0) / cpu_to_percent,
'cpu_user': cpu_usage.get('user', 0) / cpu_to_percent,
'blkio_bw_bytes': data.get('blkio.throttle.io_service_bytes.diff', {}).get('total', 0),
'cgroup': cgroup,
}
line['cpu_total'] = line['cpu_syst'] + line['cpu_user'],
line['cpu_total_str'] = to_human_time(line['cpu_total_seconds'])
line['memory_cur_percent'] = line['memory_cur_bytes'] / line['memory_limit_bytes']
line['memory_cur_str'] = "{0: >7}/{1: <7}".format(to_human(line['memory_cur_bytes']), to_human(line['memory_limit_bytes']))
line['blkio_bw'] = to_human(line['blkio_bw_bytes'], 'B/s')
results.append(line)
return results
def render_tree(results, tree, level=0, prefix=[], node='/'):
# Exit condition
if node not in tree:
return
# Iteration
for i, line in enumerate(tree[node]):
cgroup = line['cgroup']
# Build name
if i == len(tree[node]) - 1:
line['_tree'] = prefix + [curses.ACS_LLCORNER, curses.ACS_HLINE, ' ']
_child_prefix = prefix + [' ', ' ', ' ']
else:
line['_tree'] = prefix + [curses.ACS_LTEE, curses.ACS_HLINE, ' ']
_child_prefix = prefix + [curses.ACS_VLINE, ' ', ' ']
# Commit, fold or recurse
results.append(line)
if cgroup not in CONFIGURATION['fold']:
render_tree(results, tree, level+1, _child_prefix, cgroup)
else:
line['_tree'] [-2] = '+'
def prepare_tree(results):
# Build tree
tree = {}
rendered = []
for line in results:
cgroup = line['cgroup']
parent = os.path.dirname(cgroup)
# Root cgroup ?
if parent == cgroup:
rendered.append(line)
continue
# Insert in hierarchie as needed
if parent not in tree:
tree[parent] = []
tree[parent].append(line)
# Render tree, starting from root
render_tree(rendered, tree)
return rendered
def display(scr, results, conf):
# Sort
results = sorted(results, key=lambda line: line.get(conf['sort_by'], 0), reverse=not conf['sort_asc'])
if CONFIGURATION['tree']:
results = prepare_tree(results)
CONFIGURATION['cgroups'] = [cgroup['cgroup'] for cgroup in results]
# Ensure selected line name synced with num
if CONFIGURATION['follow']:
while True:
try:
i = CONFIGURATION['cgroups'].index(CONFIGURATION['selected_line_name'])
CONFIGURATION['selected_line_num'] = i
break
except:
CONFIGURATION['selected_line_name'] = os.path.dirname(CONFIGURATION['selected_line_name'])
else:
CONFIGURATION['selected_line_num'] = min(len(results)-1, CONFIGURATION['selected_line_num'])
CONFIGURATION['selected_line_name'] = CONFIGURATION['cgroups'][CONFIGURATION['selected_line_num']]
CONFIGURATION['selected_line'] = results[CONFIGURATION['selected_line_num']]
# Display statistics
scr.clear()
height, width = scr.getmaxyx()
# Title line && templates
x = 0
line_tpl = []
scr.addstr(0, 0, ' '*width, curses.color_pair(1))
for col in COLUMNS:
# Build templates
title_fmt = '{0:%s%ss}' % (col.align, col.width)
line_tpl.append(col.col_fmt % (col.width))
# Build title line
color = 2 if col.col_sort == conf['sort_by'] else 1
try:
scr.addstr(0, x, title_fmt.format(col.title)+' ', curses.color_pair(color))
except:
# Handle narrow screens
break
if col.width:
x += col.width + 1
# Content
lineno = 1
for line in results:
y = 0
if lineno-1 == CONFIGURATION['selected_line_num']:
col_reg, col_tree = curses.color_pair(2), curses.color_pair(2)
else:
col_reg, col_tree = colors = curses.color_pair(0), curses.color_pair(4)
# Draw line background
try:
scr.addstr(lineno, 0, ' '*width, col_reg)
except:
# Handle small screens
break
# Draw line content
try:
for col in COLUMNS:
cell_tpl = col.col_fmt % (col.width if col.width else 1)
data_point = line.get(col.col_data, '')
if col.title == 'CGROUP' and CONFIGURATION['tree']:
data_point = os.path.basename(data_point) or '[root]'
for c in line.get('_tree', []):
scr.addch(c, col_tree)
y+=1
scr.addstr(lineno, y, cell_tpl.format(data_point)+' ', col_reg)
if col.width:
y += col.width + 1
except:
# Handle narrow screens
pass
lineno += 1
else:
# Make sure last line did not wrap, clear it if needed
try: scr.addstr(lineno, 0, ' '*width)
except: pass
# status line
try:
color = curses.color_pair(2)
try:
scr.addstr(height-1, 0, ' '*(width), color)
except:
# Last char wraps, on purpose: draw full line
pass
selected = results[CONFIGURATION['selected_line_num']]
scr.addstr(height-1, 0, " CTOP ", color)
scr.addch(curses.ACS_VLINE, color)
scr.addstr(" [P]ause: "+('On ' if CONFIGURATION['pause_refresh'] else 'Off '), color)
scr.addch(curses.ACS_VLINE, color)
scr.addstr(" [F]ollow: "+('On ' if CONFIGURATION['follow'] else 'Off ') , color)
scr.addch(curses.ACS_VLINE, color)
scr.addstr(" [F5] Toggle %s view "%('list' if CONFIGURATION['tree'] else 'tree'), color)
scr.addch(curses.ACS_VLINE, color)
# Fold control
if CONFIGURATION['tree']:
scr.addstr(" [+/-] %s "%('unfold' if selected['cgroup'] in CONFIGURATION['fold'] else 'fold'), color)
scr.addch(curses.ACS_VLINE, color)
# Do we have any actions available for *selected* line ?
selected_type = selected['type']
if selected_type == 'docker' and HAS_DOCKER or \
selected_type in ['lxc', 'lxc-user'] and HAS_LXC:
scr.addstr(" [A]ttach, [E]nter, [S]top, [K]ill ", color)
scr.addch(curses.ACS_VLINE, color)
scr.addstr(" [Q]uit", color)
except:
# Handle narrow screens
pass
scr.refresh()
def set_sort_col(sort_by):
if CONFIGURATION['sort_by'] == sort_by:
CONFIGURATION['sort_asc'] = not CONFIGURATION['sort_asc']
else:
CONFIGURATION['sort_by'] = sort_by
def on_keyboard(c):
'''Handle keyborad shortcuts'''
if c == ord('q'):
raise KeyboardInterrupt()
elif c == ord('p'):
CONFIGURATION['pause_refresh'] = not CONFIGURATION['pause_refresh']
elif c == ord('f'):
CONFIGURATION['follow'] = not CONFIGURATION['follow']
return 2
elif c == ord('+') or c == ord('-'):
cgroup = CONFIGURATION['selected_line']['cgroup']
if cgroup in CONFIGURATION['fold']:
CONFIGURATION['fold'].remove(cgroup)
else:
CONFIGURATION['fold'].append(cgroup)
return 2
elif c == ord('a'):
selected = CONFIGURATION['selected_line']
selected_name = os.path.basename(selected['cgroup'])
if selected['type'] == 'docker' and HAS_DOCKER:
if selected_name.startswith('docker-'):
selected_name = selected_name[7:-6]
run(-2, ['docker', 'attach', selected_name], interactive=True)
elif selected['type'] in ['lxc', 'lxc-user'] and HAS_LXC:
run(selected['owner'], ['lxc-console', '--name', selected_name, '--', '/bin/bash'], interactive=True)
return 2
elif c == ord('e'):
selected = CONFIGURATION['selected_line']
selected_name = os.path.basename(selected['cgroup'])
if selected['type'] == 'docker' and HAS_DOCKER:
if selected_name.startswith('docker-'):
selected_name = selected_name[7:-6]
run(-2, ['docker', 'exec', '-it', selected_name, '/bin/bash'], interactive=True)
elif selected['type'] in ['lxc', 'lxc-user'] and HAS_LXC:
run(selected['owner'], ['lxc-attach', '--name', selected_name, '--', '/bin/bash'], interactive=True)
return 2
elif c == ord('s'):
selected = CONFIGURATION['selected_line']
selected_name = os.path.basename(selected['cgroup'])
if selected['type'] == 'docker' and HAS_DOCKER:
if selected_name.startswith('docker-'):
selected_name = selected_name[7:-6]
run(-2, ['docker', 'stop', selected_name])
elif selected['type'] in ['lxc', 'lxc-user'] and HAS_LXC:
run(selected['owner'], ['lxc-stop', '--name', selected_name, '--nokill', '--nowait'])
return 1
elif c == ord('k'):
selected = CONFIGURATION['selected_line']
selected_name = os.path.basename(selected['cgroup'])
if selected['type'] == 'docker' and HAS_DOCKER:
if selected_name.startswith('docker-'):
selected_name = selected_name[7:-6]
run(-2, ['docker', 'stop', '-t', '0', selected_name])
elif selected['type'] in ['lxc', 'lxc-user'] and HAS_LXC:
run(selected['owner'], ['lxc-stop', '-k', '--name', selected_name, '--nowait'])
return 2
elif c == 269: # F5
CONFIGURATION['tree'] = not CONFIGURATION['tree']
return 2
elif c == curses.KEY_DOWN:
if CONFIGURATION['follow']:
i = CONFIGURATION['cgroups'].index(CONFIGURATION['selected_line_name'])
else:
i = CONFIGURATION['selected_line_num']
i = min(i+1, len(CONFIGURATION['cgroups'])-1)
CONFIGURATION['selected_line_num'] = i
CONFIGURATION['selected_line_name'] = CONFIGURATION['cgroups'][i]
return 2
elif c == curses.KEY_UP:
if CONFIGURATION['follow']:
i = CONFIGURATION['cgroups'].index(CONFIGURATION['selected_line_name'])
else:
i = CONFIGURATION['selected_line_num']
i = max(i-1, 0)
CONFIGURATION['selected_line_num'] = i
CONFIGURATION['selected_line_name'] = CONFIGURATION['cgroups'][i]
return 2
return 1
def on_mouse():
'''Update selected line / sort'''
_, x, y, z, bstate = curses.getmouse()
# Left button click ?
if bstate & curses.BUTTON1_CLICKED:
# Is it title line ?
if y == 0:
# Determine sort column based on offset / col width
x_max = 0
for col in COLUMNS:
if not col.width:
set_sort_col(col.col_sort)
elif x < x_max+col.width:
set_sort_col(col.col_sort)
else:
x_max += col.width + 1
continue
return 2
# Is it a cgroup line ?
elif y <= len(CONFIGURATION['cgroups']):
if CONFIGURATION['follow']:
CONFIGURATION['selected_line_name'] = CONFIGURATION['cgroups'][y-1]
else:
CONFIGURATION['selected_line_num'] = y-1
return 2
return 1
def on_resize():
'''Redraw screen, do not refresh'''
return 1
def event_listener(scr, timeout):
'''
Wait for curses events on screen ``scr`` at mot ``timeout`` ms
return
- 1 OK
- 2 redraw
- 0 error
'''
try:
scr.timeout(timeout)
c = scr.getch()
if c == -1:
return 1
elif c == curses.KEY_MOUSE:
return on_mouse()
elif c == curses.KEY_RESIZE:
return on_resize()
else:
return on_keyboard(c)
except _curses.error:
return 0
def rebuild_columns():
del COLUMNS[:]
for col in CONFIGURATION['columns']+COLUMNS_MANDATORY:
COLUMNS.append(COLUMNS_AVAILABLE[col])
def diagnose():
devnull = open(os.devnull, 'w')
if os.path.isfile('/.dockerenv'):
print("""
Hint: It seems you are running inside a Docker container.
Please make sure to expose host's cgroups with
'--volume=/sys/fs/cgroup:/sys/fs/cgroup:ro'""", file=sys.stderr)
if cmd_exists('boot2docker'):
print("""
Hint: It seems you have 'boot2docker' installed.
To monitor Docker containers in 'boot2docker'
run CTOP inside the VM itself with:
$ docker run --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro -it --rm yadutaf/ctop""", file=sys.stderr)
devnull.close()
def main():
# Parse arguments
parser = OptionParser()
parser.add_option("--tree", action="store_true", default=False, help="show tree view by default")
parser.add_option("--refresh", action="store", type="int", default=1, help="Refresh display every <seconds>")
parser.add_option("--follow", action="store", type="string", default="", help="Follow cgroup path")
parser.add_option("--fold", action="append", help="Fold cgroup sub tree")
parser.add_option("--columns", action="store", type="string", default="owner,type,processes,memory,cpu-sys,cpu-user,blkio,cpu-time", help="List of optional columns to display. Always includes 'name'")
parser.add_option("--sort-col", action="store", type="string", default="cpu-user", help="Select column to sort by initially. Can be changed dynamically.")
options, args = parser.parse_args()
CONFIGURATION['tree'] = options.tree
CONFIGURATION['refresh_interval'] = float(options.refresh)
CONFIGURATION['columns'] = []
CONFIGURATION['fold'] = options.fold or list()
if options.follow:
CONFIGURATION['selected_line_name'] = options.follow
CONFIGURATION['follow'] = True
for col in options.columns.split(','):
col = col.strip()
if col in COLUMNS_MANDATORY:
continue
if not col in COLUMNS_AVAILABLE:
print("Invalid column name", col, file=sys.stderr)
print(__doc__)
sys.exit(1)
CONFIGURATION['columns'].append(col)
rebuild_columns()
if options.sort_col not in COLUMNS_AVAILABLE:
print("Invalid sort column name", options.sort_col, file=sys.stderr)
print(__doc__)
sys.exit(1)
CONFIGURATION['sort_by'] = COLUMNS_AVAILABLE[options.sort_col].col_sort
# Initialization, global system data
measures = {
'data': defaultdict(dict),
'global': {
'total_cpu': multiprocessing.cpu_count(),
'total_memory': get_total_memory(),
'scheduler_frequency': os.sysconf('SC_CLK_TCK'),
}
}
init()
if not CGROUP_MOUNTPOINTS:
print("[ERROR] Failed to locate cgroup mountpoints.", file=sys.stderr)
diagnose()
sys.exit(1)
results = None
try:
# Curse initialization
stdscr = curses.initscr()
curses.start_color() # load colors
curses.use_default_colors()
curses.noecho() # do not echo text
curses.cbreak() # do not wait for "enter"
curses.curs_set(0) # hide cursor
stdscr.keypad(1) # parse keypad controll sequences
curses.mousemask(curses.ALL_MOUSE_EVENTS)
# Curses colors
curses.init_pair(1, curses.COLOR_BLACK, curses.COLOR_GREEN) # header
curses.init_pair(2, curses.COLOR_BLACK, curses.COLOR_CYAN) # focused header / line
curses.init_pair(3, curses.COLOR_WHITE, -1) # regular
curses.init_pair(4, curses.COLOR_CYAN, -1) # tree
# Main loop
while True:
collect(measures)
results = built_statistics(measures, CONFIGURATION)
display(stdscr, results, CONFIGURATION)
sleep_start = time.time()
while CONFIGURATION['pause_refresh'] or time.time() < sleep_start + CONFIGURATION['refresh_interval']:
if CONFIGURATION['pause_refresh']:
to_sleep = -1
else:
to_sleep = int((sleep_start + CONFIGURATION['refresh_interval'] - time.time())*1000)
ret = event_listener(stdscr, to_sleep)
if ret == 2:
display(stdscr, results, CONFIGURATION)
except KeyboardInterrupt:
pass
finally:
curses.nocbreak()
stdscr.keypad(0)
curses.echo()
curses.endwin()
# If we found only root cgroup, me may be expecting to run in a boot2docker instance
if results is not None and len(results) < 2:
print("[WARN] Failed to find any relevant cgroup/container.", file=sys.stderr)
diagnose()
if __name__ == "__main__":
main()
|