Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/console/interface/memphis/plugins/smaps/__init__.py
blob: 5977d4bd94a3c60b5aa26c61cdcf212c343dba1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

import info


INTERNALS = {
            # Basic information
            'PLGNAME': "SMaps",
            'TABNAME': None, # No tabbed plugin
            'AUTHOR': "Eduardo Silva",
            'DESC': "Get dirty size and reference memory usage",

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

            'top_data': [int, int], # Top data types needed by memphis core plugin
            'top_cols': ["PDRSS (kb)", "Referenced (kb)"]
        }