docs: add security information
[barometer.git] / docs / release / userguide / feature.userguide.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3 .. (c) <optionally add copywriters name>
4
5 ===================================
6 OPNFV Barometer User Guide
7 ===================================
8
9 Barometer collectd plugins description
10 ---------------------------------------
11 .. Describe the specific features and how it is realised in the scenario in a brief manner
12 .. to ensure the user understand the context for the user guide instructions to follow.
13
14 Collectd is a daemon which collects system performance statistics periodically
15 and provides a variety of mechanisms to publish the collected metrics. It
16 supports more than 90 different input and output plugins. Input plugins
17 retrieve metrics and publish them to the collectd deamon, while output plugins
18 publish the data they receive to an end point. collectd also has infrastructure
19 to support thresholding and notification.
20
21 Barometer has enabled the following collectd plugins:
22
23 * *dpdkstat plugin*: A read plugin that retrieves stats from the DPDK extended
24   NIC stats API.
25
26 * *dpdkevents plugin*:  A read plugin that retrieves DPDK link status and DPDK
27   forwarding cores liveliness status (DPDK Keep Alive).
28
29 * `gnocchi plugin`_: A write plugin that pushes the retrieved stats to
30   Gnocchi. It's capable of pushing any stats read through collectd to
31   Gnocchi, not just the DPDK stats.
32
33 * `aodh plugin`_: A notification plugin that pushes events to Aodh, and
34   creates/updates alarms appropriately.
35
36 * *hugepages plugin*:  A read plugin that retrieves the number of available
37   and free hugepages on a platform as well as what is available in terms of
38   hugepages per socket.
39
40 * *Open vSwitch events Plugin*: A read plugin that retrieves events from OVS.
41
42 * *Open vSwitch stats Plugin*: A read plugin that retrieves flow and interface
43   stats from OVS.
44
45 * *mcelog plugin*: A read plugin that uses mcelog client protocol to check for
46   memory Machine Check Exceptions and sends the stats for reported exceptions.
47
48 * *PMU plugin*: A read plugin that provides performance counters data on
49   Intel CPUs using Linux perf interface.
50
51 * *RDT plugin*: A read plugin that provides the last level cache utilization and
52   memory bandwidth utilization.
53
54 * *virt*: A read plugin that uses virtualization API *libvirt* to gather
55   statistics about virtualized guests on a system directly from the hypervisor,
56   without a need to install collectd instance on the guest.
57
58 * *SNMP Agent*: A write plugin that will act as a AgentX subagent that receives
59   and handles queries from SNMP master agent and returns the data collected
60   by read plugins. The SNMP Agent plugin handles requests only for OIDs
61   specified in configuration file. To handle SNMP queries the plugin gets data
62   from collectd and translates requested values from collectd's internal format
63   to SNMP format. Supports SNMP: get, getnext and walk requests.
64
65 All the plugins above are available on the collectd master, except for the
66 Gnocchi and Aodh plugins as they are Python-based plugins and only C plugins
67 are accepted by the collectd community. The Gnocchi and Aodh plugins live in
68 the OpenStack repositories.
69
70 Other plugins existing as a pull request into collectd master:
71
72 * *Legacy/IPMI*: A read plugin that reports platform thermals, voltages,
73   fanspeed, current, flow, power etc. Also, the plugin monitors Intelligent
74   Platform Management Interface (IPMI) System Event Log (SEL) and sends the
75   appropriate notifications based on monitored SEL events.
76
77 * *PCIe AER*: A read plugin that monitors PCIe standard and advanced errors and
78   sends notifications about those errors.
79
80
81 Third party application in Barometer repository:
82
83 * *Open vSwitch PMD stats*: An aplication that retrieves PMD stats from OVS. It is run
84   through exec plugin.
85
86 **Plugins and application included in the Euphrates release:**
87
88 Write Plugins: aodh plugin, SNMP agent plugin, gnocchi plugin.
89
90 Read Plugins/application: Intel RDT plugin, virt plugin, Open vSwitch stats plugin,
91 Open vSwitch PMD stats application.
92
93 Collectd capabilities and usage
94 ------------------------------------
95 .. Describe the specific capabilities and usage for <XYZ> feature.
96 .. Provide enough information that a user will be able to operate the feature on a deployed scenario.
97
98 .. note:: Plugins included in the OPNFV E release will be built-in for Apex integration
99  and can be configured as shown in the examples below.
100
101  The collectd plugins in OPNFV are configured with reasonable defaults, but can
102  be overridden.
103
104 Building all Barometer upstreamed plugins from scratch
105 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
106 The plugins that have been merged to the collectd master branch can all be
107 built and configured through the barometer repository.
108
109 .. note::
110  * sudo permissions are required to install collectd.
111  * These instructions are for Centos 7.
112
113 To build all the upstream plugins, clone the barometer repo:
114
115 .. code:: c
116
117     $ git clone https://gerrit.opnfv.org/gerrit/barometer
118
119 To install collectd as a service and install all it's dependencies:
120
121 .. code:: bash
122
123     $ cd barometer/systems && ./build_base_machine.sh
124
125 This will install collectd as a service and the base install directory
126 will be /opt/collectd.
127
128 Sample configuration files can be found in '/opt/collectd/etc/collectd.conf.d'
129
130 .. note::
131   If you don't want to use one of the Barometer plugins, simply remove the
132   sample config file from '/opt/collectd/etc/collectd.conf.d'
133 .. note::
134   If you plan on using the Exec plugin (for OVS_PMD_STATS or for executing scripts
135   on notification generation), the plugin requires a non-root user to execute scripts.
136   By default, `collectd_exec` user is used in the exec.conf provided in the sample
137   configurations directory under src/collectd in the Barometer repo. These scripts *DO NOT* create this user.
138   You need to create this user or modify the configuration in the sample configurations directory
139   under src/collectd to use another existing non root user before  running build_base_machine.sh.
140
141 .. note::
142   If you are using any Open vSwitch plugins you need to run:
143
144 .. code:: bash
145
146     $ sudo ovs-vsctl set-manager ptcp:6640
147
148 After this, you should be able to start collectd as a service
149
150 .. code:: bash
151
152     $ sudo systemctl status collectd
153
154 If you want to use granfana to display the metrics you collect, please see:
155 `grafana guide`_
156
157 For more information on configuring and installing OpenStack plugins for
158 collectd, check out the `collectd-ceilometer-plugin GSG`_.
159
160 Below is the per plugin installation and configuration guide, if you only want
161 to install some/particular plugins.
162
163 DPDK plugins
164 ^^^^^^^^^^^^^
165 Repo: https://github.com/collectd/collectd
166
167 Branch: master
168
169 Dependencies: DPDK (http://dpdk.org/)
170
171 .. note:: DPDK statistics plugin requires DPDK version 16.04 or later.
172
173 To build and install DPDK to /usr please see:
174 https://github.com/collectd/collectd/blob/master/docs/BUILD.dpdkstat.md
175
176 Building and installing collectd:
177
178 .. code:: bash
179
180     $ git clone https://github.com/collectd/collectd.git
181     $ cd collectd
182     $ ./build.sh
183     $ ./configure --enable-syslog --enable-logfile --enable-debug
184     $ make
185     $ sudo make install
186
187 .. note:: If DPDK was installed in a non standard location you will need to
188     specify paths to the header files and libraries using *LIBDPDK_CPPFLAGS* and
189     *LIBDPDK_LDFLAGS*. You will also need to add the DPDK library symbols to the
190     shared library path using *ldconfig*. Note that this update to the shared
191     library path is not persistant (i.e. it will not survive a reboot).
192
193 Example of specifying custom paths to DPDK headers and libraries:
194
195 .. code:: bash
196
197     $ ./configure LIBDPDK_CPPFLAGS="path to DPDK header files" LIBDPDK_LDFLAGS="path to DPDK libraries"
198
199 This will install collectd to default folder ``/opt/collectd``. The collectd
200 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
201 To configure the dpdkstats plugin you need to modify the configuration file to
202 include:
203
204 .. code:: bash
205
206     LoadPlugin dpdkstat
207     <Plugin dpdkstat>
208        Coremask "0xf"
209        ProcessType "secondary"
210        FilePrefix "rte"
211        EnabledPortMask 0xffff
212        PortName "interface1"
213        PortName "interface2"
214     </Plugin>
215
216
217 To configure the dpdkevents plugin you need to modify the configuration file to
218 include:
219
220 .. code:: bash
221
222     <LoadPlugin dpdkevents>
223       Interval 1
224     </LoadPlugin>
225
226     <Plugin "dpdkevents">
227       <EAL>
228         Coremask "0x1"
229         MemoryChannels "4"
230         FilePrefix "rte"
231       </EAL>
232       <Event "link_status">
233         SendEventsOnUpdate false
234         EnabledPortMask 0xffff
235         SendNotification true
236       </Event>
237       <Event "keep_alive">
238         SendEventsOnUpdate false
239         LCoreMask "0xf"
240         KeepAliveShmName "/dpdk_keepalive_shm_name"
241         SendNotification true
242       </Event>
243     </Plugin>
244
245 .. note:: Currently, the DPDK library doesn’t support API to de-initialize
246  the DPDK resources allocated on the initialization. It means, the collectd
247  plugin will not be able to release the allocated DPDK resources
248  (locks/memory/pci bindings etc.) correctly on collectd shutdown or reinitialize
249  the DPDK library if primary DPDK process is restarted. The only way to release
250  those resources is to terminate the process itself. For this reason, the plugin
251  forks off a separate collectd process. This child process becomes a secondary
252  DPDK process which can be run on specific CPU cores configured by user through
253  collectd configuration file (“Coremask” EAL configuration option, the
254  hexadecimal bitmask of the cores to run on).
255
256 For more information on the plugin parameters, please see:
257 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
258
259 .. note:: dpdkstat plugin initialization time depends on read interval. It
260  requires 5 read cycles to set up internal buffers and states, during that time
261  no statistics are submitted. Also, if plugin is running and the number of DPDK
262  ports is increased, internal buffers are resized. That requires 3 read cycles
263  and no port statistics are submitted during that time.
264
265 The Address-Space Layout Randomization (ASLR) security feature in Linux should be
266 disabled, in order for the same hugepage memory mappings to be present in all
267 DPDK multi-process applications.
268
269 To disable ASLR:
270
271 .. code:: bash
272
273     $ sudo echo 0 > /proc/sys/kernel/randomize_va_space
274
275 To fully enable ASLR:
276
277 .. code:: bash
278
279     $ sudo echo 2 > /proc/sys/kernel/randomize_va_space
280
281 .. warning:: Disabling Address-Space Layout Randomization (ASLR) may have security
282     implications. It is recommended to be disabled only when absolutely necessary,
283     and only when all implications of this change have been understood.
284
285 For more information on multi-process support, please see:
286 http://dpdk.org/doc/guides/prog_guide/multi_proc_support.html
287
288 **DPDK stats plugin limitations:**
289
290 1. The DPDK primary process application should use the same version of DPDK
291    that collectd DPDK plugin is using;
292
293 2. L2 statistics are only supported;
294
295 3. The plugin has been tested on Intel NIC’s only.
296
297 **DPDK stats known issues:**
298
299 * DPDK port visibility
300
301   When network port controlled by Linux is bound to DPDK driver, the port
302   will not be available in the OS. It affects the SNMP write plugin as those
303   ports will not be present in standard IF-MIB. Thus, additional work is
304   required to be done to support DPDK ports and statistics.
305
306 Hugepages Plugin
307 ^^^^^^^^^^^^^^^^^
308 Repo: https://github.com/collectd/collectd
309
310 Branch: master
311
312 Dependencies: None, but assumes hugepages are configured.
313
314 To configure some hugepages:
315
316 .. code:: bash
317
318    $ sudo mkdir -p /mnt/huge
319    $ sudo mount -t hugetlbfs nodev /mnt/huge
320    $ sudo bash -c "echo 14336 > /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages"
321
322 Building and installing collectd:
323
324 .. code:: bash
325
326     $ git clone https://github.com/collectd/collectd.git
327     $ cd collectd
328     $ ./build.sh
329     $ ./configure --enable-syslog --enable-logfile --enable-hugepages --enable-debug
330     $ make
331     $ sudo make install
332
333 This will install collectd to default folder ``/opt/collectd``. The collectd
334 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
335 To configure the hugepages plugin you need to modify the configuration file to
336 include:
337
338 .. code:: bash
339
340     LoadPlugin hugepages
341     <Plugin hugepages>
342         ReportPerNodeHP  true
343         ReportRootHP     true
344         ValuesPages      true
345         ValuesBytes      false
346         ValuesPercentage false
347     </Plugin>
348
349 For more information on the plugin parameters, please see:
350 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
351
352 Intel PMU Plugin
353 ^^^^^^^^^^^^^^^^
354 Repo: https://github.com/collectd/collectd
355
356 Branch: master
357
358 Dependencies:
359
360   * PMU tools (jevents library) https://github.com/andikleen/pmu-tools
361
362 To be suitable for use in collectd plugin shared library *libjevents* should be
363 compiled as position-independent code. To do this add the following line to
364 *pmu-tools/jevents/Makefile*:
365
366 .. code:: bash
367
368     CFLAGS += -fPIC
369
370 Building and installing *jevents* library:
371
372 .. code:: bash
373
374     $ git clone https://github.com/andikleen/pmu-tools.git
375     $ cd pmu-tools/jevents/
376     $ make
377     $ sudo make install
378
379 Building and installing collectd:
380
381 .. code:: bash
382
383     $ git clone https://github.com/collectd/collectd.git
384     $ cd collectd
385     $ ./build.sh
386     $ ./configure --enable-syslog --enable-logfile --with-libjevents=/usr/local --enable-debug
387     $ make
388     $ sudo make install
389
390 This will install collectd to default folder ``/opt/collectd``. The collectd
391 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
392 To configure the PMU plugin you need to modify the configuration file to
393 include:
394
395 .. code:: bash
396
397     <LoadPlugin intel_pmu>
398       Interval 1
399     </LoadPlugin>
400     <Plugin "intel_pmu">
401       ReportHardwareCacheEvents true
402       ReportKernelPMUEvents true
403       ReportSoftwareEvents true
404     </Plugin>
405
406 For more information on the plugin parameters, please see:
407 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
408
409 .. note::
410
411     The plugin opens file descriptors whose quantity depends on number of
412     monitored CPUs and number of monitored counters. Depending on configuration,
413     it might be required to increase the limit on the number of open file
414     descriptors allowed. This can be done using 'ulimit -n' command. If collectd
415     is executed as a service 'LimitNOFILE=' directive should be defined in
416     [Service] section of *collectd.service* file.
417
418 Intel RDT Plugin
419 ^^^^^^^^^^^^^^^^
420 Repo: https://github.com/collectd/collectd
421
422 Branch: master
423
424 Dependencies:
425
426   * PQoS/Intel RDT library https://github.com/01org/intel-cmt-cat.git
427   * msr kernel module
428
429 Building and installing PQoS/Intel RDT library:
430
431 .. code:: bash
432
433     $ git clone https://github.com/01org/intel-cmt-cat.git
434     $ cd intel-cmt-cat
435     $ make
436     $ make install PREFIX=/usr
437
438 You will need to insert the msr kernel module:
439
440 .. code:: bash
441
442     $ modprobe msr
443
444 Building and installing collectd:
445
446 .. code:: bash
447
448     $ git clone https://github.com/collectd/collectd.git
449     $ cd collectd
450     $ ./build.sh
451     $ ./configure --enable-syslog --enable-logfile --with-libpqos=/usr/ --enable-debug
452     $ make
453     $ sudo make install
454
455 This will install collectd to default folder ``/opt/collectd``. The collectd
456 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
457 To configure the RDT plugin you need to modify the configuration file to
458 include:
459
460 .. code:: bash
461
462     <LoadPlugin intel_rdt>
463       Interval 1
464     </LoadPlugin>
465     <Plugin "intel_rdt">
466       Cores ""
467     </Plugin>
468
469 For more information on the plugin parameters, please see:
470 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
471
472 IPMI Plugin
473 ^^^^^^^^^^^^
474 Repo: https://github.com/collectd/collectd
475
476 Branch: feat_ipmi_events, feat_ipmi_analog
477
478 Dependencies: OpenIPMI library (http://openipmi.sourceforge.net/)
479
480 The IPMI plugin is already implemented in the latest collectd and sensors
481 like temperature, voltage, fanspeed, current are already supported there.
482 The list of supported IPMI sensors has been extended and sensors like flow,
483 power are supported now. Also, a System Event Log (SEL) notification feature
484 has been introduced.
485
486 * The feat_ipmi_events branch includes new SEL feature support in collectd
487   IPMI plugin. If this feature is enabled, the collectd IPMI plugin will
488   dispatch notifications about new events in System Event Log.
489
490 * The feat_ipmi_analog branch includes the support of extended IPMI sensors in
491   collectd IPMI plugin.
492
493 **Install dependencies**
494
495 On Centos, install OpenIPMI library:
496
497 .. code:: bash
498
499     $ sudo yum install OpenIPMI ipmitool
500
501 Anyway, it's recommended to use the latest version of the OpenIPMI library as
502 it includes fixes of known issues which aren't included in standard OpenIPMI
503 library package. The latest version of the library can be found at
504 https://sourceforge.net/p/openipmi/code/ci/master/tree/. Steps to install the
505 library from sources are described below.
506
507 Remove old version of OpenIPMI library:
508
509 .. code:: bash
510
511     $ sudo yum remove OpenIPMI ipmitool
512
513 Build and install OpenIPMI library:
514
515 .. code:: bash
516
517     $ git clone https://git.code.sf.net/p/openipmi/code openipmi-code
518     $ cd openipmi-code
519     $ autoreconf --install
520     $ ./configure --prefix=/usr
521     $ make
522     $ sudo make install
523
524 Add the directory containing ``OpenIPMI*.pc`` files to the ``PKG_CONFIG_PATH``
525 environment variable:
526
527 .. code:: bash
528
529     export PKG_CONFIG_PATH=/usr/lib/pkgconfig
530
531 Enable IPMI support in the kernel:
532
533 .. code:: bash
534
535     $ sudo modprobe ipmi_devintf
536     $ sudo modprobe ipmi_si
537
538 .. note::
539   If HW supports IPMI, the ``/dev/ipmi0`` character device will be
540   created.
541
542 Clone and install the collectd IPMI plugin:
543
544 .. code:: bash
545
546     $ git clone https://github.com/collectd/collectd
547     $ cd collectd
548     $ ./build.sh
549     $ ./configure --enable-syslog --enable-logfile --enable-debug
550     $ make
551     $ sudo make install
552
553 This will install collectd to default folder ``/opt/collectd``. The collectd
554 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
555 To configure the IPMI plugin you need to modify the file to include:
556
557 .. code:: bash
558
559     LoadPlugin ipmi
560     <Plugin ipmi>
561        <Instance "local">
562          SELEnabled true # only feat_ipmi_events branch supports this
563        </Instance>
564     </Plugin>
565
566 .. note::
567   By default, IPMI plugin will read all available analog sensor values,
568   dispatch the values to collectd and send SEL notifications.
569
570 For more information on the IPMI plugin parameters and SEL feature configuration,
571 please see: https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
572
573 Extended analog sensors support doesn't require additional configuration. The usual
574 collectd IPMI documentation can be used:
575
576 - https://collectd.org/wiki/index.php/Plugin:IPMI
577 - https://collectd.org/documentation/manpages/collectd.conf.5.shtml#plugin_ipmi
578
579 IPMI documentation:
580
581 - https://www.kernel.org/doc/Documentation/IPMI.txt
582 - http://www.intel.com/content/www/us/en/servers/ipmi/ipmi-second-gen-interface-spec-v2-rev1-1.html
583
584 Mcelog Plugin
585 ^^^^^^^^^^^^^^
586 Repo: https://github.com/collectd/collectd
587
588 Branch: master
589
590 Dependencies: mcelog
591
592 Start by installing mcelog.
593
594 .. note::
595   The kernel has to have CONFIG_X86_MCE enabled. For 32bit kernels you
596   need atleast a 2.6,30 kernel.
597
598 On Centos:
599
600 .. code:: bash
601
602     $ sudo yum install mcelog
603
604 Or build from source
605
606 .. code:: bash
607
608     $ git clone https://git.kernel.org/pub/scm/utils/cpu/mce/mcelog.git
609     $ cd mcelog
610     $ make
611     ... become root ...
612     $ make install
613     $ cp mcelog.service /etc/systemd/system/
614     $ systemctl enable mcelog.service
615     $ systemctl start mcelog.service
616
617
618 Verify you got a /dev/mcelog. You can verify the daemon is running completely
619 by running:
620
621 .. code:: bash
622
623      $ mcelog --client
624
625 This should query the information in the running daemon. If it prints nothing
626 that is fine (no errors logged yet). More info @
627 http://www.mcelog.org/installation.html
628
629 Modify the mcelog configuration file "/etc/mcelog/mcelog.conf" to include or
630 enable:
631
632 .. code:: bash
633
634     socket-path = /var/run/mcelog-client
635     [dimm]
636     dimm-tracking-enabled = yes
637     dmi-prepopulate = yes
638     uc-error-threshold = 1 / 24h
639     ce-error-threshold = 10 / 24h
640
641     [socket]
642     socket-tracking-enabled = yes
643     mem-uc-error-threshold = 100 / 24h
644     mem-ce-error-threshold = 100 / 24h
645     mem-ce-error-log = yes
646
647     [page]
648     memory-ce-threshold = 10 / 24h
649     memory-ce-log = yes
650     memory-ce-action = soft
651
652     [trigger]
653     children-max = 2
654     directory = /etc/mcelog
655
656
657 Clone and install the collectd mcelog plugin:
658
659 .. code:: bash
660
661     $ git clone https://github.com/collectd/collectd
662     $ cd collectd
663     $ ./build.sh
664     $ ./configure --enable-syslog --enable-logfile --enable-debug
665     $ make
666     $ sudo make install
667
668 This will install collectd to default folder ``/opt/collectd``. The collectd
669 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
670 To configure the mcelog plugin you need to modify the configuration file to
671 include:
672
673 .. code:: bash
674
675     <LoadPlugin mcelog>
676       Interval 1
677     </LoadPlugin>
678     <Plugin mcelog>
679       <Memory>
680         McelogClientSocket "/var/run/mcelog-client"
681         PersistentNotification false
682       </Memory>
683       #McelogLogfile "/var/log/mcelog"
684     </Plugin>
685
686 For more information on the plugin parameters, please see:
687 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
688
689 Simulating a Machine Check Exception can be done in one of 3 ways:
690
691 * Running $make test in the mcelog cloned directory - mcelog test suite
692 * using mce-inject
693 * using mce-test
694
695 **mcelog test suite:**
696
697 It is always a good idea to test an error handling mechanism before it is
698 really needed. mcelog includes a test suite. The test suite relies on
699 mce-inject which needs to be installed and in $PATH.
700
701 You also need the mce-inject kernel module configured (with
702 CONFIG_X86_MCE_INJECT=y), compiled, installed and loaded:
703
704 .. code:: bash
705
706     $ modprobe mce-inject
707
708 Then you can run the mcelog test suite with
709
710 .. code:: bash
711
712     $ make test
713
714 This will inject different classes of errors and check that the mcelog triggers
715 runs. There will be some kernel messages about page offlining attempts. The
716 test will also lose a few pages of memory in your system (not significant).
717
718 .. note::
719   This test will kill any running mcelog, which needs to be restarted
720   manually afterwards.
721
722 **mce-inject:**
723
724 A utility to inject corrected, uncorrected and fatal machine check exceptions
725
726 .. code:: bash
727
728     $ git clone https://git.kernel.org/pub/scm/utils/cpu/mce/mce-inject.git
729     $ cd mce-inject
730     $ make
731     $ modprobe mce-inject
732
733 Modify the test/corrected script to include the following:
734
735 .. code:: bash
736
737     CPU 0 BANK 0
738     STATUS 0xcc00008000010090
739     ADDR 0x0010FFFFFFF
740
741 Inject the error:
742 .. code:: bash
743
744     $ ./mce-inject < test/corrected
745
746 .. note::
747   The uncorrected and fatal scripts under test will cause a platform reset.
748   Only the fatal script generates the memory errors**. In order to  quickly
749   emulate uncorrected memory errors and avoid host reboot following test errors
750   from mce-test suite can be injected:
751
752 .. code:: bash
753
754        $ mce-inject  mce-test/cases/coverage/soft-inj/recoverable_ucr/data/srao_mem_scrub
755
756 **mce-test:**
757
758 In addition a more in-depth test of the Linux kernel machine check facilities
759 can be done with the mce-test test suite. mce-test supports testing uncorrected
760 error handling, real error injection, handling of different soft offlining
761 cases, and other tests.
762
763 **Corrected memory error injection:**
764
765 To inject corrected memory errors:
766
767 * Remove sb_edac and edac_core kernel modules: rmmod sb_edac rmmod edac_core
768 * Insert einj module: modprobe einj param_extension=1
769 * Inject an error by specifying details (last command should be repeated at least two times):
770
771 .. code:: bash
772
773     $ APEI_IF=/sys/kernel/debug/apei/einj
774     $ echo 0x8 > $APEI_IF/error_type
775     $ echo 0x01f5591000 > $APEI_IF/param1
776     $ echo 0xfffffffffffff000 > $APEI_IF/param2
777     $ echo 1 > $APEI_IF/notrigger
778     $ echo 1 > $APEI_IF/error_inject
779
780 * Check the MCE statistic: mcelog --client. Check the mcelog log for injected error details: less /var/log/mcelog.
781
782 Open vSwitch Plugins
783 ^^^^^^^^^^^^^^^^^^^^^
784 OvS Plugins Repo: https://github.com/collectd/collectd
785
786 OvS Plugins Branch: master
787
788 OvS Events MIBs: The SNMP OVS interface link status is provided by standard
789 IF-MIB (http://www.net-snmp.org/docs/mibs/IF-MIB.txt)
790
791 Dependencies: Open vSwitch, Yet Another JSON Library (https://github.com/lloyd/yajl)
792
793 On Centos, install the dependencies and Open vSwitch:
794
795 .. code:: bash
796
797     $ sudo yum install yajl-devel
798
799 Steps to install Open vSwtich can be found at
800 http://docs.openvswitch.org/en/latest/intro/install/fedora/
801
802 Start the Open vSwitch service:
803
804 .. code:: bash
805
806     $ sudo service openvswitch-switch start
807
808 Configure the ovsdb-server manager:
809
810 .. code:: bash
811
812     $ sudo ovs-vsctl set-manager ptcp:6640
813
814 Clone and install the collectd ovs plugin:
815
816 .. code:: bash
817
818     $ git clone $REPO
819     $ cd collectd
820     $ git checkout master
821     $ ./build.sh
822     $ ./configure --enable-syslog --enable-logfile --enable-debug
823     $ make
824     $ sudo make install
825
826 This will install collectd to default folder ``/opt/collectd``. The collectd
827 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
828 To configure the OVS events plugin you need to modify the configuration file to include:
829
830 .. code:: bash
831
832     <LoadPlugin ovs_events>
833        Interval 1
834     </LoadPlugin>
835     <Plugin ovs_events>
836        Port "6640"
837        Address "127.0.0.1"
838        Socket "/var/run/openvswitch/db.sock"
839        Interfaces "br0" "veth0"
840        SendNotification true
841     </Plugin>
842
843 To configure the OVS stats plugin you need to modify the configuration file
844 to include:
845
846 .. code:: bash
847
848     <LoadPlugin ovs_stats>
849        Interval 1
850     </LoadPlugin>
851     <Plugin ovs_stats>
852        Port "6640"
853        Address "127.0.0.1"
854        Socket "/var/run/openvswitch/db.sock"
855        Bridges "br0"
856     </Plugin>
857
858 For more information on the plugin parameters, please see:
859 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
860
861 OVS PMD stats
862 ^^^^^^^^^^^^^^
863 Repo: https://gerrit.opnfv.org/gerrit/barometer
864
865 Prequistes:
866 1. Open vSwitch dependencies are installed.
867 2. Open vSwitch service is running.
868 3. Ovsdb-server manager is configured.
869 You can refer `Open vSwitch Plugins`_ section above for each one of them.
870
871 OVS PMD stats application is run through the exec plugin.
872
873 To configure the OVS PMD stats application you need to modify the exec plugin configuration
874 to include:
875
876 .. code:: bash
877
878     <LoadPlugin exec>
879        Interval 1
880     </LoadPlugin
881     <Plugin exec>
882         Exec "user:group" "<path to ovs_pmd_stat.sh>"
883     </Plugin>
884
885 .. note:: Exec plugin configuration has to be changed to use appropriate user before starting collectd service.
886
887 ovs_pmd_stat.sh calls the script for OVS PMD stats application with its argument:
888
889 .. code:: bash
890
891      sudo python /usr/local/src/ovs_pmd_stats.py" "--socket-pid-file"
892      "/var/run/openvswitch/ovs-vswitchd.pid"
893
894 SNMP Agent Plugin
895 ^^^^^^^^^^^^^^^^^
896 Repo: https://github.com/collectd/collectd
897
898 Branch: master
899
900 Dependencies: NET-SNMP library
901
902 Start by installing net-snmp and dependencies.
903
904 On Centos 7:
905
906 .. code:: bash
907
908     $ sudo yum install net-snmp net-snmp-libs net-snmp-utils net-snmp-devel
909     $ sudo systemctl start snmpd.service
910
911 go to the `snmp configuration`_ steps.
912
913 From source:
914
915 Clone and build net-snmp:
916
917 .. code:: bash
918
919     $ git clone https://github.com/haad/net-snmp.git
920     $ cd net-snmp
921     $ ./configure --with-persistent-directory="/var/net-snmp" --with-systemd --enable-shared --prefix=/usr
922     $ make
923
924 Become root
925
926 .. code:: bash
927
928     $ make install
929
930 Copy default configuration to persistent folder:
931
932 .. code:: bash
933
934     $ cp EXAMPLE.conf /usr/share/snmp/snmpd.conf
935
936 Set library path and default MIB configuration:
937
938 .. code:: bash
939
940     $ cd ~/
941     $ echo export LD_LIBRARY_PATH=/usr/lib >> .bashrc
942     $ net-snmp-config --default-mibdirs
943     $ net-snmp-config --snmpconfpath
944
945 Configure snmpd as a service:
946
947 .. code:: bash
948
949     $ cd net-snmp
950     $ cp ./dist/snmpd.service /etc/systemd/system/
951     $ systemctl enable snmpd.service
952     $ systemctl start snmpd.service
953
954 .. _`snmp configuration`:
955
956 Add the following line to snmpd.conf configuration file
957 ``/etc/snmp/snmpd.conf`` to make all OID tree visible for SNMP clients:
958
959 .. code:: bash
960
961     view    systemview    included   .1
962
963 To verify that SNMP is working you can get IF-MIB table using SNMP client
964 to view the list of Linux interfaces:
965
966 .. code:: bash
967
968     $ snmpwalk -v 2c -c public localhost IF-MIB::interfaces
969
970 Get the default MIB location:
971
972 .. code:: bash
973
974     $ net-snmp-config --default-mibdirs
975     /opt/stack/.snmp/mibs:/usr/share/snmp/mibs
976
977 Install Intel specific MIBs (if needed) into location received by
978 ``net-snmp-config`` command (e.g. ``/usr/share/snmp/mibs``).
979
980 .. code:: bash
981
982     $ git clone https://gerrit.opnfv.org/gerrit/barometer.git
983     $ sudo cp -f barometer/mibs/*.txt /usr/share/snmp/mibs/
984     $ sudo systemctl restart snmpd.service
985
986 Clone and install the collectd snmp_agent plugin:
987
988 .. code:: bash
989
990     $ cd ~
991     $ git clone https://github.com/collectd/collectd
992     $ cd collectd
993     $ ./build.sh
994     $ ./configure --enable-syslog --enable-logfile --enable-debug --enable-snmp --with-libnetsnmp
995     $ make
996     $ sudo make install
997
998 This will install collectd to default folder ``/opt/collectd``. The collectd
999 configuration file (``collectd.conf``) can be found at ``/opt/collectd/etc``.
1000
1001 **SNMP Agent plugin is a generic plugin and cannot work without configuration**.
1002 To configure the snmp_agent plugin you need to modify the configuration file to
1003 include OIDs mapped to collectd types. The following example maps scalar
1004 memAvailReal OID to value represented as free memory type of memory plugin:
1005
1006 .. code:: bash
1007
1008     LoadPlugin snmp_agent
1009     <Plugin "snmp_agent">
1010       <Data "memAvailReal">
1011         Plugin "memory"
1012         Type "memory"
1013         TypeInstance "free"
1014         OIDs "1.3.6.1.4.1.2021.4.6.0"
1015       </Data>
1016     </Plugin>
1017
1018
1019 The ``snmpwalk`` command can be used to validate the collectd configuration:
1020
1021 .. code:: bash
1022
1023     $ snmpwalk -v 2c -c public localhost 1.3.6.1.4.1.2021.4.6.0
1024     UCD-SNMP-MIB::memAvailReal.0 = INTEGER: 135237632 kB
1025
1026
1027 **Limitations**
1028
1029 * Object instance with Counter64 type is not supported in SNMPv1. When GetNext
1030   request is received, Counter64 type objects will be skipped. When Get
1031   request is received for Counter64 type object, the error will be returned.
1032 * Interfaces that are not visible to Linux like DPDK interfaces cannot be
1033   retreived using standard IF-MIB tables.
1034
1035 For more information on the plugin parameters, please see:
1036 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
1037
1038 For more details on AgentX subagent, please see:
1039 http://www.net-snmp.org/tutorial/tutorial-5/toolkit/demon/
1040
1041 .. _virt-plugin:
1042
1043 virt plugin
1044 ^^^^^^^^^^^^
1045 Repo: https://github.com/collectd/collectd
1046
1047 Branch: master
1048
1049 Dependencies: libvirt (https://libvirt.org/), libxml2
1050
1051 On Centos, install the dependencies:
1052
1053 .. code:: bash
1054
1055     $ sudo yum install libxml2-dev libpciaccess-devel yajl-devel device-mapper-devel
1056
1057 Install libvirt:
1058
1059 libvirt version in package manager might be quite old and offer only limited
1060 functionality. Hence, building and installing libvirt from sources is recommended.
1061 Detailed instructions can bet found at:
1062 https://libvirt.org/compiling.html
1063
1064 Certain metrics provided by the plugin have a requirement on a minimal version of
1065 the libvirt API. *File system information* statistics require a *Guest Agent (GA)*
1066 to be installed and configured in a VM. User must make sure that installed GA
1067 version supports retrieving file system information. Number of *Performance monitoring events*
1068 metrics depends on running libvirt daemon version.
1069
1070 .. note:: Please keep in mind that RDT metrics (part of *Performance monitoring
1071     events*) have to be supported by hardware. For more details on hardware support,
1072     please see:
1073     https://github.com/01org/intel-cmt-cat
1074
1075     Additionally perf metrics **cannot** be collected if *Intel RDT* plugin is enabled.
1076
1077 libvirt version can be checked with following commands:
1078
1079 .. code:: bash
1080
1081     $ virsh --version
1082     $ libvirtd --version
1083
1084 .. table:: Extended statistics requirements
1085
1086     +-------------------------------+--------------------------+-------------+
1087     | Statistic                     | Min. libvirt API version | Requires GA |
1088     +===============================+==========================+=============+
1089     | Domain reason                 | 0.9.2                    | No          |
1090     +-------------------------------+--------------------------+-------------+
1091     | Disk errors                   | 0.9.10                   | No          |
1092     +-------------------------------+--------------------------+-------------+
1093     | Job statistics                | 1.2.9                    | No          |
1094     +-------------------------------+--------------------------+-------------+
1095     | File system information       | 1.2.11                   | Yes         |
1096     +-------------------------------+--------------------------+-------------+
1097     | Performance monitoring events | 1.3.3                    | No          |
1098     +-------------------------------+--------------------------+-------------+
1099
1100 Start libvirt daemon:
1101
1102 .. code:: bash
1103
1104     $ systemctl start libvirtd
1105
1106 Create domain (VM) XML configuration file. For more information on domain XML
1107 format and examples, please see:
1108 https://libvirt.org/formatdomain.html
1109
1110 .. note:: Installing additional hypervisor dependencies might be required before
1111     deploying virtual machine.
1112
1113 Create domain, based on created XML file:
1114
1115 .. code:: bash
1116
1117     $ virsh define DOMAIN_CFG_FILE.xml
1118
1119 Start domain:
1120
1121 .. code:: bash
1122
1123     $ virsh start DOMAIN_NAME
1124
1125 Check if domain is running:
1126
1127 .. code:: bash
1128
1129     $ virsh list
1130
1131 Check list of available *Performance monitoring events* and their settings:
1132
1133 .. code:: bash
1134
1135     $ virsh perf DOMAIN_NAME
1136
1137 Enable or disable *Performance monitoring events* for domain:
1138
1139 .. code:: bash
1140
1141     $ virsh perf DOMAIN_NAME [--enable | --disable] EVENT_NAME --live
1142
1143 Clone and install the collectd virt plugin:
1144
1145 .. code:: bash
1146
1147     $ git clone $REPO
1148     $ cd collectd
1149     $ ./build.sh
1150     $ ./configure --enable-syslog --enable-logfile --enable-debug
1151     $ make
1152     $ sudo make install
1153
1154 Where ``$REPO`` is equal to information provided above.
1155
1156 This will install collectd to ``/opt/collectd``. The collectd configuration file
1157 ``collectd.conf`` can be found at ``/opt/collectd/etc``.
1158 To load the virt plugin user needs to modify the configuration file to include:
1159
1160 .. code:: bash
1161
1162     LoadPlugin virt
1163
1164 Additionally, user can specify plugin configuration parameters in this file,
1165 such as connection URL, domain name and much more. By default extended virt plugin
1166 statistics are disabled. They can be enabled with ``ExtraStats`` option.
1167
1168 .. code:: bash
1169
1170     <Plugin virt>
1171        RefreshInterval 60
1172        ExtraStats "cpu_util disk disk_err domain_state fs_info job_stats_background pcpu perf vcpupin"
1173     </Plugin>
1174
1175 For more information on the plugin parameters, please see:
1176 https://github.com/collectd/collectd/blob/master/src/collectd.conf.pod
1177
1178 .. _install-collectd-as-a-service:
1179
1180 Installing collectd as a service
1181 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1182 **NOTE**: In an OPNFV installation, collectd is installed and configured as a
1183 service.
1184
1185 Collectd service scripts are available in the collectd/contrib directory.
1186 To install collectd as a service:
1187
1188 .. code:: bash
1189
1190     $ sudo cp contrib/systemd.collectd.service /etc/systemd/system/
1191     $ cd /etc/systemd/system/
1192     $ sudo mv systemd.collectd.service collectd.service
1193     $ sudo chmod +x collectd.service
1194
1195 Modify collectd.service
1196
1197 .. code:: bash
1198
1199     [Service]
1200     ExecStart=/opt/collectd/sbin/collectd
1201     EnvironmentFile=-/opt/collectd/etc/
1202     EnvironmentFile=-/opt/collectd/etc/
1203     CapabilityBoundingSet=CAP_SETUID CAP_SETGID
1204
1205 Reload
1206
1207 .. code:: bash
1208
1209     $ sudo systemctl daemon-reload
1210     $ sudo systemctl start collectd.service
1211     $ sudo systemctl status collectd.service should show success
1212
1213 Additional useful plugins
1214 ^^^^^^^^^^^^^^^^^^^^^^^^^^
1215
1216 **Exec Plugin** : Can be used to show you when notifications are being
1217 generated by calling a bash script that dumps notifications to file. (handy
1218 for debug). Modify /opt/collectd/etc/collectd.conf:
1219
1220 .. code:: bash
1221
1222    LoadPlugin exec
1223    <Plugin exec>
1224    #   Exec "user:group" "/path/to/exec"
1225       NotificationExec "user" "<path to barometer>/barometer/src/collectd/collectd_sample_configs/write_notification.sh"
1226    </Plugin>
1227
1228 write_notification.sh (just writes the notification passed from exec through
1229 STDIN to a file (/tmp/notifications)):
1230
1231 .. code:: bash
1232
1233    #!/bin/bash
1234    rm -f /tmp/notifications
1235    while read x y
1236    do
1237      echo $x$y >> /tmp/notifications
1238    done
1239
1240 output to /tmp/notifications should look like:
1241
1242 .. code:: bash
1243
1244     Severity:WARNING
1245     Time:1479991318.806
1246     Host:localhost
1247     Plugin:ovs_events
1248     PluginInstance:br-ex
1249     Type:gauge
1250     TypeInstance:link_status
1251     uuid:f2aafeec-fa98-4e76-aec5-18ae9fc74589
1252
1253     linkstate of "br-ex" interface has been changed to "DOWN"
1254
1255 * **logfile plugin**: Can be used to log collectd activity. Modify
1256   /opt/collectd/etc/collectd.conf to include:
1257
1258 .. code:: bash
1259
1260     LoadPlugin logfile
1261     <Plugin logfile>
1262         LogLevel info
1263         File "/var/log/collectd.log"
1264         Timestamp true
1265         PrintSeverity false
1266     </Plugin>
1267
1268
1269 Monitoring Interfaces and Openstack Support
1270 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1271 .. Figure:: monitoring_interfaces.png
1272
1273    Monitoring Interfaces and Openstack Support
1274
1275 The figure above shows the DPDK L2 forwarding application running on a compute
1276 node, sending and receiving traffic. Collectd is also running on this compute
1277 node retrieving the stats periodically from DPDK through the dpdkstat plugin
1278 and publishing the retrieved stats to OpenStack through the
1279 collectd-ceilometer-plugin.
1280
1281 To see this demo in action please checkout: `Barometer OPNFV Summit demo`_
1282
1283 For more information on configuring and installing OpenStack plugins for
1284 collectd, check out the `collectd-ceilometer-plugin GSG`_.
1285
1286 Security
1287 ^^^^^^^^^
1288 * AAA – on top of collectd there secure agents like SNMP V3, Openstack agents
1289   etc. with their own AAA methods.
1290
1291 * Collectd runs as a daemon with root permissions.
1292
1293 * The `Exec plugin`_ allows the execution of external programs but counters the security
1294   concerns by:
1295
1296   * Ensuring that only one instance of the program is executed by collectd at any time
1297   * Forcing the plugin to check that custom programs are never executed with superuser
1298   privileges.
1299
1300 * Protection of Data in flight:
1301
1302   * It's recommend to use a minimum version of 4.7 of the Network plugin which provides
1303     the possibility to cryptographically sign or encrypt the network traffic.
1304   * Write Redis plugin or the Write MongoDB plugin are recommended to store the data.
1305   * For more information, please see: https://collectd.org/wiki/index.php?title=Networking_introduction
1306
1307 * Known vulnerabilities include:
1308
1309   * https://www.cvedetails.com/vulnerability-list/vendor_id-11242/Collectd.html
1310
1311     * `CVE-2017-7401`_ fixed https://github.com/collectd/collectd/issues/2174 in Version 5.7.2.
1312     * `CVE-2016-6254`_ fixed https://mailman.verplant.org/pipermail/collectd/2016-July/006838.html
1313         in Version  5.4.3.
1314     * `CVE-2010-4336`_ fixed https://mailman.verplant.org/pipermail/collectd/2010-November/004277.html
1315         in Version 4.10.2.
1316
1317   * http://www.cvedetails.com/product/20310/Collectd-Collectd.html?vendor_id=11242
1318
1319 * It's recommended to only use collectd plugins from signed packages.
1320
1321 References
1322 ^^^^^^^^^^^
1323 .. [1] https://collectd.org/wiki/index.php/Naming_schema
1324 .. [2] https://github.com/collectd/collectd/blob/master/src/daemon/plugin.h
1325 .. [3] https://collectd.org/wiki/index.php/Value_list_t
1326 .. [4] https://collectd.org/wiki/index.php/Data_set
1327 .. [5] https://collectd.org/documentation/manpages/types.db.5.shtml
1328 .. [6] https://collectd.org/wiki/index.php/Data_source
1329 .. [7] https://collectd.org/wiki/index.php/Meta_Data_Interface
1330
1331 .. _Barometer OPNFV Summit demo: https://prezi.com/kjv6o8ixs6se/software-fastpath-service-quality-metrics-demo/
1332 .. _gnocchi plugin: https://github.com/openstack/collectd-ceilometer-plugin/tree/stable/ocata/
1333 .. _aodh plugin: https://github.com/openstack/collectd-ceilometer-plugin/tree/stable/ocata/
1334 .. _collectd-ceilometer-plugin GSG: https://github.com/openstack/collectd-ceilometer-plugin/blob/master/doc/source/GSG.rst
1335 .. _grafana guide: https://wiki.opnfv.org/display/fastpath/Installing+and+configuring+InfluxDB+and+Grafana+to+display+metrics+with+collectd
1336 .. _CVE-2017-7401: https://www.cvedetails.com/cve/CVE-2017-7401/
1337 .. _CVE-2016-6254: https://www.cvedetails.com/cve/CVE-2016-6254/
1338 .. _CVE-2010-4336: https://www.cvedetails.com/cve/CVE-2010-4336/
1339 .. _Exec plugin: https://collectd.org/wiki/index.php/Plugin:Exec