Merge "Add uefi image support for yardstick"
[yardstick.git] / yardstick / network_services / nfvi / collectd.conf
1 # Config file for collectd(1).
2 #
3 # Some plugins need additional configuration and are disabled by default.
4 # Please read collectd.conf(5) for details.
5 #
6 # You should also read /usr/share/doc/collectd-core/README.Debian.plugins
7 # before enabling any more plugins.
8
9 ##############################################################################
10 # Global                                                                     #
11 #----------------------------------------------------------------------------#
12 # Global settings for the daemon.                                            #
13 ##############################################################################
14
15 Hostname "nsb_stats"
16 FQDNLookup true
17
18 Interval 5
19
20 ##############################################################################
21 # LoadPlugin section                                                         #
22 #----------------------------------------------------------------------------#
23 # Specify what features to activate.                                         #
24 ##############################################################################
25
26 LoadPlugin amqp
27 LoadPlugin cpu
28 LoadPlugin intel_rdt
29 LoadPlugin memory
30
31 ##############################################################################
32 # Plugin configuration                                                       #
33 #----------------------------------------------------------------------------#
34 # In this section configuration stubs for each plugin are provided. A desc-  #
35 # ription of those options is available in the collectd.conf(5) manual page. #
36 ##############################################################################
37
38 <Plugin amqp>
39         <Publish "name">
40                 Host "0.0.0.0"
41                 Port "5672"
42                 VHost "/"
43                 User "admin"
44                 Password "admin"
45                 Exchange "amq.fanout"
46                 RoutingKey "collectd"
47                 Persistent false
48                 StoreRates false
49                 ConnectionRetryDelay 0
50         </Publish>
51 </Plugin>
52
53 <Plugin cpu>
54         ReportByCpu true
55         ReportByState true
56         ValuesPercentage false
57 </Plugin>
58
59 <Plugin memory>
60         ValuesAbsolute true
61         ValuesPercentage false
62 </Plugin>
63
64 <LoadPlugin intel_rdt>
65   Interval 5
66 </LoadPlugin>
67 <Plugin "intel_rdt">
68   Cores ""
69 </Plugin>
70
71 <Plugin memcached>
72         <Instance "local">
73                 Host "127.0.0.1"
74                 Port "11211"
75         </Instance>
76 </Plugin>
77
78 <Include "/etc/collectd/collectd.conf.d">
79         Filter "*.conf"
80 </Include>