Previosly if the user did not specify any metrics, scyllatop use whatever it could find. Now we have some preset defaults which are probably more interesting. Signed-off-by: Yoav Kleinberger <yoav@scylladb.com> Message-Id: <1458658804-377-1-git-send-email-yoav@scylladb.com>
15 lines
274 B
Python
15 lines
274 B
Python
DEFAULT_METRIC_PATTERNS = [
|
|
'*cache*',
|
|
'*disk*',
|
|
'*transport*',
|
|
'*netlink*',
|
|
'*network*',
|
|
'*storage_proxy*',
|
|
'*la*',
|
|
'*reactor*',
|
|
'*idle*',
|
|
'*interface*',
|
|
'*memory*',
|
|
'*cpu*',
|
|
]
|