Skip to content
Florian Forster edited this page Nov 26, 2023 · 1 revision
Name: Table plugin
Type: read
Callbacks: config, init, read, shutdown
Status: supported
FirstVersion: 4.7
Copyright: 2009 Sebastian Harl
License: MIT License
Manpage: collectd.conf(5)
See also: List of Plugins

The Table plugin parses table-like structured plain text files. This allows to parse many files found under /proc on Linux systems.

Synopsis

 <Plugin "table">
   &lt;Table "/proc/slabinfo"&gt;
     Instance "slabinfo"
     Separator " "
     <Result>
       Type gauge
       InstancePrefix "active_objs"
       InstancesFrom 0
       ValuesFrom 1
     </Result>
     <Result>
       Type gauge
       InstancePrefix "objperslab"
       InstancesFrom 0
       ValuesFrom 4
     </Result>
   &lt;/Table&gt;
 </Plugin>

Example graph

Plugin-table.png

Dependencies

  • none
Clone this wiki locally