this patch fixes the following remarks: ./defaults.py:2:9: E126 continuation line over-indented for hanging indent ./fake.py:15:1: E305 expected 2 blank lines after class or function definition, found 1 ./livedata.py:49:17: F402 import 'metric' from line 5 shadowed by loop variable ./scyllatop.py:44:1: E305 expected 2 blank lines after class or function definition, found 1 Signed-off-by: Alexys Jacob <ultrabug@gentoo.org> Message-Id: <20180119162939.17866-1-ultrabug@gentoo.org>
15 lines
226 B
Python
15 lines
226 B
Python
DEFAULT_METRIC_PATTERNS = [
|
|
'*cache*',
|
|
'*disk*',
|
|
'*transport*',
|
|
'*netlink*',
|
|
'*network*',
|
|
'*storage_proxy*',
|
|
'*la*',
|
|
'*reactor*',
|
|
'*idle*',
|
|
'*interface*',
|
|
'*memory*',
|
|
'*cpu*',
|
|
]
|