Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/console/interface/memphis/plugins/memphis_init/__init__.py
blob: f5ada7ea00f56d417eead22e43915ed9772c0caa (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
        }