Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/console/plugins/dirty_size/__init__.py
blob: 2661db86194a36d615ac0aa35dd5b643acfc626a (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)"]
		}