Lines Matching +full:monitor +full:- +full:interval +full:- +full:ms
7 This is a drgn script to monitor the blk-iocost cgroup controller.
8 See the comment at the top of block/blk-iocost.c for more details.
28 parser.add_argument('--cgroup', action='append', metavar='REGEX',
30 parser.add_argument('--interval', '-i', metavar='SECONDS', type=float, default=1,
31 help='Monitoring interval in seconds (0 exits immediately '
33 parser.add_argument('--json', action='store_true',
65 return blkcg.css.cgroup.kn.name.string_().decode('utf-8')
127 f'per={self.period_ms}ms ' \
158 self.inflight_pct = (vtime - vdone) * 100 / period_vtime
187 out = f'{path[-28:]:28} ' \
200 interval = args.interval variable
224 if devname == blkg.q.kobj.parent.name.string_().decode('utf-8'):
236 if interval == 0:
270 time.sleep(interval)