File: unix_disk.xml

package info (click to toggle)
cacti 0.8.6i-3
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 4,744 kB
  • ctags: 8,967
  • sloc: php: 39,760; sql: 2,306; xml: 678; sh: 487; perl: 133; makefile: 68
file content (47 lines) | stat: -rw-r--r-- 1,363 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<interface>
	<name>Get Unix Mounted Partitions</name>
	<description>Queries a list of mounted partitions on a unix-based host with the 'df' command.</description>
	<script_path>perl |path_cacti|/scripts/query_unix_partitions.pl</script_path>
	<arg_index>index</arg_index>
	<arg_query>query</arg_query>
	<arg_get>get</arg_get>
	<arg_num_indexes>num_indexes</arg_num_indexes>
	<output_delimeter>:</output_delimeter>
	<index_order>dskDevice</index_order>
	<index_order_type>alphabetic</index_order_type>
	<index_title_format>|chosen_order_field|</index_title_format>

	<fields>
		<dskDevice>
			<name>Device Name</name>
			<direction>input</direction>
			<query_name>device</query_name>
		</dskDevice>
		<dskMount>
			<name>Mount Point</name>
			<direction>input</direction>
			<query_name>mount</query_name>
		</dskMount>

		<dskTotal>
			<name>Total Blocks</name>
			<direction>output</direction>
			<query_name>total</query_name>
		</dskTotal>
		<dskUsed>
			<name>Used Blocks</name>
			<direction>output</direction>
			<query_name>used</query_name>
		</dskUsed>
		<dskAvailable>
			<name>Available Blocks</name>
			<direction>output</direction>
			<query_name>available</query_name>
		</dskAvailable>
		<dskPercentUsed>
			<name>Percent Used</name>
			<direction>output</direction>
			<query_name>percent</query_name>
		</dskPercentUsed>
	</fields>
</interface>