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

import info


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

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

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