summaryrefslogtreecommitdiffstats
path: root/src/plugin_proc.h
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2015-03-16 16:31:42 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2015-03-16 16:31:42 +0200
commit037bbc245f57e45f9e6f56c705957e38586d7218 (patch)
tree6b90908065e2399b0f5b85acf546a6bf35f1533b /src/plugin_proc.h
parent29ecdb6a8fc035eae3fdcc66c491c77af8e3429b (diff)
splitted netdata to multiple source files
Diffstat (limited to 'src/plugin_proc.h')
-rwxr-xr-xsrc/plugin_proc.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/plugin_proc.h b/src/plugin_proc.h
new file mode 100755
index 0000000000..a3cfa9887b
--- /dev/null
+++ b/src/plugin_proc.h
@@ -0,0 +1,16 @@
+#ifndef NETDATA_PLUGIN_PROC_H
+#define NETDATA_PLUGIN_PROC_H 1
+
+void *proc_main(void *ptr);
+
+extern int do_proc_net_dev(int update_every, unsigned long long dt);
+extern int do_proc_diskstats(int update_every, unsigned long long dt);
+extern int do_proc_net_snmp(int update_every, unsigned long long dt);
+extern int do_proc_net_netstat(int update_every, unsigned long long dt);
+extern int do_proc_net_stat_conntrack(int update_every, unsigned long long dt);
+extern int do_proc_net_ip_vs_stats(int update_every, unsigned long long dt);
+extern int do_proc_stat(int update_every, unsigned long long dt);
+extern int do_proc_meminfo(int update_every, unsigned long long dt);
+extern int do_proc_vmstat(int update_every, unsigned long long dt);
+
+#endif /* NETDATA_PLUGIN_PROC_H */