]> granicus.if.org Git - sysstat/blob - pcp_stats.h
sadf: PCP: Add support for A_NET_SOCK6 activity
[sysstat] / pcp_stats.h
1 /*
2  * pcp_stats.h: Include file used to display system statistics in PCP format.
3  * (C) 2019 by Sebastien Godard (sysstat <at> orange.fr)
4  */
5
6 #ifndef _PCP_STATS_H
7 #define _PCP_STATS_H
8
9 /*
10  ***************************************************************************
11  * Prototypes for functions used to display system statistics in PCP format
12  ***************************************************************************
13  */
14
15 /* Functions used to display statistics in PCP format */
16 __print_funct_t pcp_print_cpu_stats
17         (struct activity *, int, unsigned long long, struct record_header *);
18 __print_funct_t pcp_print_pcsw_stats
19         (struct activity *, int, unsigned long long, struct record_header *);
20 __print_funct_t pcp_print_irq_stats
21         (struct activity *, int, unsigned long long, struct record_header *);
22 __print_funct_t pcp_print_swap_stats
23         (struct activity *, int, unsigned long long, struct record_header *);
24 __print_funct_t pcp_print_paging_stats
25         (struct activity *, int, unsigned long long, struct record_header *);
26 __print_funct_t pcp_print_io_stats
27         (struct activity *, int, unsigned long long, struct record_header *);
28 __print_funct_t pcp_print_memory_stats
29         (struct activity *, int, unsigned long long, struct record_header *);
30 __print_funct_t pcp_print_ktables_stats
31         (struct activity *, int, unsigned long long, struct record_header *);
32 __print_funct_t pcp_print_queue_stats
33         (struct activity *, int, unsigned long long, struct record_header *);
34 __print_funct_t pcp_print_serial_stats
35         (struct activity *, int, unsigned long long, struct record_header *);
36 __print_funct_t pcp_print_net_dev_stats
37         (struct activity *, int, unsigned long long, struct record_header *);
38 __print_funct_t pcp_print_net_edev_stats
39         (struct activity *, int, unsigned long long, struct record_header *);
40 __print_funct_t pcp_print_net_nfs_stats
41         (struct activity *, int, unsigned long long, struct record_header *);
42 __print_funct_t pcp_print_net_nfsd_stats
43         (struct activity *, int, unsigned long long, struct record_header *);
44 __print_funct_t pcp_print_net_sock_stats
45         (struct activity *, int, unsigned long long, struct record_header *);
46 __print_funct_t pcp_print_net_ip_stats
47         (struct activity *, int, unsigned long long, struct record_header *);
48 __print_funct_t pcp_print_net_eip_stats
49         (struct activity *, int, unsigned long long, struct record_header *);
50 __print_funct_t pcp_print_net_icmp_stats
51         (struct activity *, int, unsigned long long, struct record_header *);
52 __print_funct_t pcp_print_net_eicmp_stats
53         (struct activity *, int, unsigned long long, struct record_header *);
54 __print_funct_t pcp_print_net_tcp_stats
55         (struct activity *, int, unsigned long long, struct record_header *);
56 __print_funct_t pcp_print_net_etcp_stats
57         (struct activity *, int, unsigned long long, struct record_header *);
58 __print_funct_t pcp_print_net_udp_stats
59         (struct activity *, int, unsigned long long, struct record_header *);
60 __print_funct_t pcp_print_net_sock6_stats
61         (struct activity *, int, unsigned long long, struct record_header *);
62 __print_funct_t pcp_print_net_ip6_stats
63         (struct activity *, int, unsigned long long, struct record_header *);
64 __print_funct_t pcp_print_net_eip6_stats
65         (struct activity *, int, unsigned long long, struct record_header *);
66 __print_funct_t pcp_print_net_icmp6_stats
67         (struct activity *, int, unsigned long long, struct record_header *);
68 __print_funct_t pcp_print_net_eicmp6_stats
69         (struct activity *, int, unsigned long long, struct record_header *);
70 __print_funct_t pcp_print_net_udp6_stats
71         (struct activity *, int, unsigned long long, struct record_header *);
72
73 #endif /* _PCP_STATS_H */