Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/console/plugins/memphis_init/__init__.py
blob: c13ce2ea3ac0a6ba17e1a302078167f0745895ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import info

INTERNALS = {
			'PLGNAME': "memphis",
			'TABNAME': None,
			'AUTHOR': "Eduardo Silva",
			'DESC': "Print basic process information",

			# Plugin API
			'Plg': None, # Plugin object

			# 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
		}