2006-11-16 13:09:07 +01:00
|
|
|
import info
|
|
|
|
|
|
|
|
INTERNALS = {
|
2006-12-04 20:12:24 +01:00
|
|
|
'PLGNAME': "memphis",
|
|
|
|
'TABNAME': None,
|
|
|
|
'AUTHOR': "Eduardo Silva",
|
|
|
|
'DESC': "Print basic process information",
|
2006-11-16 13:09:07 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
# Plugin API
|
|
|
|
'Plg': None, # Plugin object
|
2006-11-16 13:09:07 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
# Top process view requirements
|
|
|
|
'top_data': [int, str, str], # Top data types needed by memphis core plugin
|
|
|
|
'top_cols': ["PID", "Process Name", "Status"] # Column names
|
|
|
|
}
|