diff --git a/.cirrus.yml b/.cirrus.yml new file mode 100644 index 0000000000..ab88daf640 --- /dev/null +++ b/.cirrus.yml @@ -0,0 +1,225 @@ +env: + LANG: C + CIRRUS_CLONE_DEPTH: 1 + DEFAULT_CONFIG_OPTS: --enable-debug --without-libstatgrab --disable-dependency-tracking + + +### +# make distcheck and other sanity checks +# +release_ready_task: + container: + image: collectd/ci:stretch_amd64 + lint_script: + - /checks/check-bashisms.sh + - /checks/check-pod.sh + configure_script: + - ./build.sh + - ./configure $DEFAULT_CONFIG_OPTS + checks_script: + - make -j2 -s distcheck DISTCHECK_CONFIGURE_FLAGS="${DEFAULT_CONFIG_OPTS}" + +### +# Default toolchain and build flags used in deb packages, on a range of Debian +# and Ubuntu releases (+ Debian/unstable) +# Most should succeed, and PRs shouldn't break them. +# +debian_default_toolchain_task: + matrix: + - allow_failures: false + container: + image: collectd/ci:jessie_amd64 + - allow_failures: false + container: + image: collectd/ci:stretch_amd64 + - allow_failures: false + container: + image: collectd/ci:stretch_i386 + - allow_failures: false + container: + image: collectd/ci:trusty_amd64 + - allow_failures: false + container: + image: collectd/ci:xenial_amd64 + # debian/unstable is expected to fail + - allow_failures: true + skip_notifications: true + only_if: $CIRRUS_BRANCH == 'master' + container: + image: collectd/ci:sid_amd64 + configure_script: + - ./build.sh + - gcc --version + - > + ./configure CC=gcc $DEFAULT_CONFIG_OPTS + CFLAGS="$(dpkg-buildflags --get CFLAGS)" + CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)" + LDFLAGS="$(dpkg-buildflags --get LDFLAGS)" + build_script: + - make -j2 -sk + tests_script: + - make -j2 -sk check + - /checks/check-built-plugins.sh + +### +# Default toolchain and build flags used in RPM packages, on a range of RedHat +# and Fedora releases (+ Fedora/rawhide) +# Most should succeed, and PRs shouldn't break them. +# +redhat_default_toolchain_task: + matrix: + - allow_failures: false + skip_notifications: false + container: + image: collectd/ci:el6_x86_64 + - allow_failures: true + skip_notifications: true + container: + image: collectd/ci:el7_x86_64 # TODO: fix this platform + - allow_failures: true + skip_notifications: true + container: + image: collectd/ci:fedora28_x86_64 + # fedora/rawhide is expected to fail + - allow_failures: true + skip_notifications: true + only_if: $CIRRUS_BRANCH == 'master' + container: + image: collectd/ci:fedora_rawhide_x86_64 + configure_script: + - ./build.sh + - gcc --version + - ./configure CC=gcc $DEFAULT_CONFIG_OPTS CFLAGS="$(rpm --eval '%optflags')" + build_script: + - make -j2 -sk + tests_script: + - make -j2 -sk check + - /checks/check-built-plugins.sh + + +### +# Misc non-standard build environment & options on most recent released debian +# version. +# Some are expected to fail, others should always pass +non_standard_toolchains_task: + container: + image: collectd/ci:stretch_amd64 + only_if: $CIRRUS_PR == '' + + matrix: + + # build using clang with default build flags, should always pass + - env: + LABEL: clang + allow_failures: true # TODO: fix this platform + skip_notifications: true + configure_script: + - ./build.sh + - clang --version + - > + ./configure CC=clang CXX=clang++ + $DEFAULT_CONFIG_OPTS + CFLAGS="$(dpkg-buildflags --get CFLAGS)" + CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)" + LDFLAGS="$(dpkg-buildflags --get LDFLAGS)" + build_script: + - make -j2 -sk + tests_script: + - make -j2 -sk check + + # build against libstatgrab, should always pass + - env: + LABEL: statgrab + allow_failures: false + skip_notifications: false + configure_script: + - ./build.sh + - gcc --version + - > + ./configure --with-libstatgrab --enable-debug + CFLAGS="$(dpkg-buildflags --get CFLAGS)" + CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)" + LDFLAGS="$(dpkg-buildflags --get LDFLAGS)" + build_script: + - make -j2 -sk + tests_script: + - > + for i in cpu disk interface load memory swap users; do + if ! $(ldd ".libs/${i}.so" 2>/dev/null | grep -q 'libstatgrab.so'); then + echo "plugin $i NOT linked against libstatgrab" + exit 1 + fi + done + + # build using clang with a collection of strict build flags, will most + # probably always fail + - env: + LABEL: clang strict + allow_failures: true + skip_notifications: true + configure_script: + - ./build.sh + - clang --version + - > + ./configure CC=clang CXX=clang++ + $DEFAULT_CONFIG_OPTS + CFLAGS='-Wall + -Wno-error + -Wextra + -Wformat=2 + -Wformat-security + -Wformat-nonliteral + -Wmissing-include-dirs + -Wold-style-definition + -Wpointer-arith + -Winit-self + -Wmissing-prototypes + -Wimplicit-function-declaration + -Wmissing-declarations + -Wstrict-prototypes + -Wmissing-noreturn + -Wshadow + -Wendif-labels + -Wwrite-strings + -Wno-unused-parameter + -Wno-missing-field-initializers + -Wdate-time + -Wnested-externs + -Wno-typedef-redefinition + -Wno-gnu-variable-sized-type-not-at-end' + build_script: + - make -j2 -sk + tests_script: + - make -j2 -sk check + +### +# Build using a range of compilers, available in debian/unstable. NB: might +# fail because of changes to the distro, not the compiler used. +# +bleeding_edge_compilers_task: + container: + image: collectd/ci:sid_amd64 + only_if: $CIRRUS_BRANCH == 'master' + allow_failures: true + skip_notifications: true + env: + matrix: + CC: gcc-7 + CC: gcc-8 + CC: clang-6.0 + CC: clang-7 + CC: clang-8 + CC: clang-9 + configure_script: + - ./build.sh + - $CC --version + - > + ./configure CC=$CC + $DEFAULT_CONFIG_OPTS + CFLAGS="$(dpkg-buildflags --get CFLAGS)" + CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)" + LDFLAGS="$(dpkg-buildflags --get LDFLAGS)" + build_script: + - make -j2 -sk + tests_script: + - make -j2 -sk check diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000000..70f50ad590 --- /dev/null +++ b/.clang-format @@ -0,0 +1,5 @@ +--- +BasedOnStyle: LLVM +IncludeCategories: + - Regex: '"collectd.h"' + - Priority: -1 diff --git a/.github/issue_template.md b/.github/issue_template.md new file mode 100644 index 0000000000..05d2987537 --- /dev/null +++ b/.github/issue_template.md @@ -0,0 +1,17 @@ +* Version of collectd: +* Operating system / distribution: +* Kernel version (if applicable): + +## Expected behavior + +(Description of the behavior / output that you expected) + +## Actual behavior + +(Description of the behavior / output that you observed) + +## Steps to reproduce + +* step 1 +* step 2 +* step 3 diff --git a/.gitignore b/.gitignore index 1929b286c7..afdbe5cd03 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ Makefile.in /aclocal.m4 /autom4te.cache /autom4te.cache +/build-aux/ /compile /config.guess /config.sub @@ -12,15 +13,21 @@ Makefile.in /install-sh /libltdl/ /ltmain.sh +/m4/libtool.m4 +/m4/ltargz.m4 +/m4/ltdl.m4 +/m4/lt~obsolete.m4 +/m4/ltoptions.m4 +/m4/ltsugar.m4 +/m4/ltversion.m4 /missing -src/config.h.in +/src/config.h.in # configure stuff: Makefile config.log config.status libtool -src/.deps src/collectd.conf src/config.h src/libcollectdclient/libcollectdclient.pc @@ -30,17 +37,17 @@ src/stamp-h1 *.la *.lo *.o +.dirstamp .libs/ -src/collectd -src/collectd-nagios -src/collectd-tg -src/collectdctl -src/collectdmon +.deps/ +/collectd-nagios +/collectd-tg +/collectdctl +/collectdmon src/*.1 src/*.5 src/.pod2man.tmp.* src/libcollectdclient/collectd/lcc_features.h -src/utils_vl_lookup_test # patch stuff *.rej @@ -53,32 +60,48 @@ src/liboconfig/parser.h src/liboconfig/scanner.c # protobuf stuff: -src/*.pb-c.[ch] +*.pb-c.[ch] +*.grpc.pb.cc +*.pb.cc +*.pb.h # make dist stuff: /collectd-*.tar.gz /collectd-*.tar.bz2 # perl stuff: -bindings/.perl-directory-stamp +/.perl-directory-stamp bindings/perl/Collectd/pm_to_blib bindings/perl/blib/ bindings/perl/pm_to_blib -bindings/buildperl +/buildperl # java stuff -bindings/java/java-build-stamp -bindings/java/org/collectd/api/*.class -bindings/java/org/collectd/java/*.class +*.jar +/org/collectd/api/*.class +/org/collectd/java/*.class +/bindings/java/java-build-stamp +/classnoinst.stamp # python stuff *.pyc -# tag stuff -src/tags - # backup stuff *~ -# tests stuff -src/tests/.deps/ -src/tests/mock/.deps/ + +# lint stuff +*.ln + +#ide stuff +.vscode + +# cscope stuff +cscope.* + +# Unit tests +test-suite.log +src/tests/ +test_* + +# src/daemon/... +/collectd diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000..009ae439e1 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "gnulib"] + path = gnulib + url = git://git.savannah.gnu.org/gnulib.git diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..ca25dee957 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,146 @@ +# Travis CI configuration file +# https://travis-ci.org/collectd/collectd +language: c + +env: + global: + - MAKEFLAGS="-j 2" + # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created + # via the "travis encrypt" command using the project repo's public key + - secure: "ZdWWp0XX3C4sLIp4lqeQTWC7vt+GsWjmyRiD17T9833NBAW4dddz310I6iyeXe6oX09ZFFiVIN4ogx9ANcNBx9jriGXI2/82nBhpxOJBebet8JCNS5VeTr4rDSfQOKP+Oc+ko5KbbghTuAtO2CFYiH3jZUcn4TdsYbVanf+TwUs=" + +matrix: + include: + - os: osx + osx_image: xcode11.2 + compiler: clang + jdk: openjdk10 + env: + - CXX=clang++ + - PATH="/usr/local/opt/mysql-client/bin:$PATH" + - JAVA_HOME="/Library/Java/JavaVirtualMachines/openjdk-13.jdk/Contents/Home" + - os: linux + dist: bionic + compiler: clang + jdk: openjdk10 + - os: linux + dist: bionic + compiler: gcc + jdk: openjdk10 + +before_install: + # When building the coverity_scan branch, allow only the first job to continue to avoid travis-ci/travis-ci#1975. + - if [[ "${TRAVIS_BRANCH}" == "coverity_scan" && ! "${TRAVIS_JOB_NUMBER}" =~ \.1$ ]]; then exit 0; fi + +before_script: autoreconf -vif + +script: + - if [[ "${TRAVIS_BRANCH}" == "coverity_scan" ]]; then exit 0; fi + - type pkg-config + - pkg-config --list-all | sort -u + - ./configure + - cat config.log + - make distcheck DISTCHECK_CONFIGURE_FLAGS="--disable-dependency-tracking --enable-debug" + +addons: + apt: + packages: + - autotools-dev + - iptables-dev + - libatasmart-dev + - libcap-dev + - libcurl4-gnutls-dev + - libdbi0-dev + - libesmtp-dev + - libganglia1-dev + - libgcrypt11-dev + - libglib2.0-dev + - libgps-dev + - libhiredis-dev + - libi2c-dev + - libldap2-dev + - libltdl-dev + - liblua50-dev + - liblua5.1-0-dev + - liblua5.2-dev + - libmemcached-dev + - libmicrohttpd-dev + - libmnl-dev + - libmodbus-dev + - libmosquitto-dev + - libmysqlclient-dev + - libnotify-dev + - libopenipmi-dev + - liboping-dev + - libow-dev + - libpcap-dev + - libperl-dev + - libpq-dev + - libprotobuf-c0-dev + - librabbitmq-dev + - librdkafka-dev + - libriemann-client-dev + - librrd-dev + - libsensors4-dev + - libsigrok-dev + - libsnmp-dev + - libtokyocabinet-dev + - libtokyotyrant-dev + - libudev-dev + - libupsclient-dev + - libvarnish-dev + - libvirt-dev + - libxen-dev + - libxml2-dev + - libyajl-dev + - linux-libc-dev + - perl + - protobuf-c-compiler + - python3-dev + - python-dev + - xfslibs-dev + coverity_scan: + project: + name: "collectd/collectd" + description: "Build submitted via Travis CI" + notification_email: collectd-changes@verplant.org + build_command_prepend: "./configure; make clean" + build_command: "make -j $(nproc)" + branch_pattern: coverity_scan + homebrew: + packages: + - curl + - glib + - hiredis + - libdbi + - libmemcached + - libmicrohttpd + - libmodbus + - libnotify + - liboping + - libpcap + - librdkafka + - libvirt + - libxml2 + - lua + - mongo-c-driver + - mosquitto + - mysql-client + - net-snmp + - openldap + - perl + - protobuf + - protobuf-c + - python + - qpid-proton + - rabbitmq-c + - riemann-client + - rrdtool + - tokyo-cabinet + - varnish + - yajl + +git: + quiet: true + submodules: false + depth: 1 diff --git a/AUTHORS b/AUTHORS index 680ad071f7..c1fa48d6e9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,9 +4,34 @@ Permanent project members Florian "octo" Forster - Initial author. +Marc Fournier + - Various fixes to the varnish plugin. + - RPM specfile maintenance. + - libmnl support in the netlink plugin. + - linux support in the zfs_arc plugin. + - openldap plugin. + - continuous integration system. + +Matthias Runge + - general house keeping. + +Pierre-Yves Ritschard + - Write-Riemann plugin. + - Write-Graphite plugin: Notification support. + - Write-Kafka plugin. + - Log-Logstash plugin. + - Normalization in the CPU plugin. + - Relative values in the Load plugin. + +Ruben Kerkhof + - Bugfixes and enhancements in many places all around the project. + - Fedora and EPEL packages. + Sebastian "tokkee" Harl - Bugfixes and enhancements in many places all around the project. + - grpc plugin. - perl plugin. + - postgresql plugin. - users plugin. - vserver plugin. - Debian package. @@ -15,6 +40,10 @@ Sebastian "tokkee" Harl Contributors (sorted alphabetically) ==================================== +Adrian Boczkowski + - Logparser plugin. + - Redfish plugin. + Akkarit Sangpetch - write_mongodb plugin. @@ -34,6 +63,24 @@ Amit Gupta Andreas Henriksson - libmnl support in the netlink plugin. +Andrew Bays + - connectivity plugin. + - procevent plugin. + - sysevent plugin. + - connectivity plugin. + +Andy Parkins + - battery plugin: sysfs code. + +Aneesh Puttur + - connectivity plugin. + +Andy Smith + - AMQP 1.0 plugin. + +Aneesh Puttur + - connectivity plugin. + Anthony Dewhurst - zfs_arc plugin. @@ -43,11 +90,14 @@ Anthony Gialluca Antony Dovgal - memcached plugin. +Asaf Kahlon + - buddyinfo plugin + Aurélien Reynaud - LPAR plugin. - Various fixes for AIX, HP-UX and Solaris. -Benjamin Gilbert +Benjamin Gilbert - Improvements to the LVM plugin. Bert Vermeulen @@ -62,9 +112,15 @@ Bruno Prémont especially a nasty bug in the network plugin. - Wireshark dissector. +Carlos Peon Costa + - Write_Influxdb_UDP plugin + Chad Malfait - LVM plugin. +Chris Brown + - Zookeeper plugin, add quorum stat. + Chris Lundquist - Improvements to the write_mongodb plugin. @@ -72,15 +128,33 @@ Christophe Kalt - The version 3 `log' mode. - Many Solaris related hints and fixes. +Claudius Zingerli + - chrony plugin. + Cyril Feraudet - ethstat plugin. +Dagobert Michelsen + - zone plugin. + - Many Solaris related hints and fixes. + - Capabilities plugin. + - NFS plugin for BSD + Dan Berrange - uuid plugin. +Dan Ryder + - ceph plugin. + David Bacher - serial plugin. +Denis Pompilio + - Improvements to the write_http plugin. + +Dheeraj Gupta + - Tail_CSV plugin, field separator option + Doug MacEachern - The `-T' option (config testing mode). - OpenVPN plugin. @@ -88,6 +162,9 @@ Doug MacEachern - A few other patches to various plugins. - curl_json plugin. +Edgar Fuß + - NFS plugin implementation on NetBSD + Edward “Koko” Konetzko - fscache plugin. @@ -100,27 +177,59 @@ Fabian Linzberger Fabien Wernli - Solaris improvements in the memory and interfaces plugin. +Fabrice A. Marie + - write_sensu plugin. + Flavio Stanchina - mbmon plugin. Franck Lombardi - UNIX socket code for the memcached plugin. +Gergely Nagy + - Write-Riemann plugin. + +Hari TG + - dcpmm plugin. + Jason Pepas - nfs plugin. J. Javier Maestro - Write-Graphite plugin: UDP support and LogSendErrors flag. +Jeremy Katz + - percentage reporting in memory and swap plugins. + - zookeeper plugin. + Jérôme Renard - varnish plugin. +Jiri Tyr + - fhcount plugin. + +Julien Ammous + - Lua plugin. + +Kamil Wiatrowski + - Capabilities plugin. + - Logparser plugin. + Kevin Bowling - write_tsdb plugin for http://opentsdb.net/ +Kimo Rosenbaum + - openldap plugin. + Kris Nielander - tail_csv plugin. +Krzysztof Kepka + - Redfish plugin. + +Krzysztof Matczak + - Logparser plugin. + Luboš Staněk - sensors plugin improvements. - Time and effort to find a nasty bug in the ntpd-plugin. @@ -132,6 +241,9 @@ Luke Herberling Lyonel Vincent - processes plugin. +Man Singh + - Redfish plugin. + Manuel Sanmartin - AIX port of the following plugins: + cpu @@ -143,24 +255,34 @@ Manuel Sanmartin + swap - Various AIX-related fixes and hacks. -Marc Fournier - - Various fixes to the varnish plugin. - - RPM specfile update. - - libmnl support in the netlink plugin. - - linux support in the zfs_arc plugin. +Marcin Mozejko + - Logparser plugin. + - Redfish plugin. Marco Chiappero - uptime plugin. - ip6tables support in the iptables plugin. - openvpn plugin (support for more status file formats) +Märt Bakhof + - TLS support for AMQP plugin + +Mathijs Möhlmann + - zone plugin. + Michael Hanselmann - md plugin. +Michael Schenck + - IO time support to disk plugin. + Michael Stapelberg - OpenBSD port of the tcpconns plugin. - cgroups plugin. +Michal Kobylinski + - Redfish plugin. + Michał Mirosław - thermal plugin. - Streamlines recursive directory traversion. @@ -168,6 +290,9 @@ Michał Mirosław Mirko Buffoni - Port/Socket selection in the MySQL plugin. +Nicolas Jourden + - gps plugin. + Niki W. Waibel - Initial autotools fixes. - libltdl code. @@ -182,6 +307,10 @@ Oleg King Ondrej Zajicek - madwifi plugin. +Pablo Llopis + - Slurm plugin + - RestoreAffinityPolicy in turbostat plugin + Patrik Weiskircher - Contextswitch plugin. - Forkrate counter in the processes plugin. @@ -192,6 +321,10 @@ Paul Sadauskas - `ReportByDevice' option of the df plugin. - write_http plugin. +Pavel Rochnyack + - xencpu plugin. + - Bugfixes and enhancements in many places all around the project. + Peter Holik - cpufreq plugin. - multimeter plugin. @@ -199,22 +332,23 @@ Peter Holik - Some bugfixes in the exec plugin. - Notifications in the ipmi plugin. +Pierre Lebleu + - UBI plugin. + Phoenix Kayo - pinba plugin. -Pierre-Yves Ritschard - - Write-Riemann plugin. - - Write-Graphite plugin: Notification support. - - Write-Kafka plugin. - - Log-Logstash plugin. - - Normalization in the CPU plugin. - - Relative values in the Load plugin. - Piotr Hosowicz - SMF manifest for collectd. +Radoslaw Jablonski + - Logparser plugin. + +Reshma Pattan + - DPDK Telemetry plugin. + Richard W. M. Jones - - libvirt plugin. + - virt plugin. - uuid plugin. Roman Klesel @@ -230,7 +364,15 @@ Scott Sanders - Write-Graphite plugin. Sebastien Pahl - - AMQP plugin. + - AMQP 0.9 plugin. + +Serhiy Pshyk + - intel_pmu plugin + - intel_rdt plugin + - snmp_agent plugin + +Shirly Radco + - write_syslog plugin. Simon Kuhnle - OpenBSD code for the cpu and memory plugins. @@ -241,12 +383,18 @@ Sjoerd van der Berg Stefan Hacker - teamspeak2 plugin. +Steven Bell + - nut plugin. + Sven Trenkel - netapp plugin. - python plugin. +Takuro Ashie + - Network plugin fixes. + Tim Laszlo - - drbd plugin + - drbd plugin. Thomas Meson - Graphite support for the AMQP plugin. @@ -257,6 +405,12 @@ Tomasz Pala Tommie Gannert - PID-file patch. +Vincent Bernat + - smart plugin. + +Vincent Brillault + - turbostat plugin, based on Len Brown kernel tool + Vincent Stehlé - hddtemp plugin. @@ -266,6 +420,9 @@ Wilfried Goesgens Xin Li - FreeBSD port of the ZFS-ARC plugin. +Zoltan Szabo + - Redfish plugin. + collectd is available at: diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000000..f60ab20ba5 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,46 @@ +# Code ownership information. +# See +# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners +# for details. + +# Order is important; the *last* matching pattern takes precedence. + +# Default +# +# These owners will be the default owners for everything in the repo. Unless a +# later match takes precedence, @collectd/trusted-contributors will be +# requested for review when someone opens a pull request. +* @collectd/trusted-contributors + +# Per-plugin owners +# +# These plugins are owned by subject matter experts and require their review. +/src/intel_pmu.c @collectd/intel +/src/intel_rdt.c @collectd/intel +/src/ipmi.c @collectd/intel +/src/mcelog.c @collectd/intel +/src/virt.c @collectd/intel +# TODO(#2926): Add the following owners: +#/src/redfish.c @collectd/intel + +# Core +# +# The daemon and some plugins with a huge "blast radius" are considered "core" +# to the collectd project and require review form a "core owner". +/CODEOWNERS @collectd/core-maintainers +/src/daemon/ @collectd/core-maintainers +/src/liboconfig/ @collectd/core-maintainers +/src/cpu.c @collectd/core-maintainers +/src/df.c @collectd/core-maintainers +/src/disk.c @collectd/core-maintainers +/src/exec.c @collectd/core-maintainers +/src/interface.c @collectd/core-maintainers +/src/memory.c @collectd/core-maintainers +/src/network.* @collectd/core-maintainers +/src/utils/avltree/ @collectd/core-maintainers +/src/utils/common/ @collectd/core-maintainers +/src/utils_fbhash.* @collectd/core-maintainers +/src/utils/heap/ @collectd/core-maintainers +/src/utils/ignorelist/ @collectd/core-maintainers +/src/utils/metadata/ @collectd/core-maintainers +/src/utils/mount/ @collectd/core-maintainers diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..aca1ed8a4e --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,139 @@ +# Code of Conduct + +Contributor Covenant 2.0 + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement. Currently +responsible are: + +* Florian Forster <octo at collectd.org> +* Kinga Grabarczyk <kinga.grabarczyk at intel.com> +* Nikolay Tsvetkov <n.tsvetkov at cern.ch> +* Sunku Ranganath <sunku.ranganath at intel.com> + +You can reach this group by sending an email to: +<conduct at collectd.org>. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations. + diff --git a/COPYING b/COPYING index d511905c16..191af71e05 100644 --- a/COPYING +++ b/COPYING @@ -1,3 +1,35 @@ +collectd consists of a daemon and numerous plugins. The daemon is licensed +under the "MIT License"; its source files are located at src/daemon/. The +plugins are licenses individually, please check the top of the plugin's source +file(s) to see which license applies. The majority of plugins is licensed +either under the "MIT License" or the "GNU General Public License". + +The "MIT License" and "GNU General Public License" follow. Other licenses, not +included in this file, should be considered "as published by the Open Source +Initiative (OSI)". + +MIT License +=========== +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +GNU General Public License (GPL) +================================ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/ChangeLog b/ChangeLog index 8112afac7b..ff4283467d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,1868 @@ +2020-03-15, Version 5.11.0 + * collectd: A Code of Conduct has been added. Thanks to Florian Forster. + #3401 + * text protocol: Support for meta_data in PUTVAL has been added. Thanks + to Rafael Marinheiro, Dagobert Michelsen. #3381, #2726 + * utils_cache: Internal API has changed - exposed meta_data_toc + function. Thanks to Javier Kohen. #3339 + * filter_chain: Auto load matches and targets if AutoLoadPlugin option + is set. Thanks to Manuel Luis Sanmartín Rozada. #1034 + * AMQP plugin: TLS support has been added. Thanks to Märt Bakhoff. + #3391 + * Battery plugin: Read from Linux sysfs charge files has been added. + Thanks to Nimrod Maclomhair. #3190 + * Buddyinfo plugin: New plugin for memory fragmentation info has been + added. Thanks to Asaf Kahlon. #3303 + * capabilities plugin: New plugin to read static platform data has been + added. Thanks to Kamil Wiatrowski, Dagobert Michelsen. #3384, #3292 + * DCPMM plugin: New plugin for Intel Optane DC Presistent Memory (DCPMM) + has been added. Thanks to Hari TG. #3274 + * DF plugin: LogOnce option has been added. Thanks to themylogin. #2910 + * DPDK Telemetry plugin: New plugin to fetch DPDK metrics (with intent + to replace dpdk_stat) has been added. Thanks to Reshma Pattan. #3273 + * Disk plugin: A native (sysctl-based) implementation for NetBSD has + been added. Thanks to Edgar Fuß, Dagobert Michelsen. #3379, #3334 + * GPU_Nvidia‏‎ plugin: Configurable plugin instance by GPU name + and/or GPU index has been added. Thanks to Robert Dietrich. #3264 + * Intel_PMU plugin: Support for uncore multi pmu has been added. Thanks + to Kamil Wiatrowski. #3388 + * Ipstats plugin: New plugin to count incoming, outgoing, forwarded + packets on FreeBSD has been added. Thanks to Marco van Tol. #3187 + * Java plugin: Support boolean input has been added. Thanks to Caden. + #3044 + * Logparser plugin: New plugin for filtering and parsing log messages + has been added. Thanks to Kamil Wiatrowski, Krzysztof Matczak, Marcin + Możejko, Adrian Boczkowski, Radosław Jabłonski. #3045 + * Network plugin: New metadata "network:ip_address" has been added. + Thanks to Takuro Ashie. #3191 + * NFS plugin: An implementation for NetBSD (using sysctl) has been + added. Thanks to Edgar Fuß, Dagobert Michelsen. #3377, #3333 + * NUT plugin: Support for the "output.realpower" value from the ups code + has been added. Thanks to Michael Poetters. #2528 + * Redfish plugin: New read plugin to collect out-of-band sensor data + from Redfish endpoints has been added. Thanks to Marcin Możejko, + Adrian Boczkowski, Michal Kobyliński, Krzysztof Kepka, Man Singh, + Zoltan Szabo. #2926 + * Slurm plugin: The new SLURM plugin gathers metrics from the SLURM + workload manager has been added. Thanks to Pablo Llopis. #3037 + * Tail_CSV plugin: FieldSeparator option has been added. Thanks to + Dheeraj Gupta. #3394 + * UBI plugin: The new "ubifs" plugin reports block state for flash + memory devices with UBIFS filesystem has been added. Thanks to Pierre + Lebleu. #3204 + * Write_HTTP plugin: Ability to configure cURL statistics has been + added. Thanks to Nelson. #3265 + * Write_Influxdb_UDP plugin: New plugin to send values to InfluxDB using + line protocol via udp has been added. Thanks to Carlos Peón Costa. + #3162 + * Zookeeper plugin: 'quorum' stat has been added. Thanks to Chris Brown. + #2991 + * collectd: Missing package in specfile has been fixed. Thanks to Fabien + Wernli. #3399 + * collectd: Factored out read_text_file_contents for reading text files + and used it to fix a potential unterminated string in the thermal + plugin. Thanks to Igor Peshansky. #3359 + * collectd: Error/warning messages has been extended with more + information. Thanks to Dagobert Michelsen. #3386 + * collectd: Regression caused by #3217 has been fixed. Thanks to Pavel + Rochnyak. #3349 + * build: version-gen.sh has been cleaned up. Thanks to William Pursell. + #2635 + * build: Linking with Python 3.8 has been fixed. Thanks to Alexander + Meshcheryakov. #3344 + * build: Avoid $< (implied source) in non-inference rules / Building + grpc with non-GNU make has been fixed. Thanks to Edgar Fuß, Dagobert + Michelsen. #3376, #3330 + * filter_chain: Constant for max plugin name length introduced in #1034 + has been fixed. Thanks to Dagobert Michelsen. #3385 + * ignorelist: Coding style has been fixed. Thanks to Dagobert Michelsen. + #3397 + * match_regex: Accept all data types of meta data. Thanks to Takuro + Ashie. #3231 + * perl unixsock: Made the module robust against socket errors and + disconnects. Thanks to Guillem Jover. #3083 + * tree-wide: Race condition when setting thread names has been fixed. + Thanks to Michael Kaufmann. #2762 + * types.db: ping_droprate range spec has been fixed. Thanks to Yousong + Zhou. #3244 + * utils/format_graphite: Comma sign has been added to the list of + prohibited characters. Thanks to Marat Salimzianov. #2998 + * Aggregation plugin: Unreachable clause where both tmp_plugin and + tmp_plugin_instance are non-empty has been fixed. Thanks to Ling + Huang. #3350 + * AMQP1 plugin: Leaks on error paths has been fixed. Thanks to Ryan + McCabe. #3352 + * Apache plugin: BusyWorkers/IdleWorkers update has been fixed. Thanks + to Christian W. Zuckschwerdt. #3131 + * CPU plugin, Memory plugin, Swap plugin, UUID plugin: Contain use of + sysctl / sysctrlbyname to BSD variants, as deprecated on Linux. Thanks + to Zebity Spring. #3342 + * Exec plugin: Select has been replaced with poll to allow more then + 1024 open file descriptors. Thanks to Kamil Wiatrowski. #3363 + * GPU_Nvidia plugin: Build issues has been fixed. Thanks to Ruben + Kerkhof. #3393 + * Interface plugin: Reorder so that Linux-specific code is actually + executed. Thanks to Dagobert Michelsen. #3378 + * NFS plugin: Condition on existence of libkstat has been fixed. Thanks + to Dagobert Michelsen. #3382 + * Network plugin: Memory leak has been fixed. Thanks to Ryan McCabe. + #3352 + * Processes plugin: Number of running processes has been fixed. Thanks + to Bart De Vos. #3243 + * Write_Riemann plugin: Memory leak has been fixed. Thanks to Fabien + Wernli. #3351 + * Write_Stackdriver plugin: NaN value handing with gauge metrics has + been fixed. Thanks to Jaroslaw Przybylowicz. #3226 + + +2019-10-17, Version 5.10.0 + * turbostat plugin: Power metrics update for recent server CPUs. Thanks + to Chris MacNamara. #3276 + * turbostat plugin: Fix warnings generated by the turbostat plugin. + Thanks to Ryan Mccabe. #3340 + * ZFS ARC plugin: New cache values are now read on Linux. Thanks to + Jan-Philipp Litza. #3247, #2843 + * connectivity plugin: monitor the network interface up/down status via + the netlink library. Thanks to Andrew Bays. #2622 + * sysevent plugin: A new plugin that monitors rsyslog for system events. + Thanks to Andrew Bays. #2624 + * procevent plugin: A new plugin that monitors process starts/stops via + netlink library. Thanks to Andrew Bays. #2623 + * daemon: Check if plugin actually loaded before reporting configuration + issues. Thanks to Pavel Rochnyak. #3217 + * daemon: Recover setlocale() call in src/daemon/collectd.c do_init(). + Thanks to Pavel Rochnyak. #3181, #3214 + * Build System: Only include when needed. Thanks to Ruben + Kerkhof. #3298 + * Build System: Link to libnsl.so if needed for inet_ntop(). Thanks to + Dagobert Michelsen. #3291 + * Build System: Remove double "without" added by commit b781871. Thanks + to Fabrice Fontaine. #3261 + * Build System: fix compile time issues. Thanks to Matthias Runge. + #3179, #3242, #3245 + * Build System: Fix activation of snmp_agent. Thanks to Fabrice + Fontaine. #3241 + * Build System: Fix bug that leads to CPPFLAGS gets overridden with + CFLAGS when libxmms is enabled. Thanks to Dagobert Michelsen. #3207 + * perl module: Collectd::Plugins::Openvz: Fix indentation of some + closing curlies. Thanks to Christian Bartolomäus. #3239 + * tree-wide: Fix a few issues found with LGTM. Thanks to Ruben Kerkhof. + #3252 + * tree-wide: fix ssnprintf wrapper. Thanks to Fabien Wernli. + #3237, #3232, #3235, #3236 + * tree-wide: Fix make check. Thanks to Ruben Kerkhof. #3306 + * CI System: Travis: switch to Bionic. Thanks to Ruben Kerkhof. #3307 + * CI System: Travis improvements for MacOS. Thanks to Ruben Kerkhof. + #3308 + * MySQL plugin: Minor documentation improvements. Thanks to Christian + Bartolomäus. #3288 + * Java plugin: Fix typo in an error message. Thanks to Matthias Runge. + #3285, #3286 + * sysevent plugin: Add a few missing calloc result checks in the + sysevent_init function. Thanks to Andrew Bays. #3282 + * ZFS ARC plugin: A bug that caused the first to values to be skipped + was fixed. Thanks to Jan-Philipp Litza. #3246 + * SysLog plugin: restore previous behaviour: fallback to info for + unsupported level. Thanks to Fabien Wernli. #3236, #3238 + * virt plugin: Fix memory leak with libvirt MetadataXPath enabled. + Thanks to Pavel Rochnyak. #3225, #3228 + * GPU NVidia plugin: Fix build of the plugin. Thanks to Ruben Kerkhof. + #3320 + +2019-10-01, Version 5.9.2 + * syslog plugin: Don't fail if syslog loglevel doesn't match. Thanks to + Fabien Wernli. #3236 #3238 + * collectd: Fix ssnprintf wrapper. Thanks to Fabien Wernli. #3237 + * rdt plugin: Fix compile time issues. Thanks to Matthias Runge. #3245 + +2019-07-24, Version 5.9.1 + * collectd: redhat spec: fix build due to new upstream plugins. Thanks + to Fabien Wernli. #3175 + * collectd: regex match: Fix unexpected match with empty meta data . + Thanks to Takuro Ashie. #3178 + * collectd: Fix return value or loglevel for several plugins. Thanks to + Fabien Wernli. #3182 + * collectd: Add standard include early or _FILE_OFFSET_BITS will have + definition … . Thanks to Dagobert Michelsen. #3193 + * collectd: Use GCC-specific flags only when compiling with GCC. Thanks + to Dagobert Michelsen. #3195 + * Use test_utils_proc_pids only when compiling the plugin that uses it. + Thanks to Dagobert Michelsen. #3197 + * DNS plugin: Do not use headers from glibc. Thanks to Pavel Rochnyak. + #3156, #3145 + * collectd: Add missing definitions for libnetsnmpagent. Thanks to + Dagobert Michelsen. #3203 + * collectd: Move Makefile rules for pid_test inside conditional for + code. Thanks to Dagobert Michelsen. #3206 + * collectd: Recover setlocale() call in src/daemon/collectd.c do_init(). + Thanks to Pavel Rochnyak. #3214, #3181 + * collectd: Add snprintf wrapper for GCC 8.2/3. Thanks to zebity. #3153, + #2895, #3038 + * collectd: Fix bug that leads to CPPFLAGS gets overridden with CFLAGS + when libxmms is enabled. Thanks to Dagobert Michelsen. #3207 + * Write_Riemann plugin: Copy MetaData to Riemann events in + write_riemann. Thanks to Romain Tartière. #3158 + * virt plugin: Fix memory leak with libvirt MetadataXPath enabled. + Thanks to Pavel Rochnyak. #3225, #3230 + +2019-06-13, Version 5.9.0 + * Build System: configure.ac: option "--with-libxml2" has been added. + Thanks to Dimitrios Apostolou, Pavel Rochnyak. #2864 + * Build System: configure.ac: run dpdk build tests only if pkgconfig + fails. Thanks to Luca Boccassi, Pavel Rochnyak. #3015 + * Build System: The "df" plugin is now built when "getmntent_r()" is + available. Thanks to Florian Forster. #3095 + * Build System: The ability to turn on collectd "debug" feature in RPMs + has been added. Thanks to dehotot. #2755 + * collectd: A new "UNKNOWN" state as the initial state of metrics has + been added. Thanks to Luis Fernández Álvarez, Florian Forster. #2976 + * collectd: Base port to Windows. Thanks to Sean Campbell. #2810 + * collectd: Code ownership of five plugins has been handed out to folks + from Intel. Thanks to Florian Forster. #3053 + * collectd: config parser: Improved error reporting on global options. + Thanks to Pavel Rochnyak. #2813 + * collectd: daemon: make plugin_dispatch_multivalue() obey write queue + limits. Thanks to Adam Romanek. #2898 + * collectd: Macros "STRERROR" and "STRERRNO" have been added. Thanks to + Florian Forster. #2519 + * collectd: Plugin name field has been added to plugin context to + improve error reporting. Thanks to Pavel Rochnyak. #2821 + * collectd-tg: Use "CLOCK_REALTIME" for collectd-tg times. Thanks to + Andrew Bays. #2837 + * tree-wide: Don't initialize static pointers to NULL, use "bool" from + "stdbool.h" (instead of "_Bool"). Thanks to Ruben Kerkhof. #2771, + #2772 + * tree-wide: Replace zu with "PRIsz" and llu with "PRIu64". Thanks to + Sean Campbell. #2512 + * tree-wide: Use interval value from plugin context, do not set + "vl->interval" in plugins more. Thanks to Pavel Rochnyak. #2847 + * tree-wide: Utilities and libraries have been moved to "src/utils/". + Thanks to Florian Forster. #2961 + * AMPQ1 plugin: A new plugin to write to amqp1 protocol. Thanks to Andy + Smith. #2618 + * Chrony plugin: Ignoring late responses has been added. Thanks to + Miroslav Lichvar, Pavel Rochnyak. #2896 + * CPUFreq plugin: Read number of p-state transitions and time spent in + each p-state. Thanks to Sexton Rory. #2803 + * cURL, cURL-XML plugins: Option "Interval" has been added. Thanks to + Pavel Rochnyak. #2847 + * Disk plugin: Report number of in progress disk IO requests on FreeBSD. + Thanks to Nathan Huff. #2878 + * Exec plugin: Dynamic allocation of grname buffer has been added. + Thanks to sreedi, Florian Forster. #2937 + * GPU NVML plugin: New plugin to collect NVIDIA GPU stats. Thanks to + Evgeny Naumov. #2923 + * gRPC plugin: The "VerifyPeer" option for servers has been added. + Thanks to Florian Forster. #2593 + * Intel RDT plugin: Support for groups of PIDs has been added. Thanks to + Wojciech Andralojc, Mateusz Starzyk, Michal Aleksinski. #2891 + * IPMI plugin: Config options "SELSensor" and "SELIgnoreSelected" have + been added. Thanks to Mariusz Szafranski. #2796 + * Modbus plugin: Support for 64 bit vals has been added, support for + CDAB endian 32-bit modbus polls has been added. Thanks to Anthony + Vickers, PJ Bostley. #2670, #2660 + * Modbus plugin: The "Scale" and "Shift" metrics have been added. Thanks + to cekstam. #2729 + * Netlink plugin: Handle new counter from Linux kernel version 4.6+. + Thanks to Pavel Rochnyak. #2767 + * Network plugin: Option "BindAddress" has been added. Thanks to Ofir + Hermesh. #2831 + * Ping plugin: An "AddressFamily" configuration option has been added. + Thanks to 依云 lilydjwg. #2961 + * OVS Stats plugin: Extended metrics "ovs-dpdk" have been added. Thanks + to Matteo Croce, Ryan McCabe. #3000 + * OVS Stats plugin: Support of bond interface and a "InterfaceStats" + config option have been added. Thanks to Andrew Bays. #2880 + * PCIe Errors plugin: New plugin to read "PCIe" errors. Thanks to Kamil + Wiatrowski. #2733 + * Processes plugin: Support for Linux Delay Accounting has been added. + Thanks to Florian Forster. #2598 + * Redis plugin: Keyspace "hitratio" metric has been added, metric + "operations_per_second" has been removed, an option for connecting via + UNIX socket has been added. Thanks to Pavel Rochnyak. #2838, #2845, + #2904 + * RouterOS plugin: Support for temperature and voltage data has been + added, use MAC-address when Radio-name is missing. Thanks to Pavel + Rochnyak. #2851, #2854 + * RRDCacheD plugin: Time resolution has been improved to microseconds. + Thanks to Brian T. O'Neill. #3065 + * Sensors plugin: Checks for upper limit of "SENSORS_API_VERSION" have + been removed, support for libsensors older than 3.0.0 has been + dropped. Thanks to Pavel Rochnyak. #3013, #3014 + * SNMP plugin: New options "PluginInstance", "TypeInstance", + "TypeInstanceOID", "PluginInstanceOID", "FilterOID", "FilterValues" + and "FilterIgnoreSelected" have been added. Thanks to Pavel Rochnyak. + #2817, #2819 + * SNMP Agent plugin: Multiple key indexes to snmp table and other new + features have been added, refactoring, coverity scan issues have been + fixed. Thanks to Marcin Mozejko. #2702, #2844 + * Swap plugin: Support for Linux 2.4 has been dropped. Thanks to Pavel + Rochnyak. #2979 + * Turbostat plugin: Configuration option "RestoreAffinityPolicy" has + been added. Thanks to Pablo Llopis. #2627 + * Turbostat plugin: New metrics "P-states", "Turboboost", "Platform + TDP", "Uncore bus ratio" have been added. Thanks to Sexton Rory. #2806 + * Turbostat plugin: Support of reporting GPU power on SKL has been + added. Thanks to Gordon Kelly. #2605 + * virt plugin: Allow read "Hostname" from libvirt metadata. Thanks to + Mehdi ABAAKOUK. #2807 + * virt plugin: Block info statistics for disk devices have been added. + Thanks to Radoslaw Jablonski. #2874 + * Wireless plugin: A "bitrate" metric has been added. Thanks to Florian + Forster. #2950 + * Write Graphite, Write Kafka plugins: Support for Graphite 1.1+ tag has + been added. Thanks to Dan Cech. #2631 + * Write Prometheus plugin: Option "Host" has been added. Thanks to Pavel + Rochnyak. #2969 + * Write Stackdriver plugin: New plugin to write to Google Stackdriver + Monitoring. Thanks to Florian Forster. #2472 + * Write Syslog plugin: "write_syslog" plugin writes values lists as + syslog messages. Thanks to Shirly Radco. #3019 + * Build System: A warning that pkgdatadir and pkglibdir were previously + defined has been fixed, additional plugins have been enabled, + GNULIB_DIR has been added to LDFLAGS in configure.ac on Windows. + Thanks to Sean Campbell. #2907, #2885, #2882 + * Build System: Including "utils/mount/mount.h" has been fixed. Thanks + to Florian Forster. #3097 + * Build System: The amount of output from ./configure has been reduced, + rendering of collectd-lua(5) manpage has been fixed, don't hide errors + when creating manpage. Thanks to Ruben Kerkhof. #3086, #3088, #3092 + * collectd: A bug in "c_avl_iterator_prev" has been fixed. Thanks to + volth. #2917 + * collectd: A stringop compiler warning has been fixed. Thanks to Ruben + Kerkhof, Juan Osorio Robles. #3021 + * collectd: An invalid memory access in the "strjoin()" function has + been fixed. Thanks to Florian Forster. #3063 + * collectd: collectd binary has been refactored. Thanks to Sean + Campbell, Sebastian Harl. #2745 + * collectd: collectdmon cannot exit command line options parse loop has + been fixed. Thanks to takahashi-tsc. #2774 + * collectd: Endianness checks for AIX have been added, gcc issue on Mac + byteorder has been fixed, fallback for endianness conversion has been + added. Thanks to Dagobert Michelsen. #2761, #2741, #2717 + * collectd: Handle failure of simple config callbacks. Thanks to Ruben + Kerkhof. #3085 + * collectd: Include "kstat.h" if available to provide "kstat_ctl_t", + include "kstat.h" when available. Thanks to Dagobert Michelsen. #2716, + #2711 + * collectd: Parsing option for avoiding making BaseDir has been fixed. + Thanks to Mariusz Białończyk. #2856 + * collectd: Remove empty "cmd_listval_t" data structure and related + no-op code. Thanks to Pavel Rochnyak. #2779 + * collectd: src/daemon/plugin.c: Refactor plugin_load_file(), + src/utils_format_json.c: Remove chatty debug messages. Thanks to + Florian Forster. #2558, #2938 + * collectd: Stop poisoning function in debug mode. Thanks to Ruben + Kerkhof. #2804 + * collectd: The number of allocations when parsing types.db has been + reduced. Thanks to Ruben Kerkhof. #3091 + * collectd: The organization of the source repository has been improved. + Thanks to Florian Forster. #2961 + * collectd: Typos have been fixed. Thanks to Florian Forster, Jakub + Jankowski, William Pursell. #2944, #2692, #2643 + * tree-wide: cleanup: cf_util_get* instead of local copy in plugins, + prefixed error reporting. Thanks to Pavel Rochnyak. #2833 + * tree-wide: Some style issues have been fixed. Thanks to Ruben Kerkhof. + #3022 + * tree-wide: "sstrerror()" has been replaced with "STRERRNO". Thanks to + Pavel Rochnyak. #2735 + * AMQP1 plugin: Potential memory leaks found via scan-build have been + fixed, a typo in error log message has been fixed, cleanups. Thanks to + Andy Smith, Andrew Bays, Ruben Kerkhof. #2802, #2876, #2797 + * Barometer plugin: Support to "libi2c-4.0" has been added. Thanks to + Pavel Rochnyak. #2783 + * DBI, Oracle, PostgreSQL plugins: Fixes and improvements. Thanks to + Pavel Rochnyak. #1705 + * Disk plugin: "HAVE_UDEV_H" has been changed to "HAVE_LIBUDEV_H". + Thanks to Dylan Stephano-Shachter. #2668 + * Disk plugin: In linux, reset the disk when it disappears from + "/proc/diskstats". Thanks to Nikita Kozlov, Pavel Rochnyak. #2551 + * DPDK Events, DPDK Stats plugins: Buffer size for parsing lcores has + been increased, a deprecation warning has been fixed, runtime config + file path has been fixed. Thanks to Kevin Laatz. #2722, #2840, #2924 + * DPDK Stats plugin: A compilation issue has been fixed. Thanks to + Volodymyr Mytnyk. #2524 + * GPS plugin: Build with gpsd version 3.18 has been fixed. Thanks to + Baruch Siach. #2947 + * Intel RDT plugin: Compiler warnings have been fixed. Thanks to Ruben + Kerkhof. #3104 + * Log Logstash plugin: Non-portable struct initialization with "{}" has + been fixed. Thanks to Florian Forster. #2988 + * LUA plugin: A memory leak has been fixed. Thanks to Ruben Kerkhof. + #3090 + * MySQL plugin: Properly cleanup dropped MySQL connections. Thanks to + Dhrupad Bhardwaj. #2704 + * Netlink plugin: Truncation warnings have been fixed. Thanks to Ruben + Kerkhof. #2777 + * NFS plugin: Message "Unexpected number of fields for NFSv4 server + statistics: 62" has been fixed. Thanks to Yedidyah Bar David. #2076 + * NFS plugin: Number of fields for "NFSv4" has been fixed. Thanks to + Jan-Philipp Litza. #2915 + * Notify Email plugin: All notification parameters have been included + into email. Thanks to Pavel Rochnyak. #2834 + * NTPd plugin: Don't treat normal peers as refclocks, skip "0.0.0.0" + hosts in ntpd plugin. Thanks to Pavel Rochnyak, Ivan Kurnosov. #2822, + #2376 + * OAuth plugin: src/utils_oauth.c: Renew OAuth tokens 30 seconds before + they expire. Thanks to Florian Forster. #2970 + * OVS Stats plugin: A macro to populate counters list has been added, + value of "OpenFlow" has been corrected. Thanks to Matteo Croce. #2966, + #2963 + * OVS Stats plugin: Code style, cleanup and improvements. Thanks to + Pavel Rochnyak. #3011, #3012 + * OVS Stats, OVS Events plugins: utils_ovs: Avoid potential access of + freed memory, fixes. Thanks to Ciara Loftus, Mark Kavanagh. #2801, + #2731 + * Processes plugin: Compilation has been fixed when ps_delay() is not + used. Thanks to Pavel Rochnyak. #2610 + * Python plugin: A compilation warning with Python 3.7 has been fixed. + Thanks to Manoj Srivastava. #3042 + * Redis plugin: Bugfixes, extended error reporting, persistent + connections and parallel polling, ability to select db for queries has + been fixed. Thanks to Pavel Rochnyak, skob. #2826, #2789 + * Router OS plugin: Unset radio-name showing up as "(null)" has been + fixed. Thanks to melak. #2740 + * RRDCacheD plugin: Cleanup rrdcached plugin a bit. Thanks to Pavel + Rochnyak. #3080 + * RRDTool plugin: Error reporting has been extended. Thanks to Pavel + Rochnyak. #2825 + * Sensors plugin: Support for humidity sensors has been added. Thanks to + Sarah Fischmann. #2913 + * Sensu, OVS Stat, Turbostat, virt, OAuth, Write Prometheus, Intel RDT + plugins: Compiler warnings have been fixed. Thanks to Ruben Kerkhof. + #3093, #3098, #3099, #3100, #3102, #3103, #3104 + * virt plugin: Code "do {} while(0)" around macro has been removed. + Thanks to Florian Forster. #2579 + * virt plugin: Compiler warnings, a segfault in libvirt, typo in error + messages have been fixed. Thanks to Antoine Naud, Ruben Kerkhof, sarah + niuxu18. #2808, #2919, #2957 + * virt plugin: Optional "virDomainGetCPUStats()" has been removed from + main flow, cleanup. Thanks to Pavel Rochnyak. #2972, #2978 + * virt plugin: Tracking of VM state changes has been fixed. Thanks to + Radoslaw Jablonski. #2701 + * Write MongoDB plugin: Plugin dependencies have been fixed. Thanks to + Pavel Rochnyak. #3010 + * Write Prometheus plugin: A compilation issue on Mac OS X has been + fixed. Thanks to Florian Forster. #3059 + * Write Redis plugin: Bug ""max_set_duration" deletes unexpected data" + has been fixed. Thanks to takahashi-tsc. #2773 + * Write Stackdriver plugin: Potential NULL dereference and error + reporting have been fixed. Thanks to Florian Forster. #2960 + * collectd.conf(5): a typo has been fixed, the tail plugin's + documentation has been improved. Thanks to Ruben Kerkhof, Florian + Forster. #3087, #2994 + * collectd.conf.pod: virt: "Instances" option has been documented, a + clarifying example has been added. Thanks to Pavel Rochnyak, Fabien + Wernli. #2990, #2903 + * collectd-python: "Import" configuration option has been documented. + Thanks to Tyler Harper. #2985 + * collectd-snmp.pod: Document thread usage correctly. Thanks to Nathan + Ward. #3078 + * CONTRIBUTING.md: Improve wording around ChangeLog; fix example, + document the new change log requirement / behavior. Thanks to Florian + Forster. #3061, #3054 + * docs/review_comments.md: document with frequent review comments has + been started. Thanks to Florian Forster. #2964 + * README: Include compiler defenses suggestion, do not point users to + non-existing file. Thanks to Kevin Laatz, Ruben Kerkhof. #2721, #2045 + +2018-10-23, Version 5.8.1 + * collectd: Fix "BaseDir" option. Thanks to Mariusz Białończyk and + Pavel Rochnyak. #2857 + * collectd: improve error handling, check return values. Thanks to + Florian Forster. + * Build System: use "kstat.h", when available. Thanks to Dagobert + Michelsen and Pavel Rochnyak. #2784 + * Build System: Fix distcheck on MacOS. Thanks to Ruben Kerkhof. + * Build System: add missing include of ""collectd.h"" to fix builds on + Solaris. Thanks to Pavel Rochnyak. + * Build System: add endianess checks for AIX, fix GCC issue on Mac + byteorder, fix byteorder on Solaris, add fallback for endianess + conversion. Thanks to Dagobert Michelsen (multiple cherry picks from + master). + * Build System: Out-of-tree builds have been fixed. Thanks to Florian + Forster. #2602 + * Configuration: Error handling in the config parsing code has been + improved. Thanks to Florian Forster. + * Documentation: Fix typo in collectd.conf(5). Thanks to Pavel Rochnyak. + #2760 + * Documentation: update note on dpdkstat. Thanks to Maryam Tahhan. #2613 + * Various plugins: Errors found by the static code analysis tool + Coverity were fixed. Thanks to Florian Forster. #2559, #2560, #2561, + #2562, #2563, #2565, #2568, #2575, #2579, #2580, #2588, #2589 + * Ceph plugin: A segfault has been fixed. Thanks to Aleksei Zakharov and + Matthias Runge. #2572 + * DF plugin: fix memory leak in error case. Thanks to Takahashi tsc. + * Exec plugin: check return value of "plugin_thread_create()". Thanks to + Florian Forster. + * Exec plugin: Handling of large groups has been fixed. Thanks to + Sridhar Mallem. #2696 + * Exec plugin: Incorrect use of *putenv(3)* has been fixed. Thanks to + Daniel Vrátil. + * Exec plugin: A deadlock related to setting environment variables after + *fork()* has been fixed. Thanks to Daniel Vrátil. + * Intel PMU plugin: add core groups feature. Thanks to Kamil Wiatrowski. + #2681 + * Intel PMU plugin: fix compatibility issue with collectd 5.8. Thanks to + Kamil Wiatrowski. + * Intel PMU plugin: fix possible "NULL" pointer dereference. Thanks to + Kamil Wiatrowski. #2676 + * IPMI plugin: A segfault caused by a wrong data type has been fixed. + Thanks to Mariusz Szafrański. #2742 + * IPMI plugin: The sensor configuration option has been fixed. Thanks to + Pavel Rochnyak. #2629 + * memcached plugin: A deadlock situation has been fixed. Thanks to Pavel + Rochnyak. #2612 + * NFS plugin: Support for NFSv4 has been fixed. Thanks to Jan-Philipp + Litza. #2076 + * NTPd plugin: A memory leak in the error handling path has been fixed. + Thanks to Ruben Kerkhof. #2942 + * OVS Stats plugin: A deadlock situation has been fixed. Thanks to + Volodymyr Mytnyk. #2590 + * OVS Stats plugin: Fix reconnect after thread terminated. Thanks to + Volodymyr Mytnyk and Maram Tahhan. #2574 + * Perl plugin: A compilation failure has been fixed. Thanks to Pavel + Rochnyak. #2732 + * Perl plugin: Fix exporting notification meta data. Thanks to Florian + Forster. + * RRDtool plugin: Handling of very large "GAUGE" metrics has been fixed. + Thanks to Miroslav Lichvar. #2566 + * Tail plugin: Several regressions have been fixed. Thanks to Pavel + Rochnyak. #2535, #2587, #2611 + * turbostat plugin: A potential segfault due to an incorrect *free()* + has been fixed. Thanks to Ruben Kerkhof. #2948 + * UUID plugin: Fix hostname setting. Thanks to Pavel Rochnyak. #2723 + * virt plugin: A segfault during error handling has been fixed. Thanks + to Ruben Kerkhof. {{Issue|2919]} + * Write Kafka plugin: A build failure due to a deprecated API call has + been fixed. Thanks to Pavel Rochnyak. #2607, #2628, #2640 + * Write Prometheus plugin: Fix "MHD_USE_INTERNAL_POLLING_THREAD" flag in + newer libmicrohttpd. Thanks to Pavel Rochnyak. #2849 + * Write Prometheus plugin: set "SO_REUSEADDRESS" on listening socket. + Thanks to Pavel Rochnyak. #2570, #2673 + * Write Syslog plugin: The new "write_syslog" plugin writes value + lists as syslog messages. Thanks to Shirly Radco. #3019 + +2017-11-17, Version 5.8.0 + * collectd: The core daemon is now completely licensed under the MIT + license. + * collectd: Added daemon option to avoid making BaseDir. Thanks to + Nathaniel Wesley Filardo and Florian Forster. #2422 + * collectd: Global variables have been moved to their own module to make + porting collectd easier. Thanks to Sean Campbell. #2467 + * collectd as well as Apache, memcached, OpenLDAP, Perl, RouterOS, SNMP, + Tail-CSV plugins: Free userdata for "plugin_register_complex_read()". + Thanks to Pavel Rochnyack. #2349 + * Collectd client library: Added parsing and server code. Thanks to + Florian Forster. #2258 + * Build system: Dependency on libltdl has been removed, support for + libtool 1 has been dropped. Thanks to Ruben Kerkhof. #1898 + * Build system: The build system has been switched to non-recursive + make. Thanks to Ruben Kerkhof. #2085 + * APC UPS plugin: The plugin's configuration is now optional. Without a + "" block reasonable defaults will be used. Thanks to Pavel + Rochnyack. #2351 + * Chrony plugin: Several issues found when working with a stratum-1 + server have been fixed. Thanks to Miroslav Lichvar. #2190 + * Ceph plugin: Support for the Ceph version "Luminous" has been added. + Thanks to Aleksei Zakharov. #2464 + * CPU plugin : Linux-specific "guest" states have been added. Thanks to + Xavier G. #2439 + * cURL plugin, cURL-JSON, cURL-XML, DBI, FileCount, memcachec, Oracle, + PostgreSQL, Table, Tail, Tail CSV plugins: The ability to configure + the "plugin" field of generated metrics has been added. Thanks to + Pavel Rochnyack. #1944, #1681, #1558 + * cURL-JSON plugin: Parsing of arrays has been fixed. Thanks to Florian + Forster. #2281 + * DPDKEvents plugin: This new plugin reports link status and keep alive + events. Thanks to Maryam Tahhan, Harry van Haaren, Serhiy Pshyk, + Kim-Marie Jones, Krzysztof Matczak, Przemyslaw Szczerbik, Christian + Ehrhardt and Luca Boccassi. #2157, #2348, #2400, #2405, #2417 + * DPDKStat plugin: The plugin has been refactored to make DPDK related + utility functions reusable. Thanks to Krzysztof Matczak, Przemyslaw + Szczerbik, Christian Ehrhardt and Luca Boccassi. #2130, #2348, #2400, + #2405, #2417 + * DPDKStat plugin: The "LogLevel" and "RteDriverLibPath" config options + have been added. Thanks to Jiri Prokes. #2505 + * Email plugin as well as Exec and Unixsock plugins: Use + "_SC_GETPW_R_SIZE_MAX". Thanks to Florian Forster. #2451 + * FileCount plugin: Custom values for reported plugin, type and type + instance. Thanks to Pavel Rochnyack. #1979 + * GenericJMX plugin: Support for "AtomicInteger" and "AtomicLong" has + been added. Thanks to Pierre Mauduit. #2158 + * gRPC plugin: Support for meta data has been added. Thanks to Taylor + Cramer. #2378 + * IPC plugin: Fixed failed compilation on AIX. Thanks to Pavel + Rochnyack. #2357 + * Intel PMU plugin: This new plugin collects CPU performance metrics + using Intel's Performance Monitoring Unit (PMU). Scaling information + added to metadata. Thanks to Serhiy Pshyk and Roman Korynkevych. + #2276, #2398, #2374 + * Intel RDT plugin: Support for collectd's logging infrastructure has + been added. PQoS monitoring groups are being reset on start-up to fix + potential previous unclean shutdowns. Thanks to Roman Korynkevych. + #2089. + * IPMI plugin: Support for System Event Log (SEL) has been added. Thanks + to Roman Korynkevych. #2091 + * IPMI plugin: Support for remote IPMI controllers has been added. + Thanks to Pavel Rochnyack. #2024 + * LVM plugin: A check for the "CAP_SYS_ADMIN" capability has been added. + This will give users an informative warning when the process is not + running with the required privileges for this plugin. Thanks to + Florian Forster. #2426, #2499 + * mcelog plugin: This new plugin subscribes to Machine Check Exceptions + (MCE) and dispatches notifications. Metadata reset. Thanks to Maryam + Tahhan, Volodymyr Mytnyk, Taras Chornyi, Krzysztof Matczak and Roman + Korynkevych. #2003, #2246, #2380 + * MQTT plugin: Add support for TLS in "Subscriber" blocks. Thanks to + Florian Forster. #2434 + * memcached plugin: Persistent connections have been implemented. Fix + hit ratio reporting, add connections rate report. Thanks to Pavel + Rochnyack. #2388, #2385 + * memcached plugin: The type of the "listen_disabled" metric has been + changed to "total_events". Thanks to Florian Forster. #2386, #2468 + * Netlink plugin: The dropped packets metric has been added. Thanks to + Denys Fedoryshchenko. #2053 + * NFS plugin: Support for NFS 4.2 metrics has been added. Thanks to + Marek Becka. #2369 + * NFS plugin: Config options to ignore specified NFS versions have been + added. Thanks to Christian Bartolomäus. #2430 + * NUT plugin: The "ConnectTimeout", "ForceSSL", "VerifyPeer" and + "CAPath" options have been added. Thanks to Pavel Rochnyack and Steven + Bell. #2145, #2354 + * OpenLDAP plugin: A segfault after a connection failure has been fixed. + Thanks to Pavel Rochnyack. #2377 + * Openvpn plugin: Added support for status files from latest OpenVPN-2.4 + and possible from future versions. Thanks to Pavel Rochnyack. #2352 + * OVS Events plugin: This new plugin reports link state changes from + Open vSwitch (OVS). Thanks to Volodymyr Mytnyk. #1971 + * OVS Stats plugin: This new plugin reports bridge / interface + statistics from Open vSwitch (OVS). Thanks to Volodymyr Mytnyk and + Taras Chornyi. #2137 + * Perl plugin: Bugfix, added check of proper interpreter initialization. + Thanks to Pavel Rochnyack. #2391 + * PostgreSQL plugin: The plugin now sets the "application_name" + parameter when connecting to the database. Thanks to daniacs. #2497 + * Processes plugin: The I/O operations reported for selected processes + has been fixed. The metric "ps_disk_octets" has been renamed to + "io_octets" because it actually contains the number of I/O operation + by the process, not just disk related I/O. Same for "io_ops" + (previously "ps_disk_ops"). The new metric "disk_octets" has been + added and is reporting disk I/O only. Add option to collect the count + of active memory maps for Linux processes. The "CollectFileDescriptor" + and "CollectContextSwitch" options have been added. Thanks to Pavel + Rochnyack and to Wilfried Goesgens. #2232, #2454, #1989 + * Processes and TCPConns plugins: The OpenBSD implementation has been + changed to use "kvm_openfiles" with "KVM_NO_FILES". Thanks to Jeremie + Courreges-Anglas. #2061 + * Python plugin: Extend Notification class to include metadata. Thanks + to Volodymyr Mytnyk. #2135 + * Python plugin: The "CollectdException" class has been added. This + allows to throw an exception without a stack trace being logged. + Thanks to Sven Trenkel. #2330, #2346 + * Sensors plugin: Support for (electrical) current has been added. + Thanks to Clemens Gruber. #2255 + * SNMP plugin: Error handling has been improved: a potential double-free + is now avoided (potentially leaking memory) and handling of + non-failing subtrees has been fixed. Thanks to Pavel Rochnyack. #2449 + * SNMP plugin: The "Timeout" and "Retries" config options have been + added. Thanks to Carlos Vicente. #1472, #2488 + * SNMP Agent plugin: This new plugin implements an SNMP AgentX subagent + that receives and handles queries from SNMP master agent and returns + configured metrics. Thanks to Roman Korynkevych, Serhiy Pshyk and + Pavel Rochnyack. #2105, #2362 + * Synproxy plugin: This new plugin provides statistics for Linux + SYNPROXY. Thanks to Marek Bečka. #2381 + * Tail plugin: Allow the calculation of several distributions in one + "tail" instance through a "bucket" type. Thanks to Pavel Rochnyack. + #2442 + * Turbostat plugin: Import "msr-index.h" header from Linux and better + support for mutliple packages. Thanks to Vincent Brillault. #2445, + #2446 + * Uptime plugin: Changed implementation to read from "/proc/uptime" + instead of "/proc/stat". Update for Linux and AIX, uptime is read + directly using a system call. Update for BSD and Solaris, uptime is + calculated by subtracting boot time from current time. Thanks to Ivan + Kurnosov and Marcin Jurkowski. #2431, #2034 + * UUID plugin: Support for libhal has been removed. Thanks to Ruben + Kerkhof. #2080 + * Varnish plugin: Extended the varnish plugin with varnish-plus + counters. Fixed invalid data source type. Thanks to Denes Matetelki. + #2453, #2463 + * virt plugin: The plugin has been updated to use + "virConnectListAllDomains()". Thanks to Denis Silakov. #2051 + * virt plugin: Support for domain tags has been added. Thanks to + Francesco Romani. #2048 + * virt plugin: Connection handling has been improved. Thanks to + Francesco Romani. #2100, #2101 + * virt plugin: Many metrics have been added, including disk, hypervisor + CPU usage, performance monitoring events, domain state, CPU pinning + (affinity), file system, and job statistics. Thanks to Francesco + Romani and Przemyslaw Szczerbik. #2103, #2175, #2168 + * Write Graphite plugin: Additional tests have been added. Thanks to + Florian Forster. + * Write HTTP plugin: The "Attribute" and "TTL" options for the KairosDB + format have been added. Implementation of "Prefix" option. Thanks to + jaroug, Denis Pompilio and Pavel Rochnyack. #2199, #2252, #2482 + * Write MongoDB plugin: Memory leaks have been fixed. Thanks to + Saikrishna Arcot. #2307 + * Write Prometheus plugin: Label values are now properly escaped. Thanks + to Florian Forster. #2035 + * Write Redis plugin: Add "max_set_duration" to set duration for value. + Thanks to Tomofumi Hayashi. #2440 + * Write Riemann plugin: Export times with microsecond resolution. Thanks + to mcorbin. #2315 + * Write TSDB plugin: The options "ResolveInterval" and "ResolveJitter" + have been added to control DNS lookup behavior. This prevents DNS + flooding in case TSDB is not available. Thanks to Yves Mettier and + Florian Forster. #2059 + * ZFS ARC plugin: Header lines are now ignored in the Linux + implementation. Thanks to YmrDtnJu. #2097 + +2017-06-06, Version 5.7.2 + * Build system: The Notify Email plugin is no longer linked with + indirect dependencies. Thanks to Marc Fournier. + * collectd: A race condition when calculating a metric's rate has been + fixed. Thanks to Florian Forster. #1193 + * AMQP, Exec, UnixSock, Write Kafka plugins: Parsing of the PUTVAL + command with multiple values has been fixed. Thanks to Florian + Forster. #2274 + * AMQP plugin: The "ExchangeType" option is now also valid for + publishers. Thanks to Florian Forster. #2286 + * BIND plugin: Fix parsing of the sample time provided by BIND. + Previously, the time was assumed to be in the local timezone when in + fact it was in UTC. Thanks to Ed Ravin. #1268 + * BIND plugin: Memory leaks have been fixed. Thanks to Ruben Kerkhof. + #2303 + * cURL-JSON plugin: Handling of arrays has been fixed. Thanks to Florian + Forster. #2266 + * DPDKStat plugin: Error handling during initialization has been + improved. Thanks to Ruben Kerkhof. + * DPDKStat plugin: Handling of a number of metrics has been improved, + for example "rx_q0bytes". Thanks to Przemyslaw Szczerbik. #2167 + * Intel RDT plugin: Configuration handling has been changed to be more + graceful. Thanks to Maryam Tahhan. #2165 + * Log Logstash plugin: If writing the log entry fails, print it to + "STDERR" instead. Thanks to Marc Fournier. + * LogFile plugin: If writing to the file fails, print log messages on + "STDERR" instead. Thanks to Marc Fournier. + * memcachec, Tail plugins: A resource leak in the matching + infrastructure has been fixed. Thanks to Krzysztof Matczak. #2192 + * MQTT plugin: Invalid symbols in topic names are now replaced and a + resource leak has been fixed. Thanks to Denys Fedoryshchenko. #2123 + * Network plugin: A potential endless-loop has been fixed. This can be + triggered remotely by sending a signed network packet to a server + which is not set up to check signatures. Thanks to Marcin Kozlowski + and Pavel Rochnyack. #2174, #2233, CVE-2017-7401 + * Perl plugin: A potential double-free has been fixed. Thanks to Florian + Forster. #2278 + * Processes plugin: A compilation error on AIX has been fixed. Thanks to + Pavel Rochnyack. #2210 + * SMART plugin: A check for the "CAP_SYS_RAWIO" capability has been + added. Thanks to Marc Fournier. + * Write Graphite plugin: Error handling in the case that calculating a + metric's rate fails has been improved. Previously, the raw counter + values were sent to Graphite. Thanks to Iain Buclaw. #2209 + * Write Prometheus plugin: An incorrect use of "realloc(3)" has been + fixed. Thanks to Florian Forster. #2275 + +2017-01-23, Version 5.7.1 + * collectd: Handling of boolean configuration options has been unified. + Thanks to Sebastian Harl. #2083, #2098 + * collectd: Reporting of internal statistics has been fixed. Thanks to + Florian Forster. #2108 + * collectd, various plugins: Bugs and issues reported by scan-build and + coverity-scan have been fixed. Thanks to Ruben Kerkhof and Florian + Forster. + * Build system: Parallel build have been fixed. Thanks to Ruben Kerkhof. + #2110 + * DPDKStat plugin: Portability issues and a double-close bug have been + fixed. Thanks to Ruben Kerkhof and Marc Fournier. + * Intel RDT plugin: A check for the libpqos library version has been + added. Thanks to Serhiy Pshyk. + * NetApp plugin: Compilation problems have been corrected. Thanks to + Florian Forster. #2120 + * Write Prometheus plugin: A memory leak has been fixed. Thanks to Ruben + Kerkhof. + +2016-12-12, Version 5.7.0 + * Documentation: The Turbostat plugin section has been improved. Thanks + to Florian Forster + * Documentation: The semantics of the "TypesDB" option have been + improved. Thanks to Florian Forster. + * collectd: A generic interface for parsing the text protocol has been + added. Thanks to Sebastian Harl. #1749 + * collectd: Threads now get named, making them easier to track using + tools such as top, ps, etc. Thanks to Manuel Luis Sanmartín Rozada + and Marc Fournier. #547 + * AMQP plugin, Write Graphite plugin, Write Kafka plugin: The new + "[Graphite]PreserveSeparator" option allows retaining the default dot + separator rather than escaping it. Thanks to Florian Forster. #419 + * Battery plugin: A StateFS backend for gathering statistics has been + added. Thanks to Rinigus. #1795 + * CPU plugin: CPU aggregation on AIX was fixed. Thanks to Chao Yang. + #1957 + * Collectd::Unixsock: Fractional seconds support has been made more + robust. Thanks to Matthias Bethke. #2052 + * DPDKStat plugin: This new plugin collects DPDK interface statistics. + Thanks to Maryam Tahhan, Harry van Haaren, Taras Chornyi and Kim + Jones. #1649 + * gRPC plugin: The "DispatchValues" option has been renamed to + "PutValues". Thanks to Florian Forster. + * HDDTemp plugin: The 32 devices limit has been removed. Thanks to + Benjamin Gilbert. #631 + * Hugepages plugin: This new plugin reports the number of used and free + hugepages on Linux. Thanks to Jaroslav Safka, Maryam Tahhan, Kim Jones + and Florian Forster. #1799 + * Intel RDT plugin: This new plugin collects statistics exposed by + Intel's Resource Director Technology . Thanks to SerhiyX. #1970 + * memcached plugin: The new "Address" option allows connecting to a + different server than specified by the "Host" option. Thanks to Pavel + Rochnyack. #1975 + * nginx plugin: Support for reporting failed connections has been added. + Thanks to Pavel Rochnyack. #1609 + * Perl plugin: Significant internal reworking has been made. The new + "RegisterLegacyFlush" option has been added. Thanks to Pavel + Rochnyack. #1731 + * PostgreSQL plugin: Timestamps are now RFC 3339-formatted local time. + Thanks to Igor Peshansky and Dave Cunningham. #1918 + * Processes plugin: Internal performance improvements have been made. + Thanks to Pavel Rochnyack. #1980, #1981 + * RRDCacheD plugin: The plugin now tries to reconnect upon failed + operations. Thanks to Sebastian Harl. #1959 + * SpamAssassin: The plugin can now run in Perl's "tainted mode" ("-T"). + Thanks to Akos Vandra. #1962 + * Tail plugin: Support for calculating latency distribution of matching + values has been added. Thanks to Pavel Rochnyack and Florian Forster. + #1700 + * Tail plugin: The new "GaugePersist" option has been added. Thanks to + Florian Forster. #2015 + * Target:Set, Target:Replace, Match:RegEx: MetaData support has been + added . Thanks to Igor Peshansky. #1922, #1923, #1930 + * turbostat plugin: The new "LogicalCoreNames" option allows switching + to per-core naming rather than per-CPU. Thanks to Brock Johnson. #2056 + * virt plugin: The new "BlockDeviceFormat" and + "BlockDeviceFormatBasename" options help controlling the names + reported for block-device metrics. Thanks to Deyan Chepishev. #2004 + * Write Graphite plugin: A new "DropDuplicateFields" option has been + added. Thanks to Michael Leinartas. #1915 + * Write Kafka plugin: The "Key Random" setting has been reintroduced. + Thanks to Florian Forster. #1977 + * Write Log plugin: Support for formatting output in JSON has been + added, using the new "Format" configuration option. Thanks to Igor + Peshansky. #1924 + * Write Prometheus plugin: This new plugin publishes values using an + embedded HTTP server, in a format compatible with Prometheus' + collectd_exporter. Thanks to Florian Forster. #1967 + +2017-10-06, Version 5.6.3 + * collectd: support for boolean string config values has been + reintroduced. Thanks to Sebastian Harl. #2083, #2098 + * collectd: The capability checking has been changed to use + "cap_get_proc()". Thanks to Marc Fournier. #2151 + * Documentation: A section documenting ignore lists has been added to + collectd.conf(5). Thanks to Florian Forster. + * AMQP plugin: The "ExchangeType" option is now also valid for + publishers. Thanks to Florian Forster. #2286 + * Apache, Ascent, BIND, cURL, cURL-JSON, cURL-XML, nginx, Write HTTP + plugins: Handling of URLs that redirect elsewhere has been fixed. + Thanks to Pavel Rochnyack. #2328 + * BIND plugin: Fix parsing of the sample time provided by BIND. + Previously, the time was assumed to be in the local time zone when in + fact it was in UTC. Thanks to Ed Ravin. #1268 + * BIND plugin: Memory leaks have been fixed. Thanks to Ruben Kerkhof. + #2303 + * Chrony plugin: Build flags have been fixed. Thanks to Thomas Jost and + Marc Fournier. #2133 + * cURL-JSON plugin: The timeout value has been changed to default to the + collection interval. This fixes a regression. Thanks to Marc Fournier. + * cURL-JSON plugin: Handling of arrays has been fixed. Thanks to Florian + Forster. #2266 + * DBI plugin: Memory leaks at shutdown have been fixes. Thanks to Pavel + Rochnyack and Florian Forster. + * E-Mail, Exec, UnixSock plugins: Group ID lookup on systems with many + groups has been fixed. Thanks to Ruben Kerkhof and Florian Forster. + #2208 + * IPC plugin: A compilation error on AIX has been fixed. Thanks to Pavel + Rochnyack. #2305 + * LogFile plugin: If writing to the file fails, print log messages on + "STDERR" instead. Thanks to Marc Fournier. + * Log Logstash plugin: If writing the log entry fails, print it to + "STDERR" instead. Thanks to Marc Fournier. + * memcachec, Tail plugins: A resource leak in the matching + infrastructure has been fixed. Thanks to Krzysztof Matczak. #2192 + * MQTT plugin: Invalid symbols in topic names are now replaced and a + resource leak has been fixed. Thanks to Denys Fedoryshchenko. #2123 + * Network plugin: A potential endless-loop has been fixed. This can be + triggered remotely by sending a signed network packet to a server + which is not set up to check signatures. Thanks to Marcin Kozlowski + and Pavel Rochnyack. #2174, #2233, CVE-2017-7401 + * Network plugin: A use-after-free has been fixed. Thanks to Pavel + Rochnyack. #2375 + * Notify Email plugin: The plugin is no longer explicitly linked against + libssl and libcrypto, relies on libesmtp being linked correctly. + Thanks to Marc Fournier. Debian#852924 + * NTPd plugin: Calculation of loop offset and error has been fixed. + Thanks to Neil Wilson. #2188 + * OpenLDAP plugin: An incorrect use of the ldap library, leading to a + crash, has been fixed. Thanks to Marc Fournier. #2331 + * Perl plugin: A potential double-free has been fixed. Thanks to Florian + Forster. #2278 + * Perl plugin: Print an error when an incorrect configuration is + encountered. Thanks to Pavel Rochnyack. #927 + * RRDtool plugin: Incorrect handling of the flushes timeout option has + been fixed. Handling of the "RandomTimeout" has been fixed. Thanks to + Pavel Rochnyack. #2363 + * SMART plugin: Some warning messages have been removed and the code has + been cleaned up. Thanks to Florian Forster. #2062 + * SMART plugin: A check for the "CAP_SYS_RAWIO" capability has been + added. Thanks to Marc Fournier. + * SNMP plugin: A double free has been fixed. Thanks to Pavel Rochnyack. + #2291 + * Write Graphite plugin: Error handling in the case that calculating a + metric's rate fails has been improved. Previously, the raw counter + values were sent to Graphite. Thanks to Iain Buclaw. #2209 + * Write Kafka plugin: A 32 bit random number is now used when formatting + a random key. Thanks to Florian Forster. #2074 + + +2016-11-30, Version 5.6.2 + * collectd: A compile error on AIX has been fixed: "MSG_DONTWAIT" is not + available on AIX. Thanks to Chao Yang. + * collectd: The capability checking has been rewritten to be more + portable. Thanks to Florian Forster. #2009 + * collectd.conf(5): Various typos have been fixed. Thanks to Marc + Fournier. + * collectd-tg: Incorrect usage of "nanosleep()" has been fixed which + caused the tool to sleep (almost) indefinitely. Thanks to Florian + Forster. + * Build system: Detection of the Java environment has been made + deterministic to allow for reproducible builds. Thanks to Marc + Fournier. #1523 + * Build system: Detection of the Lua headers has been improved. Thanks + to Ruben Kerkhof. + * APC UPS plugin: Unavailable metrics are now skipped instead of + reported as 0 (zero). Thanks to Florian Forster. #2025 + * Modbus plugin: Build issues on FreeBSD have been fixed. Thanks to + Florian Forster. + * OpenVPN plugin: Gracefully handle empty configurations. Thanks to + Pavel Rochnyack. #1932 + * PowerDNS plugin: The "recursor command" has been fixed so PowerDNS can + correctly parse all requested fields. Thanks to Ruben Kerkhof. + * Write Graphite and AMQP plugins: A bug that could lead to a missing + null-termination has been fixed. Thanks to Markus Linnala. + * Write HTTP plugin: A logic error when checking the correctness of the + data set has been fixed. Thanks to Pavel Rochnyack. #1996 + * Write Kafka plugin: The "Key Random" config option has been fixed. + Thanks to Florian Forster. #1977 + * Write Kafka plugin: Support for librdkafka 0.9.0 has been added. + Thanks to Florian Forster. + * Write Riemann plugin: Build issues on Solaris have been fixed. Thanks + to Florian Forster. + * ZFS ARC plugin: A duplicate metric has been removed. Thanks to Ruben + Kerkhof. #1963 + +2016-10-07, Version 5.6.1 + * Build system: Unnecessary linking of the Write Graphite plugin with + libyajl has been removed. Thanks to Marc Fournier. + Debian#839771, #1976 + * collectd: A bug in the "FlushInterval" option that caused a + segmentation fault in the Write HTTP plugin has been fixed. Thanks to + Florian Forster. #1954 + * Apache plugin: A syntax error has been fixed. Thanks to Florian + Forster. + * cURL-JSON plugin: A segmentation fault that occurred when handling + JSON with unexpected structure has been fixed. Thanks to Florian + Forster. #1896 + * PostgreSQL plugin: Handling of "NULL" values in the "query_plans" and + "query_plans_by_table" queries has been fixed. Thanks to Bernd + Zeimetz. #1905 + * RRDCacheD plugin: Reconnection behavior has been added. Thanks to + Sebastian Harl. Debian#657877 + * VServer plugin: Use of a deprecated API ("readdir_r()") has been + fixed. Thanks to Sebastian Harl. + * Write Graphite plugin: Make default values configurable at compile + time again. Thanks to Florian Forster. #1953 + * Write HTTP plugin: A bug has been fixed that lead to flush callbacks + being registered twice. Thanks to Florian Forster. #1955 + +2016-09-11, Version 5.6.0 + * Build system: An option to to avoid building the DF plugin against XFS + has been added. Thanks to Ruben Kerkhof. #1878 + * Build system: Autoconf ≥ 2.60, a C99-capable compiler and pkg-config + are now required. Thanks to Ruben Kerkhof. + * Build system: Building with "-Werror" is now optional. Thanks to Ruben + Kerkhof. #1222 + * Build system: Many compilation issues on non-Linux platforms have been + fixed, leading to wider plugin support. Thanks to Ruben Kerkhof, + Dagobert Michelsen, Havard Eidnes and Robert Viduya. + * Build system: The configuration summary now also ends up in + config.log. Thanks to Sebastian Harl. + * collectd: All command-line options now override global options from + the config file. Thanks to Sebastian Harl. #366 + * collectd: A number of unit tests for commonly used functions have been + added. Thanks to Florian Forster. + * collectd: Plugins start up and read timeouts are now logged. Thanks to + Marc Fournier. #1293, #1254 + * collectd: Support for a timeout has been added to "FLUSH" callbacks. + Thanks to Manuel Luis Sanmartín Rozada. + * collectd: The "-T" command line switch now reports more errors. Thanks + to Corey Kosak. #1642 + * collectd: The max size of value list elements ("DATA_MAX_NAME_LEN") + has been doubled and is now configurable at build time. Thanks to Amy + Lin, Florian Forster and Radu Brumariu. #1120 + * Set target: The "MetaData" option has been added. Thanks to Yves + Mettier and Kevin Bowling. #1106, #1656, #1913 + * AMQP, Write_HTTP, Write_Kafka plugins: Support for libyajl < 2 has + been added. Thanks to Florian Forster. + * APC UPS plugin: Parsing of end markers has been fixed. Thanks to + Florian Forster #617 + * APC UPS plugin: The "PersistentConnection" option has been added. + Thanks to Florian Forster #617 + * ceph, DNS, Exec, IPTables, Ping, turbostat plugins: When running + unprivileged, these plugins will now warn about insuffiscient + permissions or capabilities(7). Thanks to Marc Fournier. #1530 + * Chrony plugin: This new plugin collects NTP data from the chrony NTP + server. Thanks to Claudius Zingerli. #1548 + * cpusleep plugin: This new plugin measures time spent by CPU in deep + sleep mode. Thanks to Rinigus. #1826 + * CPU plugin: The "ReportNumCpu" option has been added. Thanks to Fabien + Wernli. + * cURL, cURL-JSON, cURL-XML plugins: The new "Statistics" reports + various per-HTTP connection timers. Thanks to Sebastian Harl. #1004 + * DBI plugin: The "Interval" option has been added to "Database" blocks. + Thanks to Michal Bebjak. + * Disk plugin: Support for FreeBSD has been added. Thanks to Xin Li, + Brad Davis, Ruben Kerfhof and Kevin Bowling. + * Empty Counter match: Support for derives has been implemented. Thanks + to Florian Forster. #1813 + * GenericJMX plugin: Support for TabularData and the "PluginName" option + have been added. Thanks to David Crane. #1290, #1291 + * GPS plugin: This new plugin reports the number of sattelites seen by + and precision of a GPS receiver. Thanks to Nicolas Jourden. #1346 + * gRPC plugin: This new client and server plugin allows sending and + receiving metrics using the gRPC protocol. Comparable to the UnixSock + plugin, but using TCP and TLS. Thanks to Sebastian Harl and Florian + Forster. + * Interface plugin: Reporting dropped packets has been added. Thanks to + Marc Falzon. #1555 + * Interface plugin: The "ReportInactive" has been added, letting users + skip inactive network interfaces. Thanks to Rinigus. #1791 + * Interface plugin: The new, Solaris-only "UniqueName" option has been + added. Thanks to Yoga Ramalingam. #1416 + * Lua plugin: This new language binding allows writing plugins using the + Lua programming language. Thanks to Julien Ammous, Florian Forster and + Ruben Kerkhof. + * Memory plugin: Reporting of ARC memory on Solaris has been added. + Thanks to Brian ONeill. + * MQTT plugin: This new plugin sends metrics to and/or receives metrics + from an MQTT broker. Thanks to Marc Falzon, Jan-Piet Mens, Nicholas + Humfrey and Florian Forster. #805, #1124 + * MySQL plugin: Connection to the database server can now be done over + SSL. Thanks to Brian Lalor. #1256 + * MySQL plugin: Monitoring slow queries has been added. Thanks to skob. + #1773 + * MySQL plugin: mysql_bpool_pages-flushed has been renamed to + mysql_bpool_counters-pages_flushed because the value is cumulative. + Thanks to Marek Becka. + * MySQL plugin: Support for Galera statistics has been added. Thanks to + Rachid Zarouali. #1849 + * MySQL plugin: Support for InnoDB metrics was improved. Thanks to Aman + Gupta. #1111 + * MySQL plugin: The "mysql_sort" type has been split into 3 different + types. Thanks to Pavel Rochnyack. #1592 + * Network plugin: Decryption error logging has been improved. Thanks to + Pavel Rochnyack. #1735 + * Notify Nagios plugin: This new plugin sends notifications to Nagios as + a passive check result. Thanks to Florian Forster. + * NTPd plugin: The plugin now detects if the ntp daemon reports + nanoseconds instead of microseconds. Thanks to Matwey V. Kornilov. + #1783 + * OpenLDAP plugin: Several connection-related improvements have been + made. Thanks to Marc Fournier. #1308 + * OpenLDAP plugin: Support for "simple authentication" has been added. + Thanks to Marek Becka. #1087 + * Ping plugin: The "Size" option has been added, allowing the ICMP data + payload size to be configured. Thanks to Witold Baryluk. #1395 + * PostgreSQL, DBI, Oracle plugins: The new "PluginInstanceFrom" option + has been added. Thanks to Pavel Rochnyack. #1707 + * PowerDNS plugin: The recursor metrics have been updated to 3.7.3 and + missing rr types have been added. Thanks to Ruben Kerkhof. + * Processes plugin: Counting of context switches was added for Linux. + Thanks to Manuel Luis Sanmartín Rozada. #1036 + * Processes plugin: Improve reliability of thread counts on Linux. + Thanks to Manuel Luis Sanmartín Rozada. + * Python plugin: Minimal Python version requirement has been bumped to + 2.6. Thanks to Ruben Kerkhof. #1864 + * Redis plugin: Several additional metrics are now collected. Thanks to + Marc Falzon and Matteo Contrini. #1807, #1483 + * Sensors plugin: The "UseLabels" option has been added. Thanks to + Christian Fetzer. + * SMART plugin: The new "IgnoreSleepMode" option has been added. Thanks + to Scott Talbert. #1770 + * SMART plugin: The new "UseSerial" option allows identifying devices in + a stable way. Thanks to Scott Talbert. #1794 + * SNMP plugin: The "IpAddress" can now be used for instances. Thanks to + Vincent Bernat. #1397 + * StatsD plugin: Latency calculation histogram is now able to shrink + automatically to optimal size. Thanks to Pavel Rochnyack. #1622 + * StatsD plugin: The "CounterSum" option has been added. Thanks to + Florian Forster. #929, #1282, #1311 + * UUID plugin: The plugin now also looks in in smbios system table and + "/sys/class/dmi". Thanks to Ruben Kerkhof. #1490 + * virt plugin: The "PluginInstanceFormat" option has been added. Thanks + to Ruben Kerkhof. #1100 + * Write Graphite plugin: The "ReconnectInterval" option has been added. + Thanks to Toni Moreno and Florian Forster. + * Write HTTP plugin: A KairosDB formatter has been added. Thanks to + Aurélien Rougemont. #1809 + * Write HTTP plugin: Notifications are now handled by this plugin. + Thanks to Florian Forster. + * Write HTTP plugin: The "LogHttpError" option has been added. Thanks to + vzubko. + * Write HTTP plugin: The new "Headers" option allows setting custom HTTP + headers in outgoing requests. Thanks to Brandon Arp. #1634 + * Write Kafka plugin: Key handling has been made more comprehensive and + reliable. Thanks to Florian Forster, Pierre-Yves Ritschard and Vincent + Bernat. #1765, #1695, #1393 + * Write Redis plugin: The "Database", "MaxSetSize", "Prefix" and + "StoreRates" options have been added. Thanks to Brian Kelly and + Sebastian Pfahl. + * Write Riemann plugin: The new "BatchFlushTimeout" and "Timeout" option + have been added. Thanks to Pierre-Yves Ritschard and Gergely Nagy. + * Write Riemann plugin: This plugin now requires the riemann-c-client + library, version 1.6.0+. This adds support for submitting values to + Riemann over TLS. Thanks to Gergely Nagy. #986 + * Write TSDB, Write Sensu, Write Riemann, Write Graphite, Write TSDB + plugin: TCP keepalive is now enabled, helping graceful recovery from + unclean network disconnections. Thanks to Marc Fournier. #1549 + * XenCPU plugin: This new plugin collects XEN Hypervisor CPU stats. + Thanks to Pavel Rochnyack. #1608 + * ZFS ARC plugin: Several new statistics have been added and a couple of + obsolete ones removed. Thanks to Brad Davis, Brian ONeill and Ruben + Kerkhof. + * Zone plugin: This new plugin reads per-zone CPU usage on Solaris. + Thanks to Mathijs Mohlmann and Dagobert Michelsen. + +2016-11-28, Version 5.5.3 + * collectd: Write threads are stopped before shutdown callbacks are + called. Thanks to Florian Forster. #1110 + * collectd: A compile error on AIX has been fixed: "MSG_DONTWAIT" is not + available on AIX. Thanks to Chao Yang. + * libcollectdclient: Lines printed to "STDERR" are now guarded by the + environment variable "COLLECTD_TRACE". Thanks to Florian Forster. #105 + * collectd.conf(5): Various typos have been fixed. Thanks to Marc + Fournier. + * Build system: Detection of the Java environment has been made + deterministic to allow for reproducible builds. Thanks to Marc + Fournier. #1523 + * APC UPS plugin: Unavailable metrics are now skipped instead of + reported as 0 (zero). Thanks to Florian Forster. #2025 + * Battery plugin: The minimum value has been removed from the power type + to allow the plugin to report discharging batteries as negative power. + Thanks to Florian Forster. + * DBI, Oracle and PostgreSQL plugins: An error message when the type + instance is truncated has been added. Thanks to Florian Forster. #4 + * cURL-JSON plugin: A possible segmentation fault when parsing + unexpected JSON has been fixed. Thanks to Florian Forster. #1896 + * DF plugin: Compilation with xfsprogs ≥ 4.7.0 has been fixed. Thanks + to Thomas Deutschmann. #1877 + * Modbus plugin: Build issues on FreeBSD have been fixed. Thanks to + Florian Forster. + * Network plugin: An error message has been corrected. Thanks to Florian + Forster. + * Network plugin: Handling of errors form secure memory initialization + has been improved: the plugin fails gracefully now instead of calling + "abort()". Thanks to Sebastian Harl. + * Network plugin: The gcrypt library is only initialized when it is + actually required due to the network plugin's configuration. Thanks to + Florian Forster. #1902 + * Ping plugin: The init callback has been changed to be idempotent, + fixing errors being reported on Solaris. Thanks to Florian Forster. + #869 + * PostgreSQL plugin: The query_plans and query_plans_by_table queries + have been improved to return 0 (zero) instead of "NULL" when not + available. Thanks to Bernd Zeimetz. #1905 + * PowerDNS plugin: The "recursor command" has been fixed so PowerDNS can + correctly parse all requested fields. Thanks to Ruben Kerkhof. + * Python plugin: Handling of data sets with multiple data sources of + different type has been fixed. Thanks to Sebastian Harl. + * RRDCacheD plugin: Reconnection behavior after failed operations has + been added. Thanks to Sebastian Harl. Debian#657877 + * Write Graphite and AMQP plugins: A bug that could lead to a missing + null-termination has been fixed. Thanks to Markus Linnala. + * Write Kafka plugin: Support for librdkafka 0.9.0 has been added. + Thanks to Florian Forster. + * Write Riemann plugin: Build issues on Solaris have been fixed. Thanks + to Florian Forster. + +2016-07-25, Version 5.5.2 + * collectd: A division by zero has been fixed in the + "plugin_dispatch_multivalue()" function. Thanks to Corey Kosak. + * collectd: The address of the Free Software Foundation has been fixed + in GPL license headers. Thanks to Ruben Kerkhof. + * Build system: Detection and handling of librrd 1.6 and later has been + fixed. Thanks to Ruben Kerkof. + * Apache plugin: A warning about a possible misconfiguration has been + added. Thanks to Marc Fournier. + * cURL, cURL-JSON and cURL-XML plugins: A memory leak when allocating + more memory fails has been fixed. Thanks to Brandon Arp. + * DF plugin: A build issue on DragonFlyBSD has been fixed. Thanks to + Ruben Kerkhof. #1575 + * Ethstat plugin: Code to strip leading whitespace from device names. + This works around an issue in the VMXNet3 driver. Thanks to Thomas + Guthmann. #1059 + * Exec plugin: A problem in the error handling of an fdopen() failure + has been fixed. Thanks to @ciomaire. + * Modbus plugin: The debug output has been disabled by default. It is + now only enabled when building with "--enable-debug". Thanks to Eric + Sandeen and Marc Fournier. + * Network plugin: A check for the initialization of secure memory has + been added. Previously, failure to initialize this memory was + ignored. Thanks to @yujokang. #1665 + * Network plugin: A heap overflow has been fixed in the server code. + This issue can be triggered remotely and is potentially exploitable. + Thanks to Emilien Gaspar. CVE-2016-6254 + * Perl plugin: Init callbacks have been changed to run essentially + single-threaded to avoid race conditions by init functions which + create additional threads. Thanks to Pavel Rochnyack. #1706 + * Processes plugin: A warning about too long process names has been + added. Thanks to Marc Fournier. #1284 + * Redis plugin: A memory leak in an error handling code path has been + fixed. Thanks to Andrés J. Díaz. + * Redis plugin: The data source type of the expired_keys metric has been + corrected to "DERIVE". Thanks to Marc Falzon and Marc Fournier. #1483. + * SMART plugin: A build dependency on libudev has been added. Thanks to + Pavel Rochnyack. #1724 + * StatsD plugin: A deadlock on plugin shutdown has been fixed. Thanks to + Pavel Rochnyack #1703 + * Write HTTP plugin: Freeing of memory holding HTTP headers during + shutdown has been fixed. Thanks to Tolga Ceylan. + * Write Sensu plugin: A segfault when the Tag was unset has been fixed. + Thanks to Marc Fournier. + * ZFS ARC plugin: The cache_operation-stolen metric has been removed for + FreeBSD 10.2 and later. Thanks to Ruben Kerkhof. #1580 + +2016-01-22, Version 5.5.1 + * Build system: Compilation errors have been avoided by correctly + defining package name and version used by autoconf. Thanks to Nathan + Berkley. #1063 + * Build system: Dependency ordering was fixed to ensure parallel builds + work reliably. Thanks to Gustavo Zacarias. #1125 + * Build system: Error messages have been improved and building the unit + tests has been fixed on Solaris. Thanks to Florian Forster and + Dagobert Michelsen. #1077 + * Build system: The move of the "utils_ignorelist" functions has been + reverted. This fixes build issues of numerous plugins. Thanks to + Benjamin Drung;. #1323 + * Build system: The fhcount plugin has been restricted to Linux. Thanks + to Ruben Kerkhof. #1195 + * Build system: Detection of header files for the turbostat plugin has + been fixed. Thanks to Marc Fournier. #1075 + * collectd: The "LC_NUMERIC" locale is now forced, to prevent issues + with some plugins on environments using a comma as decimal separator. + Thanks to Florian Forster. #1237 + * Documentation: Some precisions related to the virt plugin have beed + added. Thanks to Wojtek Bocer and Ruben Kerkhof. + * Documentation: The CollectdInternalStats documentation has been + improved. Thanks to Yves Mettier and Florian Forster. + * Battery plugin: A missing Type has been added. Thanks to Marc + Fournier. #1338 + * Bind plugin: An off-by-one error has been fixed: an index was checked + against a wrong variable, which may lead to an out-of-bounds read. + Thanks to Michal Humpula. #1123 + * Ceph plugin: JSON parsing has been refactored to support ceph 10.0.0 + and fixes several buffer overflows. Thanks to Florian Forster. #1350 + * CPU plugin: A Mac OS X specific bug has been fixed: the plugin + expected an incorrect number of CPU states, resulting in failing read + callbacks. This regression was introduced in 5.5.0. Thanks to Robert + Viduya. + * Disk plugin: Support for Mac OS X 10.10 has been added. Thanks to + Robert Viduya. #1065 + * IPC plugin: Support for building with musl-libc has been added. Thanks + to Natanael Copa. #1147 + * Log Logstash plugin: A segfault when using libyajl, version 1 was + fixed. Thanks to Vincent Bernat. #1190 + * Log Logstash plugin: The timestamp is now ISO 8601 compliant. Thanks + to Marc Fournier. #1132 + * memcached plugin: The Type of the listen-disabled metric was fixed. + Thanks to Florian Forster. #1356 + * MySQL plugin: The Type used by Innodb_buffer_pool_pages_flushed was + fixed. Thanks to Marek Becka. #1085 + * OpenLDAP plugin: A crash when using LDAPI (LDAP-over-IPC) got fixed. + Thanks to Marek Becka. #1080 + * OpenLDAP plugin: Support for Mac OS X has been added. Thanks to Ruben + Kerkhof. #1489 + * SMART plugin: A memory leak has been fixed. Thanks to Florian + Schüller and Pierre-Yves Ritschard. #1076 + * Swap plugin: A regression that would lead to swap usage being reported + in kilobytes (instead of bytes) has been fixed. Thanks to Marek Becka. + #1071 + * Varnish plugin: Support for FreeBSD has been added. Thanks to Ruben + Kerkhof. #1182 + * Varnish plugin: Support for versions 3 and 4 has been made more + tolerant to minor changes in Varnish point releases. Thanks to Marc + Fournier. #1302 + * virt plugin: A copy-and-paste mistake in an error message has been + fixed. Thanks to Ruben Kerkhof. #1101 + * Write Kafka plugin: Support for Solaris has been added. Thanks to + Shahul Hameed. #1171 + * Write Redis plugin: Dead code has been removed. Thanks to Brian Kelly. + #1143 + * 27 patches have been applied to numerous plugins and core components, + fixing various programming errors which were reported by scan-build, + libasan, FBInfer, coverity-scan and clang: Thanks to Ruben Kerkhof, + Florian Forster and Marek Becka. + * Collectd::Unixsock: A Perl error got corrected. Thanks to Ciaran Mac + An Iomaire. #1295 + +2015-05-27, Version 5.5.0 + * Build system: Ability to make out-of-tree builds has been fixed. + Thanks to Vincent Bernat. #792 + * Build system, Disk and Users plugins: Detection and use of libstatgrab + ≧ 0.90 has been added. Thanks to Vincent Bernat. #445, #795, #806, + #807, #908 + * Build system, Memory, CPU, TCPConns and Processes plugins: Numerous + fixes related to OpenBSD support have been added. Thanks to Landry + Breuil. #777, #778, #779, #808 + * Build system: Plugins now only export "module_register()". Thanks to + Florian Forster. + * Build system: Various cleanups and improvements have been done. Thanks + to Marc Fournier. + * collectd: Numerous internal changes and improvements to the daemon and + the plugin API have been make. Thanks to Florian Forster, Pierre-Yves + Ritschard and Alex Petrov. #512, #727 + * collectd: Numerous spelling mistakes have been corrected in comments + and documentation and several error messages have been improved. + Thanks to Ruben Kerkhof, Abhinav Upadhyay, Olivier Bazoud, Pierre-Yves + Ritschard, Tim Smith, Moshe Zada, Katelyn Perry and Marc Fournier. + * collectd: Rules/Targets can now be appended to existing Filter Chains. + Thanks to Marc Falzon. #444 + * collectd: Failing Filter Chains destinations will now log the list of + available write targets. Thanks to Wilfried Goesgens. #650, #1043 + * collectd: Support for process signaling and management by upstart and + systemd has been implemented for the Linux platform. Thanks to + Pierre-Yves Ritschard and Marc Fournier. #798, #811, #814 + * collectd: The "CollectInternalStats" option has been added. Thanks to + Yves Mettier. #691 + * collectd: The daemon source code and dependencies have moved to the + "src/daemon/" directory. Thanks to Florian Forster. + * collectd: The new "MaxReadInterval" option allows to cap the + exponential retry interval of plugins read errors. Thanks to Alexey + Remizov and Florian Forster. #713 + * collectd: The "-P" command-line option now has precedence over the + "PIDFile" option. Thanks to Thomas D. #553 + * collection.cgi: Various data-source related adjustments have been + made. Thanks to Fabiano Pires and Sebastian Harl. + * libcollectdclient: Now propagates errors when signing / encrypting + network packets. Thanks to Florian Forster. + * Configuration: Support for unquoted IPv6 addresses has been added. + Thanks to Sebastian Harl. #489 + * Documentation: Various improvements have been done. Thanks to Florian + Forster and Marc Fournier. + * Examples: the sample C plugin has been updated to the current plugin + API. Thanks to Sebastian Harl. + * Licensing: The following components have been relicensed to the MIT + license: the Apple Sensors, Ascent, DBI, E-Mail, Entropy, GenericJMX, + gmond, LogFile, nginx, Notify Desktop, NTPd, NUT, olsrd, Perl, Ping, + PostgreSQL, Protocols, RouterOS, RRDCacheD, SNMP, StatsD, SysLog, + Table, Tail, UnixSock, vmem, VServer, Wireless, Write Riemann and XMMS + plugins, the core collectd daemon, the collectdmon, collectd-nagios + and collectd-tg utilities, all the Targets and Matches, liboconfig, + most of the "utils_*" files and the plugin API. + * Tests: A test suite has been added. Thanks to Florian Forster. + * Threshold: The hysteresis calculation has been made more reliable. + Thanks to Jan Kundrát. #581 + * Threshold: Various fixes and improvements have been made. Thanks to + Manuel Luis Sanmartín Rozada. #649, #644 + * AMQP plugin: The "ConnectionRetryDelay" option has been added, + allowing to delay reconnection. Thanks to Yoga Ramalingam and Marc + Fournier. #833 + * AMQP plugin: The "QueueDurable" and "QueueAutoDelete" options have + been added, giving control over queue creation and deletion. Thanks to + David Blundell and Marc Fournier. #623 + * Apache, Ascent, BIND, cURL, cURL-JSON, cURL-XML, nginx and Write HTTP + plugins: Customizing the "User-Agent" field is now possible at + compile-time. Thanks to Jeremy Katz. #440 + * Apache, Ascent, BIND, cURL, cURL-JSON, cURL-XML, nginx plugins: The + connection will be reset if it hasn't completed within the configured + "Interval". The new "Timeout" option gives control over this behavior. + Thanks to Jan Kundrát and Marc Fournier. #982, #983, #993 + * Apache, Ascent, cURL, cURL-JSON, cURL-XML, nginx, Write HTTP plugins: + Allow usernames and passwords to contain colons if built against + libcurl ≧ 7.19.1. Thanks to Marc Fournier. #695, #947 + * Apache plugin: The "SSLCiphers" option gives control over the + encryption algorithms to use with TLS connections. Thanks to Toni + Moreno. #946 + * Barometer plugin: This new plugin reads sensor data from various + Freescale and Bosch digital barometers. Thanks to Tomas Menzl. #69, + #693 + * Battery plugin: Reporting values as percentages and reporting degraded + batteries has been added. Thanks to Florian Forster. + * Battery plugin: Support for reading values from sysfs on Linux has + been added. Thanks to Andy Parkins, Nicholas Humfrey, Peter Wu and + Florian Forster. #725, #810, #998 + * Battery plugin: The value for current is no longer supplied unless the + battery provides this information. Thanks to Florian Forster. + * BIND plugin: Bind's XML v3 API is now supported; Thanks to Victor + Berger, Bruno Prémont and Michal Humpula. #742, #847 + * Ceph plugin: This new plugin collects statistics from the Ceph + distributed storage system. Thanks to Dan Ryder, Dennis Zou, Colin + McCabe, Sage Weil. #522, #598 + * ConnTrack plugin: Support for reporting values as percentages as well + as legacy conntrack files in "/proc" has been added. Thanks to + Pierre-Yves Ritschard. #497, #680 + * CPU plugin: The plugin is now able to report values as percentages and + aggregate values per-state and per-CPU. Thanks to Pierre-Yves + Ritschard, Florian Forster, Fabien Wernli, Nicholas Humfrey and + Wilfried Goesgens. #499, #516, #639 #734, #812, #802 + * cURL-JSON plugin: Extracting values from complex JSON structures has + been enhanced. Thanks to Jim Radford. #408, #411 + * cURL-JSON plugin: Intervals can now be configured on a per-URL basis. + Thanks to Stan Sawa. #685 + * cURL-JSON, cURL-XML, Write HTTP plugins: These plugins now also follow + HTTP redirects. Thanks to Marc Fournier. + * cURL, cURL-JSON, cURL-XML plugins: HTTP Digest authentication has been + implemented. Thanks to Frank Cornelis. #482 + * DBI, Oracle, PostgreSQL plugins: A "MetadataFrom" parameter has been + added which allows to set metadata from database columns. Thanks to + Mark Wong. #317, #321 + * DBI plugin: Querying several databases in parallel is now possible. + Thanks to Vincent Bernat. #453 + * Disk plugin: On the Linux platform, disk names can now get looked up + in udev with the "UdevNameAttr" option. Thanks to Patrick Mooney. #537 + * Disk plugin: This plugin now collects several additional I/O-related + metrics on the Linux platform. Thanks to Florian Forster and Michael + Schenck. #705, #759 + * DRBD plugin: This new plugin reads Linux's Distributed Replicated + Block Device (DRBD) statistics. Thanks to Tim Laszlo. #566, #700 + * Exec, UnixSock plugins: The "PUTNOTIF" command now allows to set + metadata on notifications. Thanks to John-John Tedro. #416 + * fhcount plugin: This new plugin reports the number of used file + handles. Thanks to Jiri Tyr. #1009 + * GenericJMX plugin: A Class Loader for "JMXConnectorFactory" has been + added, allowing the plugin to work with JBOSS > 7. Thanks to Alexandre + Moutot. #452 + * IPC plugin: This new plugin collects information related to shared + memory. Thanks to Andrés J. Díaz. #925 + * Java plugin: Now uses the hostname defined in the configuration file. + Thanks to Pierre-Yves Ritschard. #530, #681 + * Load plugin: The plugin is now able to report values as percentages. + Thanks to Vedran Bartonicek and Pierre-Yves Ritschard. #344, #498 + * Log Logstash plugin: This new plugin writes collectd logs and events + as Logstash JSON formatted events. Thanks to Pierre-Yves Ritschard. + #360 + * LVM plugin: The plugin collects thin pool data volumes size, and no + longer reports virtual volumes. Thanks to Benjamin Gilbert. #603 + * memcached plugin: "listen_disabled_num" are now also reported. Thanks + to Matt Cottingham. #622 + * Memory plugin: Slab memory reporting on the Linux platform has been + added. Thanks to Manuel CISSÉ and Marc Fournier. #560, #697 + * Memory plugin: The plugin is now able to report values as percentages. + Thanks to Jeremy Katz, Florian Forster and Manuel CISSÉ. #501, #511, + #559 + * Modbus plugin: Selecting between holding and input registers is now + possible. Thanks to Jan Vitek. #338 + * Modbus plugin: Support for accessing devices through an RS-485 serial + port has been added. Thanks to Eric Sandeen. + * Multimeter plugin: This plugin isn't built by default on the AIX + platform anymore. Thanks to Manuel Luis Sanmartin Rozada. #549, #684 + * MySQL and PostgreSQL plugins: Passing "127.0.0.1" as a host will now + result in the global Hostname being used in metric names. Thanks to + Jeremy Katz. #441 + * MySQL plugin: InnoDB, Select and Sort statistics collection has been + added. Thanks to Wilson Felipe, Marek Becka and Pierre-Yves Ritschard. + #248, #621, #699, #824 + * MySQL plugin: The "Alias" and "ConnectTimeout" options have been + added. Thanks to William Tisäter. + * Netlink plugin: Support for 64bit netlink counters has been added. + Thanks to Marek Becka. #435 + * Network plugin: The "ReconnectInterval" configuration option has been + added. Thanks to John Ferlito. #732 + * NFS plugin: Support for NFSv4.0 has been implemented. Thanks to Marek + Becka. #550 + * OneWire plugin: Support for more temperature-providing sensor families + has been added. Thanks to Tomasz Torcz. #672 + * OneWire plugin: Support for full OWFS path and more device families + has been implemented. Thanks to Tomas Menzl. #68 + * OpenLDAP plugin: This new plugin reads monitoring information from + OpenLDAP's "cn=Monitor" subtree. Thanks to Kimo Rosenbaum, Marc + Fournier and Nicholas Humfrey. #719 + * OpenVPN plugin: Support for OpenVPN 2.3.0 has been implemented. Thanks + to Ed Okerson. #252 + * OpenVZ plugin: Various improvements have been made, making the plugin + report values like the other collectd plugins do. Thanks to Chris + Lundquist. #264 + * Perl plugin: A new "listval_filter" method has been added, various + internal cleanups and improvements have been made and a test suite has + been added. Thanks to Matthias Bethke. #728 + * PostgreSQL plugin: The new "ExpireDelay" option allows skipping older + values pending write when the database slows down. Thanks to Stephen + O'Dor. #593 + * PowerDNS plugin: The plugin was updated for stats from pdns 3.4.3. + Thanks to Ruben Kerkhof. #965 + * Processes plugin: A memory-usage related optimization for low-profile + systems has been added. Thanks to Florian Forster. #652 + * Python plugin: Support for Python3 has been improved, "ModulePath" is + now prepended to "sys.path", and the "get_dataset()" function has been + added to the Python API. Thanks to Sven Trenkel and Patrick Browne. + #890, #751, #771 + * Redis and Write_Redis plugins: The support library has been switched + from credis to hiredis. Thanks to Andrés J. Díaz, Victor Seva, Marc + Fournier, Johan Bergström, Michael Spiegle and brianpkelly. #296, + #464, #475, #799, #1030 + * Redis plugin: Custom commands can now be used to fetch values stored + in Redis. Thanks to Pierre-Yves Ritschard. #816 + * Redis plugin: Support for passwords up to 512 characters long has been + added. Thanks to Jeremy Katz. #532 + * Sensors plugin: Support for lm_sensors' power sensors has been added. + Thanks to Jan Kundrát. #571 + * SMART plugin: This new plugin collects SMART statistics from disk + drives. Thanks to Vincent Bernat. #797 + * SNMP plugin: A blacklist/whitelist feature can now be used to filter + which OIDs to collect. Thanks to Christophe Courtaut. #414 + * SNMP plugin: SNMPv3 authentication and encryption support has been + implemented. Thanks to Michael Pilat. #362 + * SNMP plugin: Two error messages have been disambiguated. Thanks to + Sergey. #939, #952 + * Swap plugin: The plugin is now able to report values as percentages. + Thanks to Jeremy Katz and Florian Forster. #500, #510 + * Swap plugin: The plugin no longer fails on Linux systems where + "SwapCached" isn't exposed by the kernel. Thanks to Florian Forster. + #733 + * Tail plugin: "GaugeInc" and "GaugeAdd" options have been implemented. + Thanks to Andre Ferraz. #673 + * Tail plugin: Intervals can now be configured on a per-File basis. + Thanks to Tom Leaman. #446 + * TCPConns plugin: The "AllPortsSummary" option, allowing to summarize + all connections, has been added. Thanks to Marek Becka. #488 + * TCPConns plugin: Three metrics were renamed on the AIX platform, for + the sake of consistency. Thanks to Manuel Luis Sanmartín Rozada. #546 + * Turbostat plugin: This new plugin reads CPU frequency and C-state + residency on modern Intel turbo-capable processors. Thanks to Vincent + Brillault, Jean Delvare and Nicolas Iooss. #651 + * UnixSock plugin: The "GETTHRESHOLD" command has been re-added. Thanks + to Manuel Luis Sanmartín Rozada. #674 + * Varnish plugin: Varnish 4 support has been added, as well as as + monitoring metrics only available in Varnish 4. Thanks to Marc + Fournier. #618, #783 + * virt plugin: Guests memory usage is now also collected. Thanks to + Tiago Carvalho, jazzmes and Zollner Robert. + * virt plugin: It is now possible to chose between using guests' name or + UUID as plugin_instance. Thanks to Remi Ferrand. #385 + * virt plugin: The libvirt plugin has been renamed to virt. Thanks to + Florian Forster. + * Write Graphite plugin: When the connection to graphite fails, + reconnection attempts are now limited to once per second. Thanks to + Florian Forster. #625 + * Write HTTP plugin: Multi-instance support of this plugin has been + improved. The "" block has been deprecated in favor of + "". Thanks to Marc Fournier. #902 + * Write HTTP plugin: Several TLS-related configuration options have been + added. Thanks to Ingmar Runge. #666 + * Write HTTP plugin: The "LowSpeedLimit" and "Timeout" options allow to + reset slow/stalled network connections. Thanks to loginator17 and Marc + Fournier. #752, #985 + * Write HTTP plugin: The size of the payload posted to the HTTP server + can now be controlled with the "BufferSize" option. Thanks to Florian + Forster. #722 + * Write Kafka plugin: This new plugin sends data to Apache Kafka, a + distributed messaging queue. Thanks to Pierre-Yves Ritschard, + ciomaire, Vincent Bernat, Marc Fournier. #670, #694, #794, #853, #014 + * Write Log plugin: This new plugin dispatches collected values to the + configured log destination(s). Thanks to Pierre-Yves Ritschard. #886 + * Write Riemann plugin: Extra meta strings are now added as attributes + in notifications. Thanks to John-John Tedro. #417 + * Write Riemann plugin: Notification message are now sent to the Riemann + server via the description field. Thanks to Adrian Miron. #575 + * Write Riemann plugin: Support for custom attributes has been added. + Thanks to Pierre-Yves Ritschard. #459 + * Write Riemann plugin: Support had been implemented for sending events + to Riemann in batches (when using TCP), and is enabled by default. + Thanks to Pierre-Yves Ritschard. #800 + * Write Riemann plugin: The "EventServicePrefix" option has been added, + which adds a prefix to event service names. Thanks to Moshe Zada. #706 + * Write Riemann plugin: Threshold checks can now be passed down to the + Riemann server. Thanks to Pierre-Yves Ritschard. #518 + * Write Sensu plugin: This new plugin submits values to Sensu, a stream + processing and monitoring system. Thanks to Fabrice A. Marie and Marc + Fournier. #912, #1001, #1016 + * Write TSDB plugin: This new plugin sends data to OpenTSDB, a scalable + time series database. Thanks to Kevin Bowling, Florian Forster, Dallin + Young, Michael Schenck and Pierre-Yves Ritschard. #703, #772, #945 + * ZFS ARC plugin: Support for ZFS-on-Linux has been added. Thanks to + Marc Fournier and Wilfried Goesgens. #552 + * Zookeeper plugin: This new plugin reads data from the Apache Zookeeper + "MNTR" command. Thanks to Jeremy Katz. #826 + +2016-07-26, Version 5.4.3 + * Build system: A deprecation warning has been removed. Thanks to + Florian Forster. + * Build system: An ordering issue when build the AMQP plugin was + corrected. Thanks to Shahul Hameed. + * Build system: Building the gmond plugin against recent libganglia + versions has been added. Thanks to Marc Fournier. #1129 + * Build system: "collectd-tg" now builds on AIX. Thanks to Manuel Luis + Sanmartín Rozada. #542 + * Build system: "version-gen.sh" portablility was improved. Thanks to + Marc Fournier and Ruben Kerkhof. + * Build system: Compiling utils_dns.c on Solaris has beed fixed. Thanks + to Yves Mettier, Dagobert Michelsen and Florian Forster. #348 + * Build system: Default JDK detection got improved. Thanks to Ruben + Kerkhof and Marc Fournier. + * Build system: Detection and handling of librrd 1.6 and later has been + fixed. Thanks to Ruben Kerkhof. + * Build system: notify_email build options got corrected to make it + build on non-GNU libc systems. Thanks to Marc Fournier. + * Build system: Protobuf building and logging has been improved. Thanks + to Ruben Kerkhof. + * Build system: The "make distcheck" target was fixed to properly handle + java build artifacts. Thanks to Florian Forster. + * Build system: The configure script got fixed to work properly when + called with "CC="gcc -Wall -Werror"" . Thanks to Marc Fournier. + * Build system: The configure script will now fail if pkg-config isn't + available. Thanks to Ruben Kerkhof. + * Build system: The users plugin now builds properly on Solaris when + libstatgrab is available. Thanks to Dagobert Michelsen. #1061 + * Build system: Various fixes have been done to improve library + detection on FreeBSD. Thanks to Ruben Kerkhof. + * collectd2html: Several perl errors have been corrected. Thanks to Ruud + van Melick. #1103 + * collectd: A global gauge format-string is now used to avoid loss of + precision. Thanks to Florian Forster. #1039 + * collectd: A race condition at plugin initialization time was fixed. + Thanks to Jan Andres. #1316 + * collectd: Autoloading now properly sets plugin context, allowing + plugins to determine the interval. Thanks to Florian Forster. #1069 + * collectd: Empty "Plugin" blocks are now supported by the configuration + file parser. Thanks to Manuel Luis Sanmartín Rozada. #1035 + * collectd: The address of the Free Software Foundation has been fixed + in GPL license headers. Thanks to Ruben Kerkhof. + * collectd: Writing to a closed TCP socket is now properly handled. + Thanks to Tamás Földesi. #1104 + * Documentation: iptables plugin: IPv6 configuration option has been + added to the collectd.conf(5) manpage. Thanks to 'Marc Fournier''. + #1496 + * AMQP plugin: The plugin was fixed to build against librabbitmq 0.6.0. + Thanks to Remi Collet. #1008 + * Apache plugin: A warning about a possible misconfiguration has been + added. Thanks to Marc Fournier. + * Apache plugin: The plugin was extended to parse the whole response, + required to support Apache versions greater than 2.4.17. Thanks to + Marc Fournier and Florian Forster. #1170, #1343 + * APC UPS plugin: Log messages are now prefixed with the plugin name. + Thanks to Sergey. #1329 + * Bind plugin: The type_instance now gets properly sanitized. Thanks to + Thomas Kho. #992 + * CPU plugin: Error messages on MacOSX have been improved. Thanks to + Florian Forster. #22 + * cURL plugin: A typo in an error message got corrected. Thanks to Marc + Fournier. + * cURL, cURL-JSON and cURL-XML plugins: A memory leak when allocating + more memory fails has been fixed. Thanks to Brandon Arp. + * DF plugin: An bug preventing filesystems which don't report inodes + such as btrfs has been corrected. Thanks to Marek Becka. #1096 + * DF plugin: Duplicate entries are no longer reported twice. Thanks to + Stefan Brüns and Florian Forster. #1402 + * DF plugin: Legacy code for skipping "rootfs" mount points has been + removed. Thanks to Marc Fournier. #1402 + * DF plugin: Legacy references to the "ReportReserved" option have been + removed. Thanks to Marc Fournier. + * DF plugin: Reading the mtab now uses a reentrant function when + possible. Thanks to Ruben Kerkhof. #1163 + * Ethstat plugin: Code to strip leading whitespace from device names. + This works around an issue in the VMXNet3 driver. Thanks to Thomas + Guthmann. #1059 + * Exec plugin: A file descriptor leak when the plugin is configured to + run as a non-existing user was corrected. Thanks to Gautam BT and Marc + Fournier. #762 + * Exec plugin: A problem in the error handling of an fdopen() failure + has been fixed. Thanks to @ciomaire. + * Interface plugin: Documentation about regular expressions in the + ignore list has been added. Thanks to Jakub Jankowski. + * IRQ plugin: The "FIQ" line is now skipped as it doesn't contain any + counter. Thanks to Ruben Kerkhof. #971 + * Modbus plugin: The debug output has been disabled by default. It is + now only enabled when building with "--enable-debug". Thanks to Eric + Sandeen and Marc Fournier. + * MongoDB plugin: A memory leak has been fixed and some adaptations to + the current API of the mongo-c-driver have been made. Thanks to + Florian Forster. #956 + * Network plugin: A check for the initialization of secure memory has + been added. Previously, failure to initialize this memory was ignored. + Thanks to @yujokang. #1665 + * Network plugin: A heap overflow has been fixed in the server code. + This issue can be triggered remotely and is potentially exploitable. + Thanks to Emilien Gaspar. CVE-2016-6254 + * Network plugin: The TimeToLive option handling was made more robust. + Thanks to Tim Laszlo. #654 + * NTPd plugin: Documentation about the required "mode 7" has been added. + Thanks to Jakub Jankowski. + * NTPd plugin: Reporting of "time_offset-loop" was corrected to match + the values from ntpq/ntpdc. Thanks to Pierre Fersing and Florian + Forster. #1300 + * OpenVPN plugin: The plugin was fixe to avoid signaling an error when + no clients were connected. Thanks to Florian Forster. #731 + * Perl plugin: Init callbacks have been changed to run essentially + single-threaded to avoid race conditions by init functions which + create additional threads. Thanks to Pavel Rochnyack. #1706 + * PF plugin and DNS plugin: These plugins have been fixed to build + properly on OpenBSD again. Thanks to Ruben Kerkhof. + * Processes plugin: A compilation error on systems without "regex.h" has + been fixed. Thanks to Corey Kosak. + * Processes plugin: A memory leak on Solaris has been fixed. Thanks to + Jim Quinn. + * Processes plugin and Swap plugin: These plugins have been corrected to + also work inside FreeBSD jails. Thanks to biancalana. #1019 + * Processes plugin: A warning about too long process names has been + added. Thanks to Marc Fournier. #1284 + * Processes plugin: Process counting on the FreeBSD and OpenBSD + platforms has been fixed. Thanks to Herve COMMOWICK. #1298 + * Processes plugin: The plugin was fixed to work properly on Solaris. + Thanks to Jan Andres. #919 + * Python plugin: A double-free bug got fixed. Thanks to Sven Trenkel. + #1285 + * RRDtool plugin: A race condition leading to corrupt RRD file creation + has been fixed. Thanks to Manuel Luis Sanmartín Rozada. #1031 + * SNMP plugin: The "Gauge32" signedness was corrected to match RFC1902. + Thanks to Nathan Ward. #1325 + * StatsD plugin: A deadlock on plugin shutdown has been fixed. Thanks to + Pavel Rochnyack #1703 + * StatsD plugin: A memory leak was corrected. Thanks to Florian Forster. + #997 + * StatsD plugin: A symbol lookup error was fixed by properly linking the + plugin against libm. Thanks to Florian Forster. + * StatsD plugin: "utils_latency": Support for including values above + 1000 in percentile calculation has been added. Thanks to Yoga + Ramalingam. #401 + * StatsD plugin: "utils_latency": Two division by zero error conditions + have been corrected. Thanks to Wilfried Goesgens. #655 + * StatsD plugin: Counters absolute counts are now also reported. Thanks + to Pierre-Yves Ritschard. #1311 + * StatsD plugin: The plugin now emits NaN values when no timer event is + recorded. Thanks to Florian Forster. #1038, #1039 + * StatsD plugin: The plugin was corrected to avoid crashing when + negative timer values are submitted. Thanks to Florian Forster. #1131 + * Tail CSV plugin: The plugin was fixed to work properly with multiple + "Collect" options and a bug got fixed when no "TimeFrom" is specified. + Thanks to Manuel Luis Sanmartín Rozada and Florian Forster. #1032 + * TCPConns plugin: A memory leak was fixed. Thanks to Florian Forster. + #1074 + * TCPConns plugin: An bug causing collectd to enter an inifinite loop on + OpenBSD was fixed. Thanks to Landry Breuil. #1094 + * Threshold plugin: Threshold configuration blocks can now be defined in + different files. Thanks to Michael Salmon. #551 + * vmem plugin: Support for pgsteal in recent Linux kernels has been + added. Thanks to Jakub Jankowski. #1307 + * vmem plugin: The DSType for nr_dirtied and nr_written was corrected to + report a derive. Thanks to Marek Becka. #1072 + * Write Graphite plugin: Error handling when submitting metrics to the + server is now more robust. Thanks to Sam Pointer. #1364 + * Write HTTP plugin: Freeing of memory holding HTTP headers during + shutdown has been fixed. Thanks to Tolga Ceylan. + * Write Redis plugin: Multi-Valued key was made easier to parse by + adding a "|" character as a delimiter. Thanks to brianpkelly and + Florian Forster. #1070 + * Write Redis plugin: The timestamp format was corrected. Thanks to + Florian Forster. + * ZFS ARC plugin: The plugin was will not emit warning about missing + "l2_size" stats anymore. Thanks to Jan Andres. #919 + * 152 patches have been applied to numerous plugins and core components, + fixing various programming errors which were reported by scan-build, + libasan, FBInfer, coverity-scan, clang and gcc-6: Thanks to Ruben + Kerkhof, Florian Forster, Marc Fournier, Corey Kosak, Laurent, + Claudius Zingerli and Fabien Wernli. + +2015-02-26, Version 5.4.2 + * Build system: Numerous fixes. Thanks to Bjørn Nordbø, Jim Radford, + KOMEDA Shinji, Lauri Tirkkonen, Manuel Luis Sanmartin Rozada, Marc + Fournier, Rainer Müller, Yoga Ramalingam and Yves Mettier. #326, + #373, #653, #828 + * collectd: A use-after-free has been fixed in the "parse_value()" + function. Thanks to Matthias Urlichs. + * collectd: Fix carriage return sign in types_list Thanks to Marc + Fournier and @NsLib. + * collectd: Fix programming error in src/configfile.c. Thanks to + Wilfried Goesgens. + * collectd: An off-by-one error has been fixed in the + "strstripnewline()" function. Patch by Florian Forster. + * collectd: Use the complain mechanism to report filter chain write + failures. Thanks to Sebastian Harl. + * collectd: Spelling and grammar of error messages have been fixed. + Thanks to Katelyn Perry and Tim Laszlo. + * collectdctl: Fixed buffering issues which caused trouble on AIX and + Solaris. Thanks to Yoga Ramalingam. + * Documentation: Details and example about multi-instance filterchain + targets have been added. Thanks to Marc Fournier. + * Documentation: The "CollectStatistics" option of the rrdcached has + been documented. Thanks to Micha Krause. #907 + * Documentation: The write_redis has been documented. Thanks to Marc + Fournier. + * Documentation: The "GraphiteSeparateInstances" and + "GraphiteAlwaysAppendDS" options of the amqp have been documented. + Thanks to Marc Fournier. + * Documentation: Documentation of the "AutoLoadPlugin" option has been + improved. Thanks to Florian Forster. #715 + * aggregation: "utils_vl_lookup": A race when creating user objects + has been fixed. Thanks to Sebastian Harl. #535 + * cpu: Temperature code for Mac OS X has been removed. + Thanks to Florian Forster and Marc Fournier. #22 + * cURL, cURL-JSON, cURL-XML and Write HTTP plugins: Call + "curl_global_init()" in the plugins' "init()" callback. Thanks to + Jeremy Katz. + * cURL and memcachec plugins: Fix calculation of gauge, average, + minimum and maximum. Previously, they were calculated from the start + of the daemon, which is not the documented behavior. Thanks to + Florian Forster. #663 + * curl-json: A bug, which triggered when two URLs with a long common + prefix were configured, was fixed. Thanks to Marc Fournier. #582 + * dbi: Compatibility with new versions of libdbi has been restored. + Thanks to Florian Forster. #950 + * Exec, UnixSock plugins: Fix parsing of the "time" option of the + "PUTNOTIF" command. Thanks to Adrian Miron. #477 + * ipmi: A conflict with the java over the "SIGUSR2" signal has been + fixed. Thanks to Vincent Bernat. #114 + * java: Conversion from Java's time representation to collectd's + representation has been fixed. Thanks to Manuel Luis Sanmartín + Rozada. + * java: Make sure "cjni_thread_detach()" is called on all paths. + Thanks to Florian Forster. + * LogFile and SysLog plugins: Avoid total silence in case of a + misconfiguration. Thanks to Marc Fournier and Wilfried Goesgens. + * network: Support for recent versions of gcrypt has been added. + Thanks to Vincent Bernat. #632 + * network: Robustness of the client connecting behavior has been + improved. Thanks to Florian Forster. #627 + * python: Don't create empty "meta_data_t" objects. Thanks to Florian + Forster. #716 + * python: Fix Py list length check in "cpy_build_meta()". Thanks to + Yoga Ramalingam. + * python: The "interval" member was fixed to export seconds as a + double. Thanks to Justin Burnham. + * RRDtool and RRDCacheD plugins: A memory leak when creating RRD files + has been fixed. Thanks to Yves Mettier. #661 + * snmp: Fix a memory leak. Thanks to Marc Fournier and Pierre-Yves + Ritschard. #610, #804 + * statsd: Support for samplerates in timer metrics was added. Thanks + to John Leach. #461 + * swap: Fix behavior under OpenVZ by making "cached" optional. Thanks + to Florian Forster. #733 + * threshold: Population of the "time" field in notifications has been + added. Thanks to Manuel Luis Sanmartín Rozada. + * libvirt: Only gather stats for running domains. Thanks to Ruben + Kerkhof. + * lvm: An issue with Volume Groups (VGs) without Logical Volumes (LVs) + has been fixed. Thanks to Jan Kundrát. + * write_graphite: Escape characters not supported by Graphite. Thanks + to Pierre-Yves Ritschard and Marc Fournier. + * write_http: Make callback names context-dependent. Thanks to Marc + Fournier. #821 + * write_redis: A formatting bug, which resulted in totally unusable + numbers being transmitted to Redis, was fixed. Thanks to Marc + Fournier. + * write_riemann: Receive acknowledge message when using TCP. Thanks to + John-John Tedro. + 2014-01-26, Version 5.4.1 * amqp plugin: Add support for RabbitMQ 0.4.x to avoid compiler warnings. Thanks to Sebastian Harl for implementing this. @@ -74,6 +1939,95 @@ * zfs_arc plugin: Support for FreeBSD has been added. Thanks to Xin Li for his patch. +2015-02-26, Version 5.3.2 + * Build system: Numerous fixes. Thanks to Bjørn Nordbø, Jim Radford, + KOMEDA Shinji, Lauri Tirkkonen, Manuel Luis Sanmartin Rozada, Marc + Fournier, Rainer Müller, Yoga Ramalingam and Yves Mettier. #326, + #373, #653, #828 + * collectd: A use-after-free has been fixed in the "parse_value()" + function. Thanks to Matthias Urlichs. + * collectd: Fix carriage return sign in types_list Thanks to Marc + Fournier and @NsLib. + * collectd: Fix programming error in src/configfile.c Thanks to + Wilfried Goesgens. + * collectd: An off-by-one error has been fixed in the + "strstripnewline()" function. Patch by Florian Forster. + * collectd: Use the complain mechanism to report filter chain write + failures. Thanks to Sebastian Harl. + * collectd: Spelling and grammar of error messages have been fixed. + Thanks to Katelyn Perry and Tim Laszlo. + * collectdctl: Fixed buffering issues which caused trouble on AIX and + Solaris. Thanks to Yoga Ramalingam. + * Documentation: Details and example about multi-instance filterchain + targets have been added. Thanks to Marc Fournier. + * Documentation: The "CollectStatistics" option of the rrdcached has + been documented. Thanks to Micha Krause. #907 + * Documentation: The write_redis has been documented. Thanks to Marc + Fournier. + * Documentation: The synopsis of the threshold has been fixed. Thanks + to Fabien Wernli. + * Documentation: The "GraphiteSeparateInstances" and + "GraphiteAlwaysAppendDS" options of the amqp have been documented. + Thanks to Marc Fournier. + * aggregation: "utils_vl_lookup": A race when creating user objects + has been fixed. Thanks to Sebastian Harl. #535 + * cpu: Temperature code for Mac OS X has been removed. + Thanks to Florian Forster and Marc Fournier. #22 + * csv: A regression which would lead to the "DataDir" option to be + ignored has been fixed. Thanks to Manuel Luis Sanmartin Rozada. + * curl, curl-json, curl-xml and write_http plugins: Call + "curl_global_init()" in the plugins' "init()" callback. Thanks to + Jeremy Katz. + * curl and memcachec plugins: Fix calculation of gauge, average, + minimum and maximum. Previously, they were calculated from the start + of the daemon, which is not the documented behavior. Thanks to + Florian Forster. #663 + * dbi plugin: Compatibility with new versions of libdbi has been + restored. Thanks to Florian Forster. #950 + * exec, unixsock plugins: Fix parsing of the "time" option of the + "PUTNOTIF" command. Thanks to Adrian Miron. #477 + * java: Conversion from Java's time representation to collectd's + representation has been fixed. Thanks to Manuel Luis Sanmartín + Rozada. + * ipmi: A conflict with the java over the "SIGUSR2" signal has been + fixed. Thanks to Vincent Bernat. #114 + * java: Make sure "cjni_thread_detach()" is called on all paths. + Thanks to Florian Forster. + * logfile and syslog plugins: Avoid total silence in case of a + misconfiguration. Thanks to Marc Fournier and Wilfried Goesgens. + * memcached: Connecting to a UNIX socket has been fixed. Thanks to Jim + Radford. + * network: Support for recent versions of gcrypt has been added. + Thanks to Vincent Bernat. #632 + * network: Robustness of the client connecting behavior has been + improved. Thanks to Florian Forster. #627 + * python: Don't create empty "meta_data_t" objects. Thanks to Florian + Forster. #716 + * python: Fix Py list length check in "cpy_build_meta()". Thanks to + Yoga Ramalingam. + * python: The "interval" member was fixed to export seconds as a + double. Thanks to Justin Burnham. + * replace and set targets: Fix error message. Thanks to Marc Fournier. + #448 + * rrdtool and rrdcached plugins: Honor the "DataDir" config option; + this fixes a regression. Thanks to Florian Forster. #380 + * rrdtool and rrdcached plugins: A memory leak when creating RRD files + has been fixed. Thanks to Yves Mettier. #661 + * snmp: Fix a memory leak. Thanks to Marc Fournier and Pierre-Yves + Ritschard. #610, #804 + * swap: Fix behavior under OpenVZ by making "cached" optional. Thanks + to Florian Forster. #733 + * threshold: Population of the "time" field in notifications has been + added. Thanks to Manuel Luis Sanmartín Rozada. + * libvirt: Only gather stats for running domains. Thanks to Ruben + Kerkhof. + * write_graphite: Escape characters not supported by Graphite. Thanks + to Pierre-Yves Ritschard and Marc Fournier. + * write_http: Make callback names context-dependent. Thanks to Marc + Fournier. #821 + * write_riemann: Receive acknowledge message when using TCP. Thanks to + John-John Tedro. + 2013-07-13, Version 5.3.1 * Documentation: Various fixes. * Configuration: Fix error handling: Errors in included files were diff --git a/Makefile.am b/Makefile.am index 35f24cb1a8..cb8205fccb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,17 +1,2492 @@ -ACLOCAL_AMFLAGS = -I libltdl/m4 +ACLOCAL_AMFLAGS = -I m4 +AM_YFLAGS = -d -SUBDIRS = libltdl src bindings . +if BUILD_WIN32 +cpkgdatadir=$(datadir) +cpkglibdir=$(libdir)/plugins +cpkglocalstatedir=${localstatedir} +else +cpkgdatadir=$(pkgdatadir) +cpkglibdir=$(pkglibdir) +cpkglocalstatedir=${localstatedir}/lib/${PACKAGE_NAME} +endif -AM_CPPFLAGS = $(LTDLINCL) +BUILT_SOURCES = \ + src/libcollectdclient/collectd/lcc_features.h \ + src/liboconfig/parser.h \ + $(dist_man_MANS) -EXTRA_DIST = contrib version-gen.sh + +CLEANFILES = \ + .perl-directory-stamp \ + bindings/buildperl/Collectd.pm \ + bindings/buildperl/Collectd/Plugins/OpenVZ.pm \ + bindings/buildperl/Collectd/Unixsock.pm \ + bindings/buildperl/Makefile.PL \ + collectd-api.jar \ + collectd.grpc.pb.cc \ + collectd.grpc.pb.h \ + collectd.pb.cc \ + collectd.pb.h \ + generic-jmx.jar \ + org/collectd/api/*.class \ + org/collectd/java/*.class \ + prometheus.pb-c.c \ + prometheus.pb-c.h \ + src/pinba.pb-c.c \ + src/pinba.pb-c.h \ + types.pb.cc \ + types.pb.h + + +EXTRA_DIST = \ + bindings/perl/Makefile.PL \ + bindings/perl/lib/Collectd.pm \ + bindings/perl/lib/Collectd/Plugins/Monitorus.pm \ + bindings/perl/lib/Collectd/Plugins/OpenVZ.pm \ + bindings/perl/lib/Collectd/Unixsock.pm \ + bindings/perl/uninstall_mod.pl \ + contrib \ + proto/collectd.proto \ + proto/prometheus.proto \ + proto/types.proto \ + src/collectd-email.pod \ + src/collectd-exec.pod \ + src/collectd-java.pod \ + src/collectd-lua.pod \ + src/collectd-nagios.pod \ + src/collectd-perl.pod \ + src/collectd-python.pod \ + src/collectd-snmp.pod \ + src/collectd-tg.pod \ + src/collectd-threshold.pod \ + src/collectd-unixsock.pod \ + src/collectd.conf.pod \ + src/collectd.pod \ + src/collectdctl.pod \ + src/collectdmon.pod \ + src/pinba.proto \ + src/postgresql_default.conf \ + src/types.db \ + src/types.db.pod \ + src/valgrind.FreeBSD.suppress \ + src/valgrind.suppress \ + testwrapper.sh \ + version-gen.sh + + +dist_man_MANS = \ + src/collectd.1 \ + src/collectd.conf.5 \ + src/collectd-email.5 \ + src/collectd-exec.5 \ + src/collectdctl.1 \ + src/collectd-java.5 \ + src/collectd-lua.5 \ + src/collectdmon.1 \ + src/collectd-nagios.1 \ + src/collectd-perl.5 \ + src/collectd-python.5 \ + src/collectd-snmp.5 \ + src/collectd-tg.1 \ + src/collectd-threshold.5 \ + src/collectd-unixsock.5 \ + src/types.db.5 + + +nodist_pkgconfig_DATA = \ + src/libcollectdclient/libcollectdclient.pc + +pkginclude_HEADERS = \ + src/libcollectdclient/collectd/client.h \ + src/libcollectdclient/collectd/lcc_features.h \ + src/libcollectdclient/collectd/network_buffer.h \ + src/libcollectdclient/collectd/network.h \ + src/libcollectdclient/collectd/network_parse.h \ + src/libcollectdclient/collectd/server.h \ + src/libcollectdclient/collectd/types.h + +lib_LTLIBRARIES = libcollectdclient.la + +if BUILD_WIN32 +# TODO: Build all executables on Windows as well. +sbin_PROGRAMS = \ + collectd + +bin_PROGRAMS = +else +sbin_PROGRAMS = \ + collectd \ + collectdmon + + +bin_PROGRAMS = \ + collectd-nagios \ + collectd-tg \ + collectdctl +endif # BUILD_WIN32 + + +noinst_LTLIBRARIES = \ + libavltree.la \ + libcmds.la \ + libcommon.la \ + libformat_graphite.la \ + libformat_json.la \ + libheap.la \ + libignorelist.la \ + liblatency.la \ + libllist.la \ + liblookup.la \ + libmetadata.la \ + libmount.la \ + liboconfig.la + + +check_LTLIBRARIES = \ + libplugin_mock.la + + +check_PROGRAMS = \ + test_common \ + test_format_graphite \ + test_meta_data \ + test_utils_avltree \ + test_utils_cmds \ + test_utils_heap \ + test_utils_latency \ + test_utils_message_parser \ + test_utils_mount \ + test_utils_subst \ + test_utils_time \ + test_utils_vl_lookup \ + test_libcollectd_network_parse \ + test_utils_config_cores + + +TESTS = $(check_PROGRAMS) + +LOG_COMPILER = env VALGRIND="@VALGRIND@" $(abs_srcdir)/testwrapper.sh + + +jardir = $(cpkgdatadir)/java + +pkglib_LTLIBRARIES = + + +PLUGIN_LDFLAGS = \ + -module \ + -avoid-version \ + -export-symbols-regex '\' +if BUILD_WIN32 +PLUGIN_LDFLAGS += -shared -no-undefined -lcollectd -L. +endif + + +AM_CPPFLAGS = \ + -I$(top_srcdir)/src -I$(top_srcdir)/src/daemon \ + -DPREFIX='"${prefix}"' \ + -DCONFIGFILE='"${sysconfdir}/${PACKAGE_NAME}.conf"' \ + -DLOCALSTATEDIR='"${localstatedir}"' \ + -DPKGLOCALSTATEDIR='"${cpkglocalstatedir}"' \ + -DPLUGINDIR='"${cpkglibdir}"' \ + -DPKGDATADIR='"${cpkgdatadir}"' +if BUILD_WIN32 +AM_CPPFLAGS += -DNOGDI +endif + +COMMON_DEPS = +if BUILD_WIN32 +COMMON_DEPS += collectd.exe +endif + +# Link to these libraries.. +COMMON_LIBS = $(PTHREAD_LIBS) +if BUILD_WIN32 +COMMON_LIBS += -lws2_32 +endif +if BUILD_WITH_GNULIB +COMMON_LIBS += -lgnu +endif +if BUILD_WITH_CAPABILITY +COMMON_LIBS += -lcap +endif +if BUILD_WITH_LIBRT +COMMON_LIBS += -lrt +endif +if BUILD_WITH_LIBPOSIX4 +COMMON_LIBS += -lposix4 +endif +if BUILD_WITH_LIBSOCKET +COMMON_LIBS += -lsocket +endif +if BUILD_WITH_LIBKSTAT +COMMON_LIBS += -lkstat +endif +if BUILD_WITH_LIBDEVINFO +COMMON_LIBS += -ldevinfo +endif + + +collectd_SOURCES = \ + src/daemon/cmd.h \ + src/daemon/collectd.c \ + src/daemon/collectd.h \ + src/daemon/configfile.c \ + src/daemon/configfile.h \ + src/daemon/filter_chain.c \ + src/daemon/filter_chain.h \ + src/daemon/globals.c \ + src/daemon/globals.h \ + src/utils/metadata/meta_data.c \ + src/utils/metadata/meta_data.h \ + src/daemon/plugin.c \ + src/daemon/plugin.h \ + src/daemon/utils_cache.c \ + src/daemon/utils_cache.h \ + src/daemon/utils_complain.c \ + src/daemon/utils_complain.h \ + src/daemon/utils_random.c \ + src/daemon/utils_random.h \ + src/daemon/utils_subst.c \ + src/daemon/utils_subst.h \ + src/daemon/utils_time.c \ + src/daemon/utils_time.h \ + src/daemon/types_list.c \ + src/daemon/types_list.h \ + src/daemon/utils_threshold.c \ + src/daemon/utils_threshold.h + + +collectd_CFLAGS = $(AM_CFLAGS) +collectd_CPPFLAGS = $(AM_CPPFLAGS) +collectd_LDFLAGS = -export-dynamic +collectd_LDADD = \ + libavltree.la \ + libcommon.la \ + libheap.la \ + libllist.la \ + liboconfig.la \ + -lm \ + $(COMMON_LIBS) \ + $(DLOPEN_LIBS) + +if BUILD_WIN32 +collectd_SOURCES += src/daemon/cmd_windows.c +collectd_LDFLAGS += -ldl -Wl,--out-implib,libcollectd.a +else +collectd_SOURCES += src/daemon/cmd.c +endif + +if BUILD_FEATURE_DAEMON +collectd_CPPFLAGS += -DPIDFILE='"${localstatedir}/run/${PACKAGE_NAME}.pid"' +endif + +# The daemon needs to call sg_init, so we need to link it against libstatgrab, +# too. -octo +if BUILD_WITH_LIBSTATGRAB +collectd_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +collectd_LDADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +endif + +if BUILD_WIN32 +collectd_LDFLAGS += -Wl,--out-implib,libcollectd.a +endif + +collectdmon_SOURCES = src/collectdmon.c + + +collectd_nagios_SOURCES = src/collectd-nagios.c +collectd_nagios_CPPFLAGS = $(AM_CPPFLAGS) \ + -I$(srcdir)/src/libcollectdclient \ + -I$(top_builddir)/src/libcollectdclient +collectd_nagios_LDADD = libcollectdclient.la +if BUILD_WITH_LIBSOCKET +collectd_nagios_LDADD += -lsocket +endif +if BUILD_AIX +collectd_nagios_LDADD += -lm +endif + + +collectdctl_SOURCES = src/collectdctl.c +collectdctl_CPPFLAGS = $(AM_CPPFLAGS) \ + -I$(srcdir)/src/libcollectdclient \ + -I$(top_builddir)/src/libcollectdclient +collectdctl_LDADD = libcollectdclient.la +if BUILD_WITH_LIBSOCKET +collectdctl_LDADD += -lsocket +endif +if BUILD_AIX +collectdctl_LDADD += -lm +endif + + +collectd_tg_SOURCES = src/collectd-tg.c +collectd_tg_CPPFLAGS = $(AM_CPPFLAGS) \ + -I$(srcdir)/src/libcollectdclient \ + -I$(top_builddir)/src/libcollectdclient +collectd_tg_LDADD = \ + $(PTHREAD_LIBS) \ + libheap.la \ + libcollectdclient.la +if BUILD_WITH_LIBSOCKET +collectd_tg_LDADD += -lsocket +endif +if BUILD_WITH_LIBRT +collectd_tg_LDADD += -lrt +endif +if BUILD_AIX +collectd_tg_LDADD += -lm +endif + + +test_common_SOURCES = \ + src/utils/common/common_test.c \ + src/testing.h +test_common_LDADD = libplugin_mock.la + +test_meta_data_SOURCES = \ + src/utils/metadata/meta_data_test.c \ + src/testing.h +test_meta_data_LDADD = libmetadata.la libplugin_mock.la + +test_utils_avltree_SOURCES = \ + src/utils/avltree/avltree_test.c \ + src/testing.h +test_utils_avltree_LDADD = libavltree.la $(COMMON_LIBS) + +test_utils_heap_SOURCES = \ + src/utils/heap/heap_test.c \ + src/testing.h +test_utils_heap_LDADD = libheap.la $(COMMON_LIBS) + +test_utils_message_parser_SOURCES = \ + src/utils/message_parser/message_parser_test.c \ + src/testing.h \ + src/daemon/configfile.c \ + src/daemon/types_list.c \ + src/utils_tail_match.c src/utils_tail_match.h \ + src/utils/tail/tail.c src/utils/tail/tail.h \ + src/utils/match/match.c src/utils/match/match.h \ + src/utils/latency/latency.c src/utils/latency/latency.h \ + src/utils/latency/latency_config.c src/utils/latency/latency_config.h +test_utils_message_parser_CPPFLAGS = $(AM_CPPFLAGS) +test_utils_message_parser_LDADD = liboconfig.la libplugin_mock.la -lm + +test_utils_time_SOURCES = \ + src/daemon/utils_time_test.c \ + src/testing.h + +test_utils_subst_SOURCES = \ + src/daemon/utils_subst_test.c \ + src/testing.h \ + src/daemon/utils_subst.c \ + src/daemon/utils_subst.h +test_utils_subst_LDADD = libplugin_mock.la + +test_utils_config_cores_SOURCES = \ + src/utils/config_cores/config_cores_test.c \ + src/testing.h +test_utils_config_cores_LDADD = libplugin_mock.la + +libavltree_la_SOURCES = \ + src/utils/avltree/avltree.c \ + src/utils/avltree/avltree.h + +libcommon_la_SOURCES = \ + src/utils/common/common.c \ + src/utils/common/common.h +libcommon_la_LIBADD = $(COMMON_LIBS) + +libheap_la_SOURCES = \ + src/utils/heap/heap.c \ + src/utils/heap/heap.h + +libignorelist_la_SOURCES = \ + src/utils/ignorelist/ignorelist.c \ + src/utils/ignorelist/ignorelist.h + +libllist_la_SOURCES = \ + src/daemon/utils_llist.c \ + src/daemon/utils_llist.h + +libmetadata_la_SOURCES = \ + src/utils/metadata/meta_data.c \ + src/utils/metadata/meta_data.h + +libplugin_mock_la_SOURCES = \ + src/daemon/plugin_mock.c \ + src/daemon/utils_cache_mock.c \ + src/daemon/utils_complain.c \ + src/daemon/utils_complain.h \ + src/daemon/utils_time.c \ + src/daemon/utils_time.h + +libplugin_mock_la_CPPFLAGS = $(AM_CPPFLAGS) -DMOCK_TIME +libplugin_mock_la_LIBADD = libcommon.la libignorelist.la $(COMMON_LIBS) + +libformat_graphite_la_SOURCES = \ + src/utils/format_graphite/format_graphite.c \ + src/utils/format_graphite/format_graphite.h + +test_format_graphite_SOURCES = \ + src/utils/format_graphite/format_graphite_test.c \ + src/testing.h +test_format_graphite_LDADD = \ + libformat_graphite.la \ + libmetadata.la \ + libplugin_mock.la \ + -lm + +libformat_json_la_SOURCES = \ + src/utils/format_json/format_json.c \ + src/utils/format_json/format_json.h +libformat_json_la_CPPFLAGS = $(AM_CPPFLAGS) +libformat_json_la_LDFLAGS = $(AM_LDFLAGS) +libformat_json_la_LIBADD = +if BUILD_WITH_LIBYAJL +libformat_json_la_CPPFLAGS += $(BUILD_WITH_LIBYAJL_CPPFLAGS) +libformat_json_la_LDFLAGS += $(BUILD_WITH_LIBYAJL_LDFLAGS) +libformat_json_la_LIBADD += $(BUILD_WITH_LIBYAJL_LIBS) + +check_PROGRAMS += test_format_json + +test_format_json_SOURCES = \ + src/utils/format_json/format_json_test.c \ + src/testing.h +test_format_json_LDADD = \ + libformat_json.la \ + libmetadata.la \ + libplugin_mock.la \ + -lm +endif + +if BUILD_PLUGIN_CEPH +test_plugin_ceph_SOURCES = src/ceph_test.c +test_plugin_ceph_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +test_plugin_ceph_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +test_plugin_ceph_LDADD = libplugin_mock.la $(BUILD_WITH_LIBYAJL_LIBS) +check_PROGRAMS += test_plugin_ceph +endif + +liblatency_la_SOURCES = \ + src/utils/latency/latency.c \ + src/utils/latency/latency.h \ + src/utils/latency/latency_config.c \ + src/utils/latency/latency_config.h +liblatency_la_LIBADD = \ + libcommon.la \ + -lm + +test_utils_latency_SOURCES = \ + src/utils/latency/latency_test.c \ + src/testing.h +test_utils_latency_LDADD = \ + liblatency.la \ + libplugin_mock.la \ + -lm + +libcmds_la_SOURCES = \ + src/utils/cmds/cmds.c \ + src/utils/cmds/cmds.h \ + src/utils/cmds/flush.c \ + src/utils/cmds/flush.h \ + src/utils/cmds/getthreshold.c \ + src/utils/cmds/getthreshold.h \ + src/utils/cmds/getval.c \ + src/utils/cmds/getval.h \ + src/utils/cmds/listval.c \ + src/utils/cmds/listval.h \ + src/utils/cmds/putnotif.c \ + src/utils/cmds/putnotif.h \ + src/utils/cmds/putval.c \ + src/utils/cmds/putval.h \ + src/utils/cmds/parse_option.c \ + src/utils/cmds/parse_option.h +libcmds_la_LIBADD = \ + libcommon.la \ + libmetadata.la \ + -lm + +test_utils_cmds_SOURCES = \ + src/utils/cmds/cmds_test.c \ + src/testing.h +test_utils_cmds_LDADD = \ + libcmds.la \ + libplugin_mock.la + +liblookup_la_SOURCES = \ + src/utils/lookup/vl_lookup.c \ + src/utils/lookup/vl_lookup.h +liblookup_la_LIBADD = libavltree.la + +test_utils_vl_lookup_SOURCES = \ + src/utils/lookup/vl_lookup_test.c \ + src/testing.h +test_utils_vl_lookup_LDADD = \ + liblookup.la \ + libplugin_mock.la +if BUILD_WITH_LIBKSTAT +test_utils_vl_lookup_LDADD += -lkstat +endif + +libmount_la_SOURCES = \ + src/utils/mount/mount.c \ + src/utils/mount/mount.h + +test_utils_mount_SOURCES = \ + src/utils/mount/mount_test.c \ + src/testing.h +test_utils_mount_LDADD = \ + libmount.la \ + libplugin_mock.la +if BUILD_WITH_LIBKSTAT +test_utils_mount_LDADD += -lkstat +endif + + +libcollectdclient_la_SOURCES = \ + src/libcollectdclient/client.c \ + src/libcollectdclient/network.c \ + src/libcollectdclient/network_buffer.c \ + src/libcollectdclient/network_parse.c \ + src/libcollectdclient/server.c \ + src/libcollectdclient/collectd/stdendian.h +libcollectdclient_la_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + -I$(srcdir)/src/libcollectdclient \ + -I$(top_builddir)/src/libcollectdclient \ + -I$(srcdir)/src/daemon +libcollectdclient_la_LDFLAGS = -version-info 2:0:1 +libcollectdclient_la_LIBADD = -lm +if BUILD_WIN32 +libcollectdclient_la_LDFLAGS += -shared -no-undefined +libcollectdclient_la_LIBADD += -lgnu -lws2_32 -liphlpapi +endif +if BUILD_WITH_LIBGCRYPT +libcollectdclient_la_CPPFLAGS += $(GCRYPT_CPPFLAGS) +libcollectdclient_la_LDFLAGS += $(GCRYPT_LDFLAGS) +libcollectdclient_la_LIBADD += $(GCRYPT_LIBS) +endif + +# network_parse_test.c includes network_parse.c, so no need to link with +# libcollectdclient.so. +test_libcollectd_network_parse_SOURCES = src/libcollectdclient/network_parse_test.c +test_libcollectd_network_parse_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + -I$(srcdir)/src/libcollectdclient \ + -I$(top_builddir)/src/libcollectdclient +if BUILD_WITH_LIBGCRYPT +test_libcollectd_network_parse_CPPFLAGS += $(GCRYPT_CPPFLAGS) +test_libcollectd_network_parse_LDFLAGS = $(GCRYPT_LDFLAGS) +test_libcollectd_network_parse_LDADD = $(GCRYPT_LIBS) +endif + +liboconfig_la_SOURCES = \ + src/liboconfig/oconfig.c \ + src/liboconfig/oconfig.h \ + src/liboconfig/aux_types.h \ + src/liboconfig/scanner.l \ + src/liboconfig/parser.y +liboconfig_la_CPPFLAGS = -I$(srcdir)/src/liboconfig $(AM_CPPFLAGS) +liboconfig_la_LDFLAGS = -avoid-version $(LEXLIB) + +if BUILD_WITH_LIBCURL +if BUILD_WITH_LIBSSL +if BUILD_WITH_LIBYAJL2 +noinst_LTLIBRARIES += liboauth.la +liboauth_la_SOURCES = \ + src/utils/oauth/oauth.c \ + src/utils/oauth/oauth.h +liboauth_la_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + $(BUILD_WITH_LIBCURL_CFLAGS) \ + $(BUILD_WITH_LIBSSL_CFLAGS) \ + $(BUILD_WITH_LIBYAJL_CPPFLAGS) +liboauth_la_LIBADD = \ + $(BUILD_WITH_LIBCURL_LIBS) \ + $(BUILD_WITH_LIBSSL_LIBS) \ + $(BUILD_WITH_LIBYAJL_LIBS) + +check_PROGRAMS += test_utils_oauth +TESTS += test_utils_oauth +test_utils_oauth_SOURCES = \ + src/utils/oauth/oauth_test.c +test_utils_oauth_LDADD = \ + liboauth.la \ + libcommon.la \ + libplugin_mock.la + +noinst_LTLIBRARIES += libgce.la +libgce_la_SOURCES = \ + src/utils/gce/gce.c \ + src/utils/gce/gce.h +libgce_la_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + $(BUILD_WITH_LIBCURL_CFLAGS) +libgce_la_LIBADD = \ + $(BUILD_WITH_LIBCURL_LIBS) +endif +endif +endif + +if BUILD_WITH_LIBYAJL2 +noinst_LTLIBRARIES += libformat_stackdriver.la +libformat_stackdriver_la_SOURCES = \ + src/utils/format_stackdriver/format_stackdriver.c \ + src/utils/format_stackdriver/format_stackdriver.h +libformat_stackdriver_la_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + $(BUILD_WITH_LIBYAJL_CPPFLAGS) +libformat_stackdriver_la_LIBADD = \ + libavltree.la \ + $(BUILD_WITH_LIBSSL_LIBS) \ + $(BUILD_WITH_LIBYAJL_LIBS) + +check_PROGRAMS += test_format_stackdriver +TESTS += test_format_stackdriver +test_format_stackdriver_SOURCES = \ + src/utils/format_stackdriver/format_stackdriver_test.c \ + src/testing.h +test_format_stackdriver_LDADD = \ + libformat_stackdriver.la \ + libplugin_mock.la \ + -lm +endif + +if BUILD_PLUGIN_AGGREGATION +pkglib_LTLIBRARIES += aggregation.la +aggregation_la_SOURCES = \ + src/aggregation.c \ + src/utils/lookup/vl_lookup.c \ + src/utils/lookup/vl_lookup.h +aggregation_la_LDFLAGS = $(PLUGIN_LDFLAGS) +aggregation_la_LIBADD = -lm +endif + +if BUILD_PLUGIN_AMQP +pkglib_LTLIBRARIES += amqp.la +amqp_la_SOURCES = src/amqp.c +amqp_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBRABBITMQ_CPPFLAGS) +amqp_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBRABBITMQ_LDFLAGS) +amqp_la_LIBADD = \ + $(BUILD_WITH_LIBRABBITMQ_LIBS) \ + libcmds.la \ + libformat_graphite.la \ + libformat_json.la +endif + +if BUILD_PLUGIN_AMQP1 +pkglib_LTLIBRARIES += amqp1.la +amqp1_la_SOURCES = \ + src/amqp1.c \ + src/utils/deq/deq.h +amqp1_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBQPIDPROTON_CPPFLAGS) +amqp1_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBQPIDPROTON_LDFLAGS) +amqp1_la_LIBADD = \ + $(BUILD_WITH_LIBQPIDPROTON_LIBS) \ + libcmds.la \ + libformat_graphite.la \ + libformat_json.la +endif + +if BUILD_PLUGIN_APACHE +pkglib_LTLIBRARIES += apache.la +apache_la_SOURCES = src/apache.c +apache_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBCURL_CFLAGS) +apache_la_LDFLAGS = $(PLUGIN_LDFLAGS) +apache_la_LIBADD = $(BUILD_WITH_LIBCURL_LIBS) +endif + + +if BUILD_PLUGIN_APCUPS +pkglib_LTLIBRARIES += apcups.la +apcups_la_SOURCES = src/apcups.c +apcups_la_LDFLAGS = $(PLUGIN_LDFLAGS) +apcups_la_LIBADD = +if BUILD_WITH_LIBSOCKET +apcups_la_LIBADD += -lsocket +endif +endif + +if BUILD_PLUGIN_APPLE_SENSORS +pkglib_LTLIBRARIES += apple_sensors.la +apple_sensors_la_SOURCES = src/apple_sensors.c +apple_sensors_la_LDFLAGS = $(PLUGIN_LDFLAGS) -framework IOKit +endif + +if BUILD_PLUGIN_AQUAERO +pkglib_LTLIBRARIES += aquaero.la +aquaero_la_SOURCES = src/aquaero.c +aquaero_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBAQUAERO5_CFLAGS) +aquaero_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBAQUAERO5_LDFLAGS) +aquaero_la_LIBADD = -laquaero5 +endif + +if BUILD_PLUGIN_ASCENT +pkglib_LTLIBRARIES += ascent.la +ascent_la_SOURCES = src/ascent.c +ascent_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(BUILD_WITH_LIBCURL_CFLAGS) \ + $(BUILD_WITH_LIBXML2_CFLAGS) +ascent_la_LDFLAGS = $(PLUGIN_LDFLAGS) +ascent_la_LIBADD = \ + $(BUILD_WITH_LIBCURL_LIBS) \ + $(BUILD_WITH_LIBXML2_LIBS) +endif + +if BUILD_PLUGIN_BAROMETER +pkglib_LTLIBRARIES += barometer.la +barometer_la_SOURCES = src/barometer.c +barometer_la_LDFLAGS = $(PLUGIN_LDFLAGS) +barometer_la_LIBADD = -lm $(BUILD_WITH_LIBI2C_LIBS) +endif + +if BUILD_PLUGIN_BATTERY +pkglib_LTLIBRARIES += battery.la +battery_la_SOURCES = \ + src/battery.c \ + src/battery_statefs.c +battery_la_LDFLAGS = $(PLUGIN_LDFLAGS) +if BUILD_WITH_LIBIOKIT +battery_la_LDFLAGS += -framework IOKit +endif +endif + +if BUILD_PLUGIN_BIND +pkglib_LTLIBRARIES += bind.la +bind_la_SOURCES = src/bind.c +bind_la_CFLAGS = $(AM_CFLAGS) \ + $(BUILD_WITH_LIBCURL_CFLAGS) $(BUILD_WITH_LIBXML2_CFLAGS) +bind_la_LDFLAGS = $(PLUGIN_LDFLAGS) +bind_la_LIBADD = $(BUILD_WITH_LIBCURL_LIBS) $(BUILD_WITH_LIBXML2_LIBS) +endif + +if BUILD_PLUGIN_BUDDYINFO +pkglib_LTLIBRARIES += buddyinfo.la +buddyinfo_la_SOURCES = src/buddyinfo.c +buddyinfo_la_LDFLAGS = $(PLUGIN_LDFLAGS) +buddyinfo_la_LIBADD = libignorelist.la +endif + +if BUILD_PLUGIN_CAPABILITIES +pkglib_LTLIBRARIES += capabilities.la +capabilities_la_SOURCES = src/capabilities.c \ + src/utils/dmi/dmi.c \ + src/utils/dmi/dmi.h +capabilities_la_CPPFLAGS = $(AM_CPPFLAGS) \ + $(BUILD_WITH_LIBMICROHTTPD_CPPFLAGS) $(BUILD_WITH_LIBJANSSON_CPPFLAGS) +capabilities_la_LDFLAGS = $(PLUGIN_LDFLAGS) \ + $(BUILD_WITH_LIBMICROHTTPD_LDFLAGS) $(BUILD_WITH_LIBJANSSON_LDFLAGS) +capabilities_la_LIBADD = $(BUILD_WITH_LIBMICROHTTPD_LIBS) \ + $(BUILD_WITH_LIBJANSSON_LIBS) + +test_plugin_capabilities_SOURCES = \ + src/capabilities_test.c \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_capabilities_CPPFLAGS = $(AM_CPPFLAGS) \ + $(BUILD_WITH_LIBJANSSON_CPPFLAGS) +test_plugin_capabilities_LDFLAGS = $(PLUGIN_LDFLAGS) \ + $(BUILD_WITH_LIBJANSSON_LDFLAGS) +test_plugin_capabilities_LDADD = liboconfig.la libplugin_mock.la \ + $(BUILD_WITH_LIBJANSSON_LIBS) +check_PROGRAMS += test_plugin_capabilities +TESTS += test_plugin_capabilities +endif + +if BUILD_PLUGIN_CEPH +pkglib_LTLIBRARIES += ceph.la +ceph_la_SOURCES = src/ceph.c +ceph_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +ceph_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +ceph_la_LIBADD = $(BUILD_WITH_LIBYAJL_LIBS) +endif + +if BUILD_PLUGIN_CGROUPS +pkglib_LTLIBRARIES += cgroups.la +cgroups_la_SOURCES = src/cgroups.c +cgroups_la_LDFLAGS = $(PLUGIN_LDFLAGS) +cgroups_la_LIBADD = libignorelist.la libmount.la +endif + +if BUILD_PLUGIN_CHRONY +pkglib_LTLIBRARIES += chrony.la +chrony_la_SOURCES = src/chrony.c +chrony_la_LDFLAGS = $(PLUGIN_LDFLAGS) +chrony_la_LIBADD = -lm +endif + +if BUILD_PLUGIN_CHECK_UPTIME +pkglib_LTLIBRARIES += check_uptime.la +check_uptime_la_SOURCES = src/check_uptime.c +check_uptime_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_CONNECTIVITY +pkglib_LTLIBRARIES += connectivity.la +connectivity_la_SOURCES = src/connectivity.c +connectivity_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBMNL_CFLAGS) +connectivity_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +connectivity_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +connectivity_la_LIBADD = $(BUILD_WITH_LIBYAJL_LIBS) $(BUILD_WITH_LIBMNL_LIBS) libignorelist.la +endif + +if BUILD_PLUGIN_CONNTRACK +pkglib_LTLIBRARIES += conntrack.la +conntrack_la_SOURCES = src/conntrack.c +conntrack_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_CONTEXTSWITCH +pkglib_LTLIBRARIES += contextswitch.la +contextswitch_la_SOURCES = src/contextswitch.c +contextswitch_la_LDFLAGS = $(PLUGIN_LDFLAGS) +contextswitch_la_LIBADD = +if BUILD_WITH_PERFSTAT +contextswitch_la_LIBADD += -lperfstat +endif +endif + +if BUILD_PLUGIN_CPU +pkglib_LTLIBRARIES += cpu.la +cpu_la_SOURCES = src/cpu.c +cpu_la_CFLAGS = $(AM_CFLAGS) +cpu_la_LDFLAGS = $(PLUGIN_LDFLAGS) +cpu_la_LIBADD = +if BUILD_WITH_LIBKSTAT +cpu_la_LIBADD += -lkstat +endif +if BUILD_WITH_LIBDEVINFO +cpu_la_LIBADD += -ldevinfo +endif +if BUILD_WITH_LIBSTATGRAB +cpu_la_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +cpu_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +endif +if BUILD_WITH_PERFSTAT +cpu_la_LIBADD += -lperfstat +endif +endif + +if BUILD_PLUGIN_CPUFREQ +pkglib_LTLIBRARIES += cpufreq.la +cpufreq_la_SOURCES = src/cpufreq.c +cpufreq_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_CPUSLEEP +pkglib_LTLIBRARIES += cpusleep.la +cpusleep_la_SOURCES = src/cpusleep.c +cpusleep_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_CSV +pkglib_LTLIBRARIES += csv.la +csv_la_SOURCES = src/csv.c +csv_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_CURL +pkglib_LTLIBRARIES += curl.la +curl_la_SOURCES = \ + src/curl.c \ + src/utils/curl_stats/curl_stats.c \ + src/utils/curl_stats/curl_stats.h \ + src/utils/match/match.c \ + src/utils/match/match.h +curl_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBCURL_CFLAGS) +curl_la_LDFLAGS = $(PLUGIN_LDFLAGS) +curl_la_LIBADD = liblatency.la $(BUILD_WITH_LIBCURL_LIBS) +endif + +if BUILD_PLUGIN_CURL_JSON +pkglib_LTLIBRARIES += curl_json.la +curl_json_la_SOURCES = \ + src/curl_json.c \ + src/utils/curl_stats/curl_stats.c \ + src/utils/curl_stats/curl_stats.h +curl_json_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBCURL_CFLAGS) +curl_json_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +curl_json_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +curl_json_la_LIBADD = $(BUILD_WITH_LIBCURL_LIBS) $(BUILD_WITH_LIBYAJL_LIBS) + +test_plugin_curl_json_SOURCES = src/curl_json_test.c \ + src/utils/curl_stats/curl_stats.c \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_curl_json_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +test_plugin_curl_json_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +test_plugin_curl_json_LDADD = libavltree.la liboconfig.la libplugin_mock.la $(BUILD_WITH_LIBCURL_LIBS) $(BUILD_WITH_LIBYAJL_LIBS) +check_PROGRAMS += test_plugin_curl_json +endif + +if BUILD_PLUGIN_CURL_XML +pkglib_LTLIBRARIES += curl_xml.la +curl_xml_la_SOURCES = \ + src/curl_xml.c \ + src/utils/curl_stats/curl_stats.c \ + src/utils/curl_stats/curl_stats.h +curl_xml_la_CFLAGS = $(AM_CFLAGS) \ + $(BUILD_WITH_LIBCURL_CFLAGS) $(BUILD_WITH_LIBXML2_CFLAGS) +curl_xml_la_LDFLAGS = $(PLUGIN_LDFLAGS) +curl_xml_la_LIBADD = $(BUILD_WITH_LIBCURL_LIBS) $(BUILD_WITH_LIBXML2_LIBS) +endif + +if BUILD_PLUGIN_DBI +pkglib_LTLIBRARIES += dbi.la +dbi_la_SOURCES = \ + src/dbi.c \ + src/utils/db_query/db_query.c \ + src/utils/db_query/db_query.h +dbi_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBDBI_CPPFLAGS) +dbi_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBDBI_LDFLAGS) +dbi_la_LIBADD = $(BUILD_WITH_LIBDBI_LIBS) +endif + +if BUILD_PLUGIN_DCPMM +pkglib_LTLIBRARIES += dcpmm.la +dcpmm_la_SOURCES = src/dcpmm.c +dcpmm_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBPMWAPI_CPPFLAGS) +dcpmm_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBPMWAPI_LDFLAGS) +dcpmm_la_LIBADD = -lpmwapi +endif + +if BUILD_PLUGIN_DF +pkglib_LTLIBRARIES += df.la +df_la_SOURCES = src/df.c +df_la_LDFLAGS = $(PLUGIN_LDFLAGS) +df_la_LIBADD = libignorelist.la libmount.la +endif + +if BUILD_PLUGIN_DISK +pkglib_LTLIBRARIES += disk.la +disk_la_SOURCES = src/disk.c +disk_la_CFLAGS = $(AM_CFLAGS) +disk_la_CPPFLAGS = $(AM_CPPFLAGS) +disk_la_LDFLAGS = $(PLUGIN_LDFLAGS) +disk_la_LIBADD = libignorelist.la +if BUILD_WITH_LIBKSTAT +disk_la_LIBADD += -lkstat +endif +if BUILD_WITH_LIBDEVINFO +disk_la_LIBADD += -ldevinfo +endif +if BUILD_WITH_LIBIOKIT +disk_la_LDFLAGS += -framework IOKit +endif +if BUILD_WITH_LIBSTATGRAB +disk_la_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +disk_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +endif +if BUILD_WITH_LIBUDEV +disk_la_CPPFLAGS += $(BUILD_WITH_LIBUDEV_CPPFLAGS) +disk_la_LDFLAGS += $(BUILD_WITH_LIBUDEV_LDFLAGS) +disk_la_LIBADD += $(BUILD_WITH_LIBUDEV_LIBS) +endif +if BUILD_FREEBSD +disk_la_LIBADD += -ldevstat -lgeom +endif +if BUILD_WITH_PERFSTAT +disk_la_LIBADD += -lperfstat +endif +endif + +if BUILD_PLUGIN_DNS +pkglib_LTLIBRARIES += dns.la +dns_la_SOURCES = \ + src/dns.c \ + src/utils/dns/dns.c \ + src/utils/dns/dns.h +dns_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBPCAP_CPPFLAGS) +dns_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBPCAP_LDFLAGS) +dns_la_LIBADD = $(BUILD_WITH_LIBPCAP_LIBS) +endif + +if BUILD_PLUGIN_DPDKEVENTS +pkglib_LTLIBRARIES += dpdkevents.la +dpdkevents_la_SOURCES = src/dpdkevents.c src/utils/dpdk/dpdk.c src/utils/dpdk/dpdk.h +dpdkevents_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBDPDK_CPPFLAGS) +dpdkevents_la_CFLAGS = $(AM_CFLAGS) $(LIBDPDK_CFLAGS) +dpdkevents_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(LIBDPDK_LDFLAGS) +dpdkevents_la_LIBADD = $(LIBDPDK_LIBS) +endif + +if BUILD_PLUGIN_DPDKSTAT +pkglib_LTLIBRARIES += dpdkstat.la +dpdkstat_la_SOURCES = src/dpdkstat.c src/utils/dpdk/dpdk.c src/utils/dpdk/dpdk.h +dpdkstat_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBDPDK_CPPFLAGS) +dpdkstat_la_CFLAGS = $(AM_CFLAGS) $(LIBDPDK_CFLAGS) +dpdkstat_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(LIBDPDK_LDFLAGS) +dpdkstat_la_LIBADD = $(LIBDPDK_LIBS) +endif +if BUILD_PLUGIN_DPDK_TELEMETRY +pkglib_LTLIBRARIES += dpdk_telemetry.la +dpdk_telemetry_la_SOURCES = src/dpdk_telemetry.c +dpdk_telemetry_la_CFLAGS = $(AM_CFLAGS) +dpdk_telemetry_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBJANSSON_LDFLAGS) +dpdk_telemetry_la_LIBADD = $(BUILD_WITH_LIBJANSSON_LIBS) +endif + +if BUILD_PLUGIN_DRBD +pkglib_LTLIBRARIES += drbd.la +drbd_la_SOURCES = src/drbd.c +drbd_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_EMAIL +pkglib_LTLIBRARIES += email.la +email_la_SOURCES = src/email.c +email_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_ENTROPY +pkglib_LTLIBRARIES += entropy.la +entropy_la_SOURCES = src/entropy.c +entropy_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_EXEC +pkglib_LTLIBRARIES += exec.la +exec_la_SOURCES = src/exec.c +exec_la_LDFLAGS = $(PLUGIN_LDFLAGS) +exec_la_LIBADD = libcmds.la +endif + +if BUILD_PLUGIN_ETHSTAT +pkglib_LTLIBRARIES += ethstat.la +ethstat_la_SOURCES = src/ethstat.c +ethstat_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_FHCOUNT +pkglib_LTLIBRARIES += fhcount.la +fhcount_la_SOURCES = src/fhcount.c +fhcount_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_FILECOUNT +pkglib_LTLIBRARIES += filecount.la +filecount_la_SOURCES = src/filecount.c +filecount_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_FSCACHE +pkglib_LTLIBRARIES += fscache.la +fscache_la_SOURCES = src/fscache.c +fscache_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_GMOND +pkglib_LTLIBRARIES += gmond.la +gmond_la_SOURCES = src/gmond.c +gmond_la_CPPFLAGS = $(AM_CPPFLAGS) $(GANGLIA_CPPFLAGS) +gmond_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(GANGLIA_LDFLAGS) +gmond_la_LIBADD = $(GANGLIA_LIBS) +endif + +if BUILD_PLUGIN_GPS +pkglib_LTLIBRARIES += gps.la +gps_la_SOURCES = src/gps.c +gps_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBGPS_CFLAGS) +gps_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBGPS_LDFLAGS) +gps_la_LIBADD = -lpthread $(BUILD_WITH_LIBGPS_LIBS) +endif + +if BUILD_PLUGIN_GPU_NVIDIA +pkglib_LTLIBRARIES += gpu_nvidia.la +gpu_nvidia_la_SOURCES = src/gpu_nvidia.c +gpu_nvidia_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_CPPFLAGS) $(BUILD_WITH_CUDA_CPPFLAGS) +gpu_nvidia_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_CUDA_LDFLAGS) +gpu_nvidia_la_LIBADD = $(BUILD_WITH_CUDA_LIBS) +endif + +if BUILD_PLUGIN_GRPC +pkglib_LTLIBRARIES += grpc.la +grpc_la_SOURCES = src/grpc.cc +nodist_grpc_la_SOURCES = \ + collectd.grpc.pb.cc \ + collectd.pb.cc \ + types.pb.cc +grpc_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBGRPCPP_CPPFLAGS) $(BUILD_WITH_LIBPROTOBUF_CPPFLAGS) +grpc_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBGRPCPP_LDFLAGS) $(BUILD_WITH_LIBPROTOBUF_LDFLAGS) +grpc_la_LIBADD = $(BUILD_WITH_LIBGRPCPP_LIBS) $(BUILD_WITH_LIBPROTOBUF_LIBS) +endif + +if BUILD_PLUGIN_HDDTEMP +pkglib_LTLIBRARIES += hddtemp.la +hddtemp_la_SOURCES = src/hddtemp.c +hddtemp_la_LDFLAGS = $(PLUGIN_LDFLAGS) +hddtemp_la_LIBADD = +if BUILD_WITH_LIBSOCKET +hddtemp_la_LIBADD += -lsocket +endif +endif + +if BUILD_PLUGIN_HUGEPAGES +pkglib_LTLIBRARIES += hugepages.la +hugepages_la_SOURCES = src/hugepages.c +hugepages_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_INTEL_PMU +pkglib_LTLIBRARIES += intel_pmu.la +intel_pmu_la_SOURCES = \ + src/intel_pmu.c \ + src/utils/config_cores/config_cores.h \ + src/utils/config_cores/config_cores.c +intel_pmu_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBJEVENTS_CPPFLAGS) +intel_pmu_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBJEVENTS_LDFLAGS) +intel_pmu_la_LIBADD = $(BUILD_WITH_LIBJEVENTS_LIBS) +endif + +if BUILD_PLUGIN_INTEL_RDT +pkglib_LTLIBRARIES += intel_rdt.la +intel_rdt_la_SOURCES = \ + src/intel_rdt.c \ + src/utils/proc_pids/proc_pids.c \ + src/utils/proc_pids/proc_pids.h \ + src/utils/config_cores/config_cores.h \ + src/utils/config_cores/config_cores.c +intel_rdt_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBPQOS_CPPFLAGS) +intel_rdt_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBPQOS_LDFLAGS) +intel_rdt_la_LIBADD = $(BUILD_WITH_LIBPQOS_LIBS) + +test_plugin_intel_rdt_SOURCES = \ + src/intel_rdt_test.c \ + src/utils/config_cores/config_cores.c \ + src/utils/proc_pids/proc_pids.c \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_intel_rdt_CPPFLAGS = $(AM_CPPFLAGS) +test_plugin_intel_rdt_LDFLAGS = $(PLUGIN_LDFLAGS) +test_plugin_intel_rdt_LDADD = liboconfig.la libplugin_mock.la +check_PROGRAMS += test_plugin_intel_rdt +TESTS += test_plugin_intel_rdt + +test_utils_proc_pids_SOURCES = \ + src/utils/proc_pids/proc_pids_test.c \ + src/testing.h +test_utils_proc_pids_LDADD = libplugin_mock.la +check_PROGRAMS += test_utils_proc_pids +TESTS += test_utils_proc_pids +endif + +if BUILD_PLUGIN_INTERFACE +pkglib_LTLIBRARIES += interface.la +interface_la_SOURCES = src/interface.c +interface_la_CFLAGS = $(AM_CFLAGS) +interface_la_LDFLAGS = $(PLUGIN_LDFLAGS) +interface_la_LIBADD = libignorelist.la +if BUILD_WITH_LIBSTATGRAB +interface_la_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +interface_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +else +if BUILD_WITH_LIBKSTAT +interface_la_LIBADD += -lkstat +endif +if BUILD_WITH_LIBDEVINFO +interface_la_LIBADD += -ldevinfo +endif # BUILD_WITH_LIBDEVINFO +endif # !BUILD_WITH_LIBSTATGRAB +if BUILD_WITH_PERFSTAT +interface_la_LIBADD += -lperfstat +endif +endif # BUILD_PLUGIN_INTERFACE + +if BUILD_PLUGIN_IPC +pkglib_LTLIBRARIES += ipc.la +ipc_la_SOURCES = src/ipc.c +ipc_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_IPTABLES +pkglib_LTLIBRARIES += iptables.la +iptables_la_SOURCES = src/iptables.c +iptables_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBIPTC_CPPFLAGS) +iptables_la_LDFLAGS = $(PLUGIN_LDFLAGS) +iptables_la_LIBADD = $(BUILD_WITH_LIBIPTC_LDFLAGS) +endif + +if BUILD_PLUGIN_IPMI +pkglib_LTLIBRARIES += ipmi.la +ipmi_la_SOURCES = src/ipmi.c +ipmi_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_OPENIPMI_CFLAGS) +ipmi_la_LDFLAGS = $(PLUGIN_LDFLAGS) +ipmi_la_LIBADD = libignorelist.la $(BUILD_WITH_OPENIPMI_LIBS) +endif + +if BUILD_PLUGIN_IPSTATS +pkglib_LTLIBRARIES += ipstats.la +ipstats_la_SOURCES = src/ipstats.c +ipstats_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_IPVS +pkglib_LTLIBRARIES += ipvs.la +ipvs_la_SOURCES = src/ipvs.c +ipvs_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_IRQ +pkglib_LTLIBRARIES += irq.la +irq_la_SOURCES = src/irq.c +irq_la_LDFLAGS = $(PLUGIN_LDFLAGS) +irq_la_LIBADD = libignorelist.la +endif + +if BUILD_PLUGIN_JAVA +pkglib_LTLIBRARIES += java.la +java_la_SOURCES = src/java.c +java_la_CPPFLAGS = $(AM_CPPFLAGS) $(JAVA_CPPFLAGS) +java_la_CFLAGS = $(AM_CFLAGS) $(JAVA_CFLAGS) +java_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(JAVA_LDFLAGS) +java_la_LIBADD = $(JAVA_LIBS) +endif + +if BUILD_PLUGIN_LOAD +pkglib_LTLIBRARIES += load.la +load_la_SOURCES = src/load.c +load_la_CFLAGS = $(AM_CFLAGS) +load_la_LDFLAGS = $(PLUGIN_LDFLAGS) +load_la_LIBADD = +if BUILD_WITH_LIBSTATGRAB +load_la_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +load_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +endif # BUILD_WITH_LIBSTATGRAB +if BUILD_WITH_PERFSTAT +load_la_LIBADD += -lperfstat +endif +endif # BUILD_PLUGIN_LOAD + +if BUILD_PLUGIN_LOGFILE +pkglib_LTLIBRARIES += logfile.la +logfile_la_SOURCES = src/logfile.c +logfile_la_LDFLAGS = $(PLUGIN_LDFLAGS) +logfile_la_DEPENDENCIES = $(COMMON_DEPS) +endif + +if BUILD_PLUGIN_LOGPARSER +pkglib_LTLIBRARIES += logparser.la +logparser_la_SOURCES = src/logparser.c \ + src/utils/message_parser/message_parser.c src/utils/message_parser/message_parser.h \ + src/utils_tail_match.c src/utils_tail_match.h \ + src/utils/tail/tail.c src/utils/tail/tail.h \ + src/utils/match/match.c src/utils/match/match.h \ + src/utils/latency/latency.c src/utils/latency/latency.h \ + src/utils/latency/latency_config.c src/utils/latency/latency_config.h +logparser_la_CPPFLAGS = $(AM_CPPFLAGS) +logparser_la_LDFLAGS = $(PLUGIN_LDFLAGS) -lm + +test_plugin_logparser_SOURCES = src/logparser_test.c \ + src/utils/message_parser/message_parser.c \ + src/utils_tail_match.c src/utils_tail_match.h \ + src/utils/tail/tail.c src/utils/tail/tail.h \ + src/utils/match/match.c src/utils/match/match.h \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_logparser_CPPFLAGS = $(AM_CPPFLAGS) +test_plugin_logparser_LDFLAGS = $(PLUGIN_LDFLAGS) +test_plugin_logparser_LDADD = liboconfig.la libplugin_mock.la liblatency.la +check_PROGRAMS += test_plugin_logparser +TESTS += test_plugin_logparser +endif + +if BUILD_PLUGIN_LOG_LOGSTASH +pkglib_LTLIBRARIES += log_logstash.la +log_logstash_la_SOURCES = src/log_logstash.c +log_logstash_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +log_logstash_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +log_logstash_la_LIBADD = $(BUILD_WITH_LIBYAJL_LIBS) +endif + +if BUILD_PLUGIN_LPAR +pkglib_LTLIBRARIES += lpar.la +lpar_la_SOURCES = src/lpar.c +lpar_la_LDFLAGS = $(PLUGIN_LDFLAGS) +lpar_la_LIBADD = -lperfstat +endif + +if BUILD_PLUGIN_LUA +pkglib_LTLIBRARIES += lua.la +lua_la_SOURCES = \ + src/lua.c \ + src/utils_lua.c \ + src/utils_lua.h +lua_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBLUA_CFLAGS) +lua_la_LDFLAGS = $(PLUGIN_LDFLAGS) +lua_la_LIBADD = $(BUILD_WITH_LIBLUA_LIBS) +endif + +if BUILD_PLUGIN_MADWIFI +pkglib_LTLIBRARIES += madwifi.la +madwifi_la_SOURCES = \ + src/madwifi.c \ + src/madwifi.h +madwifi_la_LDFLAGS = $(PLUGIN_LDFLAGS) +madwifi_la_LIBADD = libignorelist.la +endif + +if BUILD_PLUGIN_MATCH_EMPTY_COUNTER +pkglib_LTLIBRARIES += match_empty_counter.la +match_empty_counter_la_SOURCES = src/match_empty_counter.c +match_empty_counter_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_MATCH_HASHED +pkglib_LTLIBRARIES += match_hashed.la +match_hashed_la_SOURCES = src/match_hashed.c +match_hashed_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_MATCH_REGEX +pkglib_LTLIBRARIES += match_regex.la +match_regex_la_SOURCES = src/match_regex.c +match_regex_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_MATCH_TIMEDIFF +pkglib_LTLIBRARIES += match_timediff.la +match_timediff_la_SOURCES = src/match_timediff.c +match_timediff_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_MATCH_VALUE +pkglib_LTLIBRARIES += match_value.la +match_value_la_SOURCES = src/match_value.c +match_value_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_MBMON +pkglib_LTLIBRARIES += mbmon.la +mbmon_la_SOURCES = src/mbmon.c +mbmon_la_LDFLAGS = $(PLUGIN_LDFLAGS) +mbmon_la_LIBADD = +if BUILD_WITH_LIBSOCKET +mbmon_la_LIBADD += -lsocket +endif +endif + +if BUILD_PLUGIN_MCELOG +pkglib_LTLIBRARIES += mcelog.la +mcelog_la_SOURCES = src/mcelog.c +mcelog_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_MD +pkglib_LTLIBRARIES += md.la +md_la_SOURCES = src/md.c +md_la_LDFLAGS = $(PLUGIN_LDFLAGS) +md_la_LIBADD = libignorelist.la +endif + +if BUILD_PLUGIN_MDEVENTS +pkglib_LTLIBRARIES += mdevents.la +mdevents_la_SOURCES = src/mdevents.c +mdevents_la_CFLAGS = $(AM_FLAGS) +mdevents_la_LDFLAGS = $(PLUGIN_LDFLAGS) +mdevents_la_LIBADD = libignorelist.la + +test_plugin_mdevents_SOURCES = src/mdevents_test.c +test_plugin_mdevents_CFLAGS = $(AM_FLAGS) +test_plugin_mdevents_LDFLAGS = $(PLUGIN_LDFLAGS) +test_plugin_mdevents_LDADD = libplugin_mock.la +check_PROGRAMS += test_plugin_mdevents +TESTS += test_plugin_mdevents +endif + +if BUILD_PLUGIN_MEMCACHEC +pkglib_LTLIBRARIES += memcachec.la +memcachec_la_SOURCES = \ + src/memcachec.c \ + src/utils/match/match.c \ + src/utils/match/match.h +memcachec_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBMEMCACHED_CPPFLAGS) +memcachec_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBMEMCACHED_LDFLAGS) +memcachec_la_LIBADD = liblatency.la $(BUILD_WITH_LIBMEMCACHED_LIBS) +endif + +if BUILD_PLUGIN_MEMCACHED +pkglib_LTLIBRARIES += memcached.la +memcached_la_SOURCES = src/memcached.c +memcached_la_LDFLAGS = $(PLUGIN_LDFLAGS) +memcached_la_LIBADD = +if BUILD_WITH_LIBSOCKET +memcached_la_LIBADD += -lsocket +endif +endif + +if BUILD_PLUGIN_MEMORY +pkglib_LTLIBRARIES += memory.la +memory_la_SOURCES = src/memory.c +memory_la_CFLAGS = $(AM_CFLAGS) +memory_la_LDFLAGS = $(PLUGIN_LDFLAGS) +memory_la_LIBADD = +if BUILD_WITH_LIBKSTAT +memory_la_LIBADD += -lkstat +endif +if BUILD_WITH_LIBDEVINFO +memory_la_LIBADD += -ldevinfo +endif +if BUILD_WITH_LIBSTATGRAB +memory_la_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +memory_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +endif +if BUILD_WITH_PERFSTAT +memory_la_LIBADD += -lperfstat +endif +endif + +if BUILD_PLUGIN_MIC +pkglib_LTLIBRARIES += mic.la +mic_la_SOURCES = src/mic.c +mic_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_MIC_CPPFLAGS) +mic_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_MIC_LDFLAGS) +mic_la_LIBADD = libignorelist.la $(BUILD_WITH_MIC_LIBS) +endif + +if BUILD_PLUGIN_MODBUS +pkglib_LTLIBRARIES += modbus.la +modbus_la_SOURCES = src/modbus.c +modbus_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBMODBUS_CFLAGS) +modbus_la_LDFLAGS = $(PLUGIN_LDFLAGS) +modbus_la_LIBADD = $(BUILD_WITH_LIBMODBUS_LIBS) +endif + +if BUILD_PLUGIN_MQTT +pkglib_LTLIBRARIES += mqtt.la +mqtt_la_SOURCES = src/mqtt.c +mqtt_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBMOSQUITTO_CPPFLAGS) +mqtt_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBMOSQUITTO_LDFLAGS) +mqtt_la_LIBADD = $(BUILD_WITH_LIBMOSQUITTO_LIBS) +endif + +if BUILD_PLUGIN_MULTIMETER +pkglib_LTLIBRARIES += multimeter.la +multimeter_la_SOURCES = src/multimeter.c +multimeter_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_MYSQL +pkglib_LTLIBRARIES += mysql.la +mysql_la_SOURCES = src/mysql.c +mysql_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBMYSQL_CFLAGS) +mysql_la_LDFLAGS = $(PLUGIN_LDFLAGS) +mysql_la_LIBADD = $(BUILD_WITH_LIBMYSQL_LIBS) +endif + +if BUILD_PLUGIN_NETAPP +pkglib_LTLIBRARIES += netapp.la +netapp_la_SOURCES = src/netapp.c +netapp_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBNETAPP_CPPFLAGS) +netapp_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(LIBNETAPP_LDFLAGS) +netapp_la_LIBADD = libignorelist.la $(LIBNETAPP_LIBS) +endif + +if BUILD_PLUGIN_NETLINK +pkglib_LTLIBRARIES += netlink.la +netlink_la_SOURCES = src/netlink.c +netlink_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBMNL_CFLAGS) +netlink_la_LDFLAGS = $(PLUGIN_LDFLAGS) +netlink_la_LIBADD = $(BUILD_WITH_LIBMNL_LIBS) +endif + +if BUILD_PLUGIN_NETWORK +pkglib_LTLIBRARIES += network.la +network_la_SOURCES = \ + src/network.c \ + src/network.h \ + src/utils_fbhash.c \ + src/utils_fbhash.h +network_la_CPPFLAGS = $(AM_CPPFLAGS) +network_la_LDFLAGS = $(PLUGIN_LDFLAGS) +network_la_LIBADD = +if BUILD_WITH_LIBSOCKET +network_la_LIBADD += -lsocket +endif +if BUILD_WITH_LIBGCRYPT +network_la_CPPFLAGS += $(GCRYPT_CPPFLAGS) +network_la_LDFLAGS += $(GCRYPT_LDFLAGS) +network_la_LIBADD += $(GCRYPT_LIBS) +endif + +test_plugin_network_SOURCES = \ + src/network_test.c \ + src/utils_fbhash.c \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_network_CPPFLAGS = $(AM_CPPFLAGS) $(GCRYPT_CPPFLAGS) +test_plugin_network_LDFLAGS = $(PLUGIN_LDFLAGS) $(GCRYPT_LDFLAGS) +test_plugin_network_LDADD = \ + libavltree.la \ + liboconfig.la \ + libplugin_mock.la \ + libmetadata.la \ + $(GCRYPT_LIBS) +if BUILD_WITH_LIBSOCKET +test_plugin_network_LDADD += -lsocket +endif +if BUILD_WITH_LIBNSL +test_plugin_network_LDADD += -lnsl +endif +check_PROGRAMS += test_plugin_network +endif + +if BUILD_PLUGIN_NFS +pkglib_LTLIBRARIES += nfs.la +nfs_la_SOURCES = src/nfs.c +nfs_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_NGINX +pkglib_LTLIBRARIES += nginx.la +nginx_la_SOURCES = src/nginx.c +nginx_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBCURL_CFLAGS) +nginx_la_LDFLAGS = $(PLUGIN_LDFLAGS) +nginx_la_LIBADD = $(BUILD_WITH_LIBCURL_LIBS) +endif + +if BUILD_PLUGIN_NOTIFY_DESKTOP +pkglib_LTLIBRARIES += notify_desktop.la +notify_desktop_la_SOURCES = src/notify_desktop.c +notify_desktop_la_CFLAGS = $(AM_CFLAGS) $(LIBNOTIFY_CFLAGS) +notify_desktop_la_LDFLAGS = $(PLUGIN_LDFLAGS) +notify_desktop_la_LIBADD = $(LIBNOTIFY_LIBS) +endif + +if BUILD_PLUGIN_NOTIFY_EMAIL +pkglib_LTLIBRARIES += notify_email.la +notify_email_la_SOURCES = src/notify_email.c +notify_email_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBESMTP_CPPFLAGS) +notify_email_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBESMTP_LDFLAGS) +notify_email_la_LIBADD = $(BUILD_WITH_LIBESMTP_LIBS) +endif + +if BUILD_PLUGIN_NOTIFY_NAGIOS +pkglib_LTLIBRARIES += notify_nagios.la +notify_nagios_la_SOURCES = src/notify_nagios.c +notify_nagios_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_NTPD +pkglib_LTLIBRARIES += ntpd.la +ntpd_la_SOURCES = src/ntpd.c +ntpd_la_LDFLAGS = $(PLUGIN_LDFLAGS) +ntpd_la_LIBADD = +if BUILD_WITH_LIBSOCKET +ntpd_la_LIBADD += -lsocket +endif +endif + +if BUILD_PLUGIN_NUMA +pkglib_LTLIBRARIES += numa.la +numa_la_SOURCES = src/numa.c +numa_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_NUT +pkglib_LTLIBRARIES += nut.la +nut_la_SOURCES = src/nut.c +nut_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBUPSCLIENT_CFLAGS) +nut_la_LDFLAGS = $(PLUGIN_LDFLAGS) +nut_la_LIBADD = $(BUILD_WITH_LIBUPSCLIENT_LIBS) +endif + +if BUILD_PLUGIN_OLSRD +pkglib_LTLIBRARIES += olsrd.la +olsrd_la_SOURCES = src/olsrd.c +olsrd_la_LDFLAGS = $(PLUGIN_LDFLAGS) +olsrd_la_LIBADD = +if BUILD_WITH_LIBSOCKET +olsrd_la_LIBADD += -lsocket +endif +endif + +if BUILD_PLUGIN_ONEWIRE +pkglib_LTLIBRARIES += onewire.la +onewire_la_SOURCES = src/onewire.c +onewire_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBOWCAPI_CPPFLAGS) +onewire_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBOWCAPI_LDFLAGS) +onewire_la_LIBADD = libignorelist.la $(BUILD_WITH_LIBOWCAPI_LIBS) +endif + +if BUILD_PLUGIN_OPENLDAP +pkglib_LTLIBRARIES += openldap.la +openldap_la_SOURCES = src/openldap.c +openldap_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBLDAP_CPPFLAGS) +openldap_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBLDAP_LDFLAGS) +openldap_la_LIBADD = -lldap +endif + +if BUILD_PLUGIN_OPENVPN +pkglib_LTLIBRARIES += openvpn.la +openvpn_la_SOURCES = src/openvpn.c +openvpn_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_ORACLE +pkglib_LTLIBRARIES += oracle.la +oracle_la_SOURCES = \ + src/oracle.c \ + src/utils/db_query/db_query.c \ + src/utils/db_query/db_query.h +oracle_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_ORACLE_CPPFLAGS) +oracle_la_LIBADD = $(BUILD_WITH_ORACLE_LIBS) +oracle_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_OVS_EVENTS +pkglib_LTLIBRARIES += ovs_events.la +ovs_events_la_SOURCES = \ + src/ovs_events.c \ + src/utils/ovs/ovs.c \ + src/utils/ovs/ovs.h +ovs_events_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +ovs_events_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +ovs_events_la_LIBADD = $(BUILD_WITH_LIBYAJL_LIBS) +endif + +if BUILD_PLUGIN_OVS_STATS +pkglib_LTLIBRARIES += ovs_stats.la +ovs_stats_la_SOURCES = \ + src/ovs_stats.c \ + src/utils/ovs/ovs.c \ + src/utils/ovs/ovs.h +ovs_stats_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +ovs_stats_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +ovs_stats_la_LIBADD = $(BUILD_WITH_LIBYAJL_LIBS) +endif + +if BUILD_PLUGIN_PCIE_ERRORS +pkglib_LTLIBRARIES += pcie_errors.la +pcie_errors_la_SOURCES = src/pcie_errors.c +pcie_errors_la_CPPFLAGS = $(AM_CPPFLAGS) +pcie_errors_la_LDFLAGS = $(PLUGIN_LDFLAGS) + +test_plugin_pcie_errors_SOURCES = \ + src/pcie_errors_test.c \ + src/daemon/utils_llist.c \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_pcie_errors_CPPFLAGS = $(AM_CPPFLAGS) +test_plugin_pcie_errors_LDFLAGS = $(PLUGIN_LDFLAGS) +test_plugin_pcie_errors_LDADD = liboconfig.la libplugin_mock.la +check_PROGRAMS += test_plugin_pcie_errors +TESTS += test_plugin_pcie_errors +endif + +if BUILD_PLUGIN_PERL +pkglib_LTLIBRARIES += perl.la +perl_la_SOURCES = src/perl.c +# Despite C99 providing the "bool" type thru stdbool.h, Perl defines its own +# version of that type if HAS_BOOL is not defined... *sigh* +perl_la_CPPFLAGS = $(AM_CPPFLAGS) -DHAS_BOOL=1 +# Despite off_t being 64 bit wide on 64 bit platforms, Perl insist on using +# off64_t which is only exposed when _LARGEFILE64_SOURCE is defined... *sigh* +# On older platforms we also need _REENTRANT. _GNU_SOURCE sets both of these. +perl_la_CPPFLAGS += -D_GNU_SOURCE +perl_la_CFLAGS = $(AM_CFLAGS) \ + $(PERL_CFLAGS) \ + -DXS_VERSION=\"$(VERSION)\" -DVERSION=\"$(VERSION)\" +perl_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(PERL_LDFLAGS) +perl_la_LIBADD = $(PERL_LIBS) +endif + +if BUILD_PLUGIN_PF +pkglib_LTLIBRARIES += pf.la +pf_la_SOURCES = src/pf.c +pf_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_PINBA +pkglib_LTLIBRARIES += pinba.la +pinba_la_SOURCES = src/pinba.c +nodist_pinba_la_SOURCES = \ + src/pinba.pb-c.c \ + src/pinba.pb-c.h +pinba_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS) +pinba_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBPROTOBUF_C_LDFLAGS) +pinba_la_LIBADD = $(BUILD_WITH_LIBPROTOBUF_C_LIBS) +endif + +if BUILD_PLUGIN_PING +pkglib_LTLIBRARIES += ping.la +ping_la_SOURCES = src/ping.c +ping_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBOPING_CPPFLAGS) +ping_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBOPING_LDFLAGS) +ping_la_LIBADD = -loping -lm +endif + +if BUILD_PLUGIN_POSTGRESQL +pkglib_LTLIBRARIES += postgresql.la +postgresql_la_SOURCES = \ + src/postgresql.c \ + src/utils/db_query/db_query.c \ + src/utils/db_query/db_query.h +postgresql_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBPQ_CPPFLAGS) +postgresql_la_LDFLAGS = $(PLUGIN_LDFLAGS) \ + $(BUILD_WITH_LIBPQ_LDFLAGS) +postgresql_la_LIBADD = $(BUILD_WITH_LIBPQ_LIBS) +endif + +if BUILD_PLUGIN_POWERDNS +pkglib_LTLIBRARIES += powerdns.la +powerdns_la_SOURCES = src/powerdns.c +powerdns_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_PYTHON +pkglib_LTLIBRARIES += python.la +python_la_SOURCES = \ + src/python.c \ + src/pyconfig.c \ + src/pyvalues.c \ + src/cpython.h +python_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBPYTHON_CPPFLAGS) +python_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(LIBPYTHON_LDFLAGS) +endif + +if HAVE_LIBMNL +noinst_LTLIBRARIES += libtaskstats.la +libtaskstats_la_SOURCES = \ + src/utils/taskstats/taskstats.c \ + src/utils/taskstats/taskstats.h +libtaskstats_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBMNL_CFLAGS) +libtaskstats_la_LIBADD = $(BUILD_WITH_LIBMNL_LIBS) +endif + +if BUILD_PLUGIN_PROCESSES +pkglib_LTLIBRARIES += processes.la +processes_la_SOURCES = src/processes.c +processes_la_CPPFLAGS = $(AM_CPPFLAGS) +processes_la_LDFLAGS = $(PLUGIN_LDFLAGS) +processes_la_LIBADD = +if BUILD_WITH_LIBKVM_GETPROCS +processes_la_LIBADD += -lkvm +endif +if HAVE_LIBMNL +processes_la_CPPFLAGS += -DHAVE_LIBTASKSTATS=1 +processes_la_LIBADD += libtaskstats.la +endif +endif + +if BUILD_PLUGIN_PROCEVENT +pkglib_LTLIBRARIES += procevent.la +procevent_la_SOURCES = src/procevent.c +procevent_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +procevent_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +procevent_la_LIBADD = $(BUILD_WITH_LIBYAJL_LIBS) libignorelist.la +endif + +if BUILD_PLUGIN_PROTOCOLS +pkglib_LTLIBRARIES += protocols.la +protocols_la_SOURCES = src/protocols.c +protocols_la_LDFLAGS = $(PLUGIN_LDFLAGS) +protocols_la_LIBADD = libignorelist.la +endif + +if BUILD_PLUGIN_REDFISH +pkglib_LTLIBRARIES += redfish.la +redfish_la_SOURCES = src/redfish.c +redfish_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBREDFISH_CPPFLAGS) +redfish_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBREDFISH_LDFLAGS) +redfish_la_LIBADD = $(BUILD_WITH_LIBREDFISH_LIBS) -lredfish + +test_plugin_redfish_SOURCES = src/redfish_test.c \ + src/utils/avltree/avltree.c \ + src/daemon/utils_llist.c \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_redfish_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBREDFISH_CPPFLAGS) +test_plugin_redfish_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBREDFISH_LDFLAGS) +test_plugin_redfish_LDADD = liboconfig.la libplugin_mock.la \ + $(BUILD_WITH_LIBREDFISH_LIBS) -lredfish -ljansson +check_PROGRAMS += test_plugin_redfish +TESTS += test_plugin_redfish +endif + +if BUILD_PLUGIN_REDIS +pkglib_LTLIBRARIES += redis.la +redis_la_SOURCES = src/redis.c +redis_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBHIREDIS_CPPFLAGS) +redis_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBHIREDIS_LDFLAGS) +redis_la_LIBADD = -lhiredis +endif + +if BUILD_PLUGIN_ROUTEROS +pkglib_LTLIBRARIES += routeros.la +routeros_la_SOURCES = src/routeros.c +routeros_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBROUTEROS_CPPFLAGS) +routeros_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBROUTEROS_LDFLAGS) +routeros_la_LIBADD = -lrouteros +endif + +if BUILD_PLUGIN_RRDCACHED +pkglib_LTLIBRARIES += rrdcached.la +rrdcached_la_SOURCES = \ + src/rrdcached.c \ + src/utils/rrdcreate/rrdcreate.c \ + src/utils/rrdcreate/rrdcreate.h +rrdcached_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBRRD_CFLAGS) +rrdcached_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBRRD_LDFLAGS) +rrdcached_la_LIBADD = $(BUILD_WITH_LIBRRD_LIBS) +endif + +if BUILD_PLUGIN_RRDTOOL +pkglib_LTLIBRARIES += rrdtool.la +rrdtool_la_SOURCES = \ + src/rrdtool.c \ + src/utils/rrdcreate/rrdcreate.c \ + src/utils/rrdcreate/rrdcreate.h +rrdtool_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBRRD_CFLAGS) +rrdtool_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBRRD_LDFLAGS) +rrdtool_la_LIBADD = $(BUILD_WITH_LIBRRD_LIBS) +endif + +if BUILD_PLUGIN_SENSORS +pkglib_LTLIBRARIES += sensors.la +sensors_la_SOURCES = src/sensors.c +sensors_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBSENSORS_CPPFLAGS) +sensors_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBSENSORS_LDFLAGS) +sensors_la_LIBADD = libignorelist.la $(BUILD_WITH_LIBSENSORS_LIBS) +endif + +if BUILD_PLUGIN_SERIAL +pkglib_LTLIBRARIES += serial.la +serial_la_SOURCES = src/serial.c +serial_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_SIGROK +pkglib_LTLIBRARIES += sigrok.la +sigrok_la_SOURCES = src/sigrok.c +sigrok_la_CFLAGS = $(AM_CFLAGS) $(LIBSIGROK_CFLAGS) +sigrok_la_LDFLAGS = $(PLUGIN_LDFLAGS) +sigrok_la_LIBADD = $(LIBSIGROK_LIBS) +endif + +if BUILD_PLUGIN_SLURM +pkglib_LTLIBRARIES += slurm.la +slurm_la_SOURCES = src/slurm.c +slurm_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBSLURM_CFLAGS) +slurm_la_LDFLAGS = $(PLUGIN_LDFLAGS) +slurm_la_LIBADD = $(BUILD_WITH_LIBSLURM_LIBS) +endif + +if BUILD_PLUGIN_SMART +if BUILD_WITH_LIBUDEV +pkglib_LTLIBRARIES += smart.la +smart_la_SOURCES = src/smart.c +smart_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBATASMART_CPPFLAGS) $(BUILD_WITH_LIBUDEV_CPPFLAGS) +smart_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBATASMART_LDFLAGS) $(BUILD_WITH_LIBUDEV_LDFLAGS) +smart_la_LIBADD = libignorelist.la $(BUILD_WITH_LIBATASMART_LIBS) $(BUILD_WITH_LIBUDEV_LIBS) +endif +endif + +if BUILD_PLUGIN_SNMP +pkglib_LTLIBRARIES += snmp.la +snmp_la_SOURCES = src/snmp.c +snmp_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBNETSNMP_CPPFLAGS) +snmp_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBNETSNMP_LDFLAGS) +snmp_la_LIBADD = libignorelist.la $(BUILD_WITH_LIBNETSNMP_LIBS) +endif + +if BUILD_PLUGIN_SNMP_AGENT +pkglib_LTLIBRARIES += snmp_agent.la +snmp_agent_la_SOURCES = src/snmp_agent.c +snmp_agent_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBNETSNMPAGENT_CPPFLAGS) +snmp_agent_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBNETSNMPAGENT_LDFLAGS) +snmp_agent_la_LIBADD = $(BUILD_WITH_LIBNETSNMPAGENT_LIBS) + +test_plugin_snmp_agent_SOURCES = src/snmp_agent_test.c \ + src/utils/avltree/avltree.c \ + src/daemon/utils_llist.c \ + src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_snmp_agent_CPPFLAGS = $(AM_CPPFLAGS) \ + $(BUILD_WITH_LIBNETSNMPAGENT_CPPFLAGS) +test_plugin_snmp_agent_LDFLAGS = $(PLUGIN_LDFLAGS) \ + $(BUILD_WITH_LIBNETSNMPAGENT_LDFLAGS) +test_plugin_snmp_agent_LDADD = liboconfig.la libplugin_mock.la \ + $(BUILD_WITH_LIBNETSNMPAGENT_LIBS) $(BUILD_WITH_LIBNETSNMP_LIBS) + +check_PROGRAMS += test_plugin_snmp_agent +TESTS += test_plugin_snmp_agent + + +endif + +if BUILD_PLUGIN_STATSD +pkglib_LTLIBRARIES += statsd.la +statsd_la_SOURCES = src/statsd.c +statsd_la_LDFLAGS = $(PLUGIN_LDFLAGS) +statsd_la_LIBADD = liblatency.la +endif + +if BUILD_PLUGIN_SWAP +pkglib_LTLIBRARIES += swap.la +swap_la_SOURCES = src/swap.c +swap_la_CFLAGS = $(AM_CFLAGS) +swap_la_LDFLAGS = $(PLUGIN_LDFLAGS) +swap_la_LIBADD = +if BUILD_WITH_LIBKSTAT +swap_la_LIBADD += -lkstat +endif +if BUILD_WITH_LIBDEVINFO +swap_la_LIBADD += -ldevinfo +endif +if BUILD_WITH_LIBKVM_GETSWAPINFO +swap_la_LIBADD += -lkvm +endif +if BUILD_WITH_LIBSTATGRAB +swap_la_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +swap_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +endif +if BUILD_WITH_PERFSTAT +swap_la_LIBADD += -lperfstat +endif + +endif + +if BUILD_PLUGIN_SYNPROXY +pkglib_LTLIBRARIES += synproxy.la +synproxy_la_SOURCES = src/synproxy.c +synproxy_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_SYSEVENT +pkglib_LTLIBRARIES += sysevent.la +sysevent_la_SOURCES = src/sysevent.c +sysevent_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBYAJL_CPPFLAGS) +sysevent_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBYAJL_LDFLAGS) +sysevent_la_LIBADD = $(BUILD_WITH_LIBYAJL_LIBS) libignorelist.la +endif + +if BUILD_PLUGIN_SYSLOG +pkglib_LTLIBRARIES += syslog.la +syslog_la_SOURCES = src/syslog.c +syslog_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TABLE +pkglib_LTLIBRARIES += table.la +table_la_SOURCES = src/table.c +table_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TAIL +pkglib_LTLIBRARIES += tail.la +tail_la_SOURCES = \ + src/tail.c \ + src/utils/match/match.c \ + src/utils/match/match.h \ + src/utils/tail/tail.c \ + src/utils/tail/tail.h \ + src/utils_tail_match.c \ + src/utils_tail_match.h +tail_la_LDFLAGS = $(PLUGIN_LDFLAGS) +tail_la_LIBADD = liblatency.la +endif + +if BUILD_PLUGIN_TAIL_CSV +pkglib_LTLIBRARIES += tail_csv.la +tail_csv_la_SOURCES = \ + src/tail_csv.c \ + src/utils/tail/tail.c \ + src/utils/tail/tail.h +tail_csv_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TAPE +pkglib_LTLIBRARIES += tape.la +tape_la_SOURCES = src/tape.c +tape_la_LDFLAGS = $(PLUGIN_LDFLAGS) +tape_la_LIBADD = -lkstat -ldevinfo +endif + +if BUILD_PLUGIN_TARGET_NOTIFICATION +pkglib_LTLIBRARIES += target_notification.la +target_notification_la_SOURCES = src/target_notification.c +target_notification_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TARGET_REPLACE +pkglib_LTLIBRARIES += target_replace.la +target_replace_la_SOURCES = src/target_replace.c +target_replace_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TARGET_SCALE +pkglib_LTLIBRARIES += target_scale.la +target_scale_la_SOURCES = src/target_scale.c +target_scale_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TARGET_SET +pkglib_LTLIBRARIES += target_set.la +target_set_la_SOURCES = src/target_set.c +target_set_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TARGET_V5UPGRADE +pkglib_LTLIBRARIES += target_v5upgrade.la +target_v5upgrade_la_SOURCES = src/target_v5upgrade.c +target_v5upgrade_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TCPCONNS +pkglib_LTLIBRARIES += tcpconns.la +tcpconns_la_SOURCES = src/tcpconns.c +tcpconns_la_LDFLAGS = $(PLUGIN_LDFLAGS) +tcpconns_la_LIBADD = +if BUILD_WITH_LIBKVM_NLIST +tcpconns_la_LIBADD += -lkvm +endif +endif + +if BUILD_PLUGIN_TEAMSPEAK2 +pkglib_LTLIBRARIES += teamspeak2.la +teamspeak2_la_SOURCES = src/teamspeak2.c +teamspeak2_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TED +pkglib_LTLIBRARIES += ted.la +ted_la_SOURCES = src/ted.c +ted_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_THERMAL +pkglib_LTLIBRARIES += thermal.la +thermal_la_SOURCES = src/thermal.c +thermal_la_LDFLAGS = $(PLUGIN_LDFLAGS) +thermal_la_LIBADD = libignorelist.la +endif + +if BUILD_PLUGIN_THRESHOLD +pkglib_LTLIBRARIES += threshold.la +threshold_la_SOURCES = src/threshold.c +threshold_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_TOKYOTYRANT +pkglib_LTLIBRARIES += tokyotyrant.la +tokyotyrant_la_SOURCES = src/tokyotyrant.c +tokyotyrant_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBTOKYOTYRANT_CPPFLAGS) +tokyotyrant_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBTOKYOTYRANT_LDFLAGS) +tokyotyrant_la_LIBADD = $(BUILD_WITH_LIBTOKYOTYRANT_LIBS) +if BUILD_WITH_LIBSOCKET +tokyotyrant_la_LIBADD += -lsocket +endif +endif + +if BUILD_PLUGIN_TURBOSTAT +pkglib_LTLIBRARIES += turbostat.la +turbostat_la_SOURCES = \ + src/turbostat.c \ + src/msr-index.h +turbostat_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_UBI +pkglib_LTLIBRARIES += ubi.la +ubi_la_SOURCES = src/ubi.c +ubi_la_LDFLAGS = $(PLUGIN_LDFLAGS) +ubi_la_LIBADD = libignorelist.la +endif + +if BUILD_PLUGIN_UNIXSOCK +pkglib_LTLIBRARIES += unixsock.la +unixsock_la_SOURCES = src/unixsock.c +unixsock_la_LDFLAGS = $(PLUGIN_LDFLAGS) +unixsock_la_LIBADD = libcmds.la +endif + +if BUILD_PLUGIN_UPTIME +pkglib_LTLIBRARIES += uptime.la +uptime_la_SOURCES = src/uptime.c +uptime_la_CFLAGS = $(AM_CFLAGS) +uptime_la_LDFLAGS = $(PLUGIN_LDFLAGS) +uptime_la_LIBADD = +if BUILD_WITH_LIBKSTAT +uptime_la_LIBADD += -lkstat +endif +if BUILD_WITH_PERFSTAT +uptime_la_LIBADD += -lperfstat +endif +endif + +if BUILD_PLUGIN_USERS +pkglib_LTLIBRARIES += users.la +users_la_SOURCES = src/users.c +users_la_CFLAGS = $(AM_CFLAGS) +users_la_LDFLAGS = $(PLUGIN_LDFLAGS) +users_la_LIBADD = +if BUILD_WITH_LIBSTATGRAB +users_la_CFLAGS += $(BUILD_WITH_LIBSTATGRAB_CFLAGS) +users_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) +endif +endif + +if BUILD_PLUGIN_UUID +pkglib_LTLIBRARIES += uuid.la +uuid_la_SOURCES = src/uuid.c +uuid_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_VARNISH +pkglib_LTLIBRARIES += varnish.la +varnish_la_SOURCES = src/varnish.c +varnish_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBVARNISH_CFLAGS) +varnish_la_LDFLAGS = $(PLUGIN_LDFLAGS) +varnish_la_LIBADD = $(BUILD_WITH_LIBVARNISH_LIBS) +endif + +if BUILD_PLUGIN_VIRT +pkglib_LTLIBRARIES += virt.la +virt_la_SOURCES = src/virt.c +virt_la_CFLAGS = $(AM_CFLAGS) \ + $(BUILD_WITH_LIBVIRT_CFLAGS) $(BUILD_WITH_LIBXML2_CFLAGS) +virt_la_LDFLAGS = $(PLUGIN_LDFLAGS) +virt_la_LIBADD = libignorelist.la $(BUILD_WITH_LIBVIRT_LIBS) $(BUILD_WITH_LIBXML2_LIBS) + +test_plugin_virt_SOURCES = src/virt_test.c src/daemon/configfile.c \ + src/daemon/types_list.c +test_plugin_virt_CPPFLAGS = $(AM_CPPFLAGS) \ + $(BUILD_WITH_LIBVIRT_CPPFLAGS) $(BUILD_WITH_LIBXML2_CFLAGS) +test_plugin_virt_LDFLAGS = $(PLUGIN_LDFLAGS) \ + $(BUILD_WITH_LIBVIRT_LDFLAGS) $(BUILD_WITH_LIBXML2_LDFLAGS) +test_plugin_virt_LDADD = liboconfig.la libplugin_mock.la \ + $(BUILD_WITH_LIBVIRT_LIBS) $(BUILD_WITH_LIBXML2_LIBS) +check_PROGRAMS += test_plugin_virt +TESTS += test_plugin_virt +endif + +if BUILD_PLUGIN_VMEM +pkglib_LTLIBRARIES += vmem.la +vmem_la_SOURCES = src/vmem.c +vmem_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_VSERVER +pkglib_LTLIBRARIES += vserver.la +vserver_la_SOURCES = src/vserver.c +vserver_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_WIRELESS +pkglib_LTLIBRARIES += wireless.la +wireless_la_SOURCES = src/wireless.c +wireless_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_WRITE_GRAPHITE +pkglib_LTLIBRARIES += write_graphite.la +write_graphite_la_SOURCES = src/write_graphite.c +write_graphite_la_LDFLAGS = $(PLUGIN_LDFLAGS) +write_graphite_la_LIBADD = libformat_graphite.la +endif + +if BUILD_PLUGIN_WRITE_HTTP +pkglib_LTLIBRARIES += write_http.la +write_http_la_SOURCES = \ + src/write_http.c \ + src/utils/curl_stats/curl_stats.c \ + src/utils/curl_stats/curl_stats.h \ + src/utils/format_kairosdb/format_kairosdb.c \ + src/utils/format_kairosdb/format_kairosdb.h +write_http_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBCURL_CFLAGS) +write_http_la_LDFLAGS = $(PLUGIN_LDFLAGS) +write_http_la_LIBADD = libformat_json.la $(BUILD_WITH_LIBCURL_LIBS) +endif + +if BUILD_PLUGIN_WRITE_INFLUXDB_UDP +pkglib_LTLIBRARIES += write_influxdb_udp.la +write_influxdb_udp_la_SOURCES = src/write_influxdb_udp.c +write_influxdb_udp_la_CPPFLAGS = $(AM_CPPFLAGS) +write_influxdb_udp_la_LDFLAGS = $(PLUGIN_LDFLAGS) +if BUILD_WITH_LIBSOCKET +write_influxdb_udp_la_LIBADD = -lsocket +endif +endif + +if BUILD_PLUGIN_WRITE_KAFKA +pkglib_LTLIBRARIES += write_kafka.la +write_kafka_la_SOURCES = src/write_kafka.c +write_kafka_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBRDKAFKA_CPPFLAGS) +write_kafka_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBRDKAFKA_LDFLAGS) +write_kafka_la_LIBADD = \ + libcmds.la \ + libformat_graphite.la \ + libformat_json.la \ + $(BUILD_WITH_LIBRDKAFKA_LIBS) +endif + +if BUILD_PLUGIN_WRITE_LOG +pkglib_LTLIBRARIES += write_log.la +write_log_la_SOURCES = src/write_log.c +write_log_la_LDFLAGS = $(PLUGIN_LDFLAGS) +write_log_la_LIBADD = libformat_graphite.la libformat_json.la +endif + +if BUILD_PLUGIN_WRITE_MONGODB +pkglib_LTLIBRARIES += write_mongodb.la +write_mongodb_la_SOURCES = src/write_mongodb.c +write_mongodb_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBMONGOC_CFLAGS) +write_mongodb_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBMONGOC_LDFLAGS) +write_mongodb_la_LIBADD = $(BUILD_WITH_LIBMONGOC_LIBS) +endif + +if BUILD_PLUGIN_WRITE_PROMETHEUS +pkglib_LTLIBRARIES += write_prometheus.la +write_prometheus_la_SOURCES = src/write_prometheus.c +nodist_write_prometheus_la_SOURCES = \ + prometheus.pb-c.c \ + prometheus.pb-c.h +write_prometheus_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBPROTOBUF_C_CPPFLAGS) $(BUILD_WITH_LIBMICROHTTPD_CPPFLAGS) +write_prometheus_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBPROTOBUF_C_LDFLAGS) $(BUILD_WITH_LIBMICROHTTPD_LDFLAGS) +write_prometheus_la_LIBADD = $(BUILD_WITH_LIBPROTOBUF_C_LIBS) $(BUILD_WITH_LIBMICROHTTPD_LIBS) +endif + +if BUILD_PLUGIN_WRITE_REDIS +pkglib_LTLIBRARIES += write_redis.la +write_redis_la_SOURCES = src/write_redis.c +write_redis_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBHIREDIS_CPPFLAGS) +write_redis_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(BUILD_WITH_LIBHIREDIS_LDFLAGS) +write_redis_la_LIBADD = -lhiredis +endif + +if BUILD_PLUGIN_WRITE_RIEMANN +pkglib_LTLIBRARIES += write_riemann.la +write_riemann_la_SOURCES = \ + src/write_riemann.c \ + src/write_riemann_threshold.c \ + src/write_riemann_threshold.h +write_riemann_la_CFLAGS = $(AM_CFLAGS) $(LIBRIEMANN_CLIENT_CFLAGS) +write_riemann_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(LIBRIEMANN_CLIENT_LIBS) +endif + +if BUILD_PLUGIN_WRITE_SENSU +pkglib_LTLIBRARIES += write_sensu.la +write_sensu_la_SOURCES = src/write_sensu.c +write_sensu_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_WRITE_STACKDRIVER +pkglib_LTLIBRARIES += write_stackdriver.la +write_stackdriver_la_SOURCES = src/write_stackdriver.c +write_stackdriver_la_LDFLAGS = $(PLUGIN_LDFLAGS) +write_stackdriver_la_CPPFLAGS = $(AM_CPPFLAGS) $(BUILD_WITH_LIBCURL_CFLAGS) +write_stackdriver_la_LIBADD = libformat_stackdriver.la libgce.la liboauth.la \ + $(BUILD_WITH_LIBCURL_LIBS) +endif + +if BUILD_PLUGIN_WRITE_SYSLOG +pkglib_LTLIBRARIES += write_syslog.la +write_syslog_la_SOURCES = src/write_syslog.c +write_syslog_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_WRITE_TSDB +pkglib_LTLIBRARIES += write_tsdb.la +write_tsdb_la_SOURCES = src/write_tsdb.c +write_tsdb_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_XENCPU +pkglib_LTLIBRARIES += xencpu.la +xencpu_la_SOURCES = src/xencpu.c +xencpu_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXENCTL_CPPFLAGS) +xencpu_la_LDFLAGS = $(PLUGIN_LDFLAGS) $(LIBXENCTL_LDFLAGS) +xencpu_la_LIBADD = -lxenctrl +endif + +if BUILD_PLUGIN_XMMS +pkglib_LTLIBRARIES += xmms.la +xmms_la_SOURCES = src/xmms.c +xmms_la_CFLAGS = $(AM_CFLAGS) $(BUILD_WITH_LIBXMMS_CFLAGS) +xmms_la_LDFLAGS = $(PLUGIN_LDFLAGS) +xmms_la_LIBADD = $(BUILD_WITH_LIBXMMS_LIBS) +endif + +if BUILD_PLUGIN_ZFS_ARC +pkglib_LTLIBRARIES += zfs_arc.la +zfs_arc_la_SOURCES = src/zfs_arc.c +zfs_arc_la_LDFLAGS = $(PLUGIN_LDFLAGS) +if BUILD_FREEBSD +zfs_arc_la_LIBADD = -lm +endif +if BUILD_SOLARIS +zfs_arc_la_LIBADD = -lkstat +endif +endif + +if BUILD_PLUGIN_ZOOKEEPER +pkglib_LTLIBRARIES += zookeeper.la +zookeeper_la_SOURCES = src/zookeeper.c +zookeeper_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +if BUILD_PLUGIN_ZONE +pkglib_LTLIBRARIES += zone.la +zone_la_SOURCES = src/zone.c +zone_la_LDFLAGS = $(PLUGIN_LDFLAGS) +endif + +AM_V_POD2MAN_C = $(am__v_POD2MAN_C_@AM_V@) +am__v_POD2MAN_C_ = $(am__v_POD2MAN_C_@AM_DEFAULT_V@) +am__v_POD2MAN_C_0 = @echo " POD2MAN " $@; +am__v_POD2MAN_C_1 = + +.pod.1: + $(AM_V_POD2MAN_C)pod2man --release=$(VERSION) --center=$(PACKAGE) $< $@ + +.pod.5: + $(AM_V_POD2MAN_C)pod2man --section=5 --release=$(VERSION) --center=$(PACKAGE) $< $@ + +V_PROTOC = $(v_protoc_@AM_V@) +v_protoc_ = $(v_protoc_@AM_DEFAULT_V@) +v_protoc_0 = @echo " PROTOC " $@; + +AM_V_PROTOC_C = $(am__v_PROTOC_C_@AM_V@) +am__v_PROTOC_C_ = $(am__v_PROTOC_C_@AM_DEFAULT_V@) +am__v_PROTOC_C_0 = @echo " PROTOC-C" $@; +am__v_PROTOC_C_1 = + +# Protocol buffer for the "pinba" plugin. +if BUILD_PLUGIN_PINBA +BUILT_SOURCES += src/pinba.pb-c.c src/pinba.pb-c.h + +src/pinba.pb-c.c src/pinba.pb-c.h: $(srcdir)/src/pinba.proto + $(AM_V_PROTOC_C)$(PROTOC_C) -I$(srcdir) --c_out . $(srcdir)/src/pinba.proto +endif + +# Protocol buffer for the "write_prometheus" plugin. +if BUILD_PLUGIN_WRITE_PROMETHEUS +BUILT_SOURCES += prometheus.pb-c.c prometheus.pb-c.h + +prometheus.pb-c.c prometheus.pb-c.h: $(srcdir)/proto/prometheus.proto + $(AM_V_PROTOC_C)$(PROTOC_C) -I$(srcdir)/proto --c_out=$(builddir) $(srcdir)/proto/prometheus.proto +endif + +if HAVE_PROTOC3 +if HAVE_GRPC_CPP +BUILT_SOURCES += collectd.grpc.pb.cc collectd.pb.cc types.pb.cc + +collectd.grpc.pb.cc: $(srcdir)/proto/collectd.proto $(srcdir)/proto/types.proto + $(V_PROTOC)$(PROTOC) -I$(srcdir)/proto \ + --grpc_out=$(builddir) --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN) \ + $(srcdir)/proto/collectd.proto $(srcdir)/proto/types.proto + +collectd.pb.cc: $(srcdir)/proto/collectd.proto $(srcdir)/proto/types.proto + $(V_PROTOC)$(PROTOC) -I$(srcdir)/proto --cpp_out=$(builddir) \ + $(srcdir)/proto/collectd.proto $(srcdir)/proto/types.proto + +types.pb.cc: $(srcdir)/proto/types.proto + $(V_PROTOC)$(PROTOC) -I$(srcdir)/proto --cpp_out=$(builddir) \ + $(srcdir)/proto/types.proto +endif +endif install-exec-hook: $(mkinstalldirs) $(DESTDIR)$(localstatedir)/run $(mkinstalldirs) $(DESTDIR)$(localstatedir)/lib/$(PACKAGE_NAME) $(mkinstalldirs) $(DESTDIR)$(localstatedir)/log + $(mkinstalldirs) $(DESTDIR)$(sysconfdir) + if test -e $(DESTDIR)$(sysconfdir)/collectd.conf; \ + then \ + $(INSTALL) -m 0640 $(builddir)/src/collectd.conf $(DESTDIR)$(sysconfdir)/collectd.conf.pkg-orig; \ + else \ + $(INSTALL) -m 0640 $(builddir)/src/collectd.conf $(DESTDIR)$(sysconfdir)/collectd.conf; \ + fi; \ + $(mkinstalldirs) $(DESTDIR)$(cpkgdatadir) + $(INSTALL) -m 0644 $(srcdir)/src/types.db $(DESTDIR)$(cpkgdatadir)/types.db; + $(INSTALL) -m 0644 $(srcdir)/src/postgresql_default.conf \ + $(DESTDIR)$(cpkgdatadir)/postgresql_default.conf; + +uninstall-hook: + rm -f $(DESTDIR)$(cpkgdatadir)/types.db; + rm -f $(DESTDIR)$(sysconfdir)/collectd.conf + rm -f $(DESTDIR)$(cpkgdatadir)/postgresql_default.conf; + +all-local: @PERL_BINDINGS@ + +install-exec-local: + [ ! -f buildperl/Makefile ] || ( cd buildperl && $(MAKE) install ) + +# Perl 'make uninstall' does not work as well as wanted. +# So we do the work here. +uninstall-local: + @PERL@ -I$(DESTDIR)$(prefix) $(srcdir)/bindings/perl/uninstall_mod.pl Collectd + find $(DESTDIR)$(prefix) -name "perllocal.pod" -exec rm {} \; + +clean-local: + rm -rf buildperl + +perl: buildperl/Makefile + cd buildperl && $(MAKE) + +buildperl/Makefile: .perl-directory-stamp buildperl/Makefile.PL \ + $(top_builddir)/config.status + @# beautify the output a bit + @echo 'cd buildperl && @PERL@ Makefile.PL @PERL_BINDINGS_OPTIONS@' + @cd buildperl && ( if ! @PERL@ Makefile.PL @PERL_BINDINGS_OPTIONS@; then \ + echo ""; \ + echo 'Check whether you have set $$PERL_MM_OPT in your environment and try using ./configure --with-perl-bindings=""'; \ + echo ""; \ + fi ) + +buildperl/Makefile.PL: .perl-directory-stamp $(top_builddir)/config.status + +.perl-directory-stamp: + if test ! -d buildperl; then \ + mkdir -p buildperl/Collectd/Plugins; \ + cp $(srcdir)/bindings/perl/lib/Collectd.pm buildperl/; \ + cp $(srcdir)/bindings/perl/Makefile.PL buildperl/; \ + cp $(srcdir)/bindings/perl/lib/Collectd/Unixsock.pm buildperl/Collectd/; \ + cp $(srcdir)/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm buildperl/Collectd/Plugins/; \ + fi + touch $@ + +.PHONY: perl + + +if BUILD_WITH_JAVA +dist_noinst_JAVA = \ + bindings/java/org/collectd/api/Collectd.java \ + bindings/java/org/collectd/api/CollectdConfigInterface.java \ + bindings/java/org/collectd/api/CollectdFlushInterface.java \ + bindings/java/org/collectd/api/CollectdInitInterface.java \ + bindings/java/org/collectd/api/CollectdLogInterface.java \ + bindings/java/org/collectd/api/CollectdMatchFactoryInterface.java \ + bindings/java/org/collectd/api/CollectdMatchInterface.java \ + bindings/java/org/collectd/api/CollectdNotificationInterface.java \ + bindings/java/org/collectd/api/CollectdReadInterface.java \ + bindings/java/org/collectd/api/CollectdShutdownInterface.java \ + bindings/java/org/collectd/api/CollectdTargetFactoryInterface.java \ + bindings/java/org/collectd/api/CollectdTargetInterface.java \ + bindings/java/org/collectd/api/CollectdWriteInterface.java \ + bindings/java/org/collectd/api/DataSet.java \ + bindings/java/org/collectd/api/DataSource.java \ + bindings/java/org/collectd/api/Notification.java \ + bindings/java/org/collectd/api/OConfigItem.java \ + bindings/java/org/collectd/api/OConfigValue.java \ + bindings/java/org/collectd/api/PluginData.java \ + bindings/java/org/collectd/api/ValueList.java \ + bindings/java/org/collectd/java/GenericJMX.java \ + bindings/java/org/collectd/java/GenericJMXConfConnection.java \ + bindings/java/org/collectd/java/GenericJMXConfMBean.java \ + bindings/java/org/collectd/java/GenericJMXConfValue.java \ + bindings/java/org/collectd/java/JMXMemory.java + +collectd-api.jar: $(JAVA_TIMESTAMP_FILE) + $(JAR) cf $(JARFLAGS) $@ org/collectd/api/*.class + +generic-jmx.jar: $(JAVA_TIMESTAMP_FILE) + $(JAR) cf $(JARFLAGS) $@ org/collectd/java/*.class + +jar_DATA = collectd-api.jar generic-jmx.jar +endif -maintainer-clean-local: - -rm -f -r libltdl - -rm -f INSTALL - -rm -f aclocal.m4 diff --git a/NEWS b/NEWS deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/README b/README index 1956609b2d..b13192f1bd 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ collectd - System information collection daemon ================================================= -http://collectd.org/ +https://collectd.org/ About ----- @@ -33,9 +33,9 @@ Features Statistics about Ascent, a free server for the game `World of Warcraft'. - barometer - Using digital barometer sensor MPL115A2 or MPL3115 from Freescale - provides absolute barometric pressure, air pressure reduced to sea level - and temperature. + Reads absolute barometric pressure, air pressure reduced to sea level and + temperature. Supported sensors are MPL115A2 and MPL3115 from Freescale + and BMP085 from Bosch. - battery Batterycharge, -current and voltage of ACPI and PMU based laptop @@ -45,9 +45,26 @@ Features Name server and resolver statistics from the `statistics-channel' interface of BIND 9.5, 9,6 and later. + - buddyinfo + Statistics from buddyinfo file about memory fragmentation. + + - capabilities + Platform capabilities decoded from hardware subsystems, for example from + SMBIOS using dmidecode. + + + - ceph + Statistics from the Ceph distributed storage system. + - cgroups CPU accounting information for process groups under Linux. + - chrony + Chrony daemon statistics: Local clock drift, offset to peers, etc. + + - connectivity + Event-based interface status. + - conntrack Number of nf_conntrack entries. @@ -61,6 +78,9 @@ Features - cpufreq CPU frequency (For laptops with speed step or a similar technology) + - cpusleep + CPU sleep: Time spent in suspend (For mobile devices which enter suspend automatically) + - curl Parse statistics from websites using regular expressions. @@ -76,6 +96,9 @@ Features Executes SQL statements on various databases and interprets the returned data. + - dcpmm + Collects Intel Optane DC Presistent Memory (DCPMM) performance and health statistics. + - df Mountpoint usage (Basically the values `df(1)' delivers) @@ -87,6 +110,22 @@ Features DNS traffic: Query types, response codes, opcodes and traffic/octets transferred. + - dpdkstat + Collect DPDK interface statistics. + See docs/BUILD.dpdkstat.md for detailed build instructions. + + This plugin should be compiled with compiler defenses enabled, for + example -fstack-protector. + + - dpdk_telemetry + Collect DPDK interface, application and global statistics. + This plugin can be used as substitute to dpdkstat plugin. + + This plugin is dependent on DPDK 19.08 release and must be used + along with the DPDK application. + + Also, this plugin has dependency on Jansson library. + - drbd Collect individual drbd resource statistics. @@ -104,6 +143,9 @@ Features Values gathered by a custom program or script. See collectd-exec(5). + - fhcount + File handles statistics. + - filecount Count the number of files in directories. @@ -113,20 +155,55 @@ Features - gmond Receive multicast traffic from Ganglia instances. + - gps + Monitor gps related data through gpsd. + + - gpu_nvidia + Monitor NVIDIA GPU statistics available through NVML. + - hddtemp Hard disk temperatures using hddtempd. + - hugepages + Report the number of used and free hugepages. More info on + hugepages can be found here: + https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt. + + This plugin should be compiled with compiler defenses enabled, for + example -fstack-protector. + + - intel_pmu + The intel_pmu plugin reads performance counters provided by the Linux + kernel perf interface. The plugin uses jevents library to resolve named + events to perf events and access perf interface. + + - intel_rdt + The intel_rdt plugin collects information provided by monitoring features + of Intel Resource Director Technology (Intel(R) RDT) like Cache Monitoring + Technology (CMT), Memory Bandwidth Monitoring (MBM). These features + provide information about utilization of shared resources like last level + cache occupancy, local memory bandwidth usage, remote memory bandwidth + usage, instructions per clock. + + - interface Interface traffic: Number of octets, packets and errors for each interface. - - iptables - Iptables' counters: Number of bytes that were matched by a certain - iptables rule. + - ipc + IPC counters: semaphores used, number of allocated segments in shared + memory and more. - ipmi IPMI (Intelligent Platform Management Interface) sensors information. + - ipstats + IPv4 and IPv6; incoming, outgoing, forwarded counters. FreeBSD only. + + - iptables + Iptables' counters: Number of bytes that were matched by a certain + iptables rule. + - ipvs IPVS connection statistics (number of connections, octets and packets for each service and destination). @@ -137,7 +214,8 @@ Features - java Integrates a `Java Virtual Machine' (JVM) to execute plugins in Java - bytecode. See “Configuring with libjvm” below. + bytecode. + See docs/BUILD.java.md for detailed build instructions. - load System load average over the last 1, 5 and 15 minutes. @@ -146,12 +224,11 @@ Features Detailed CPU statistics of the “Logical Partitions” virtualization technique built into IBM's POWER processors. - - libvirt - CPU, memory, disk and network I/O statistics from virtual machines. - - - lvm - Size of “Logical Volumes” (LV) and “Volume Groups” (VG) of Linux' - “Logical Volume Manager” (LVM). + - lua + The Lua plugin implements a Lua interpreter into collectd. This + makes it possible to write plugins in Lua which are executed by + collectd without the need to start a heavy interpreter every interval. + See collectd-lua(5) for details. - madwifi Queries very detailed usage statistics from wireless LAN adapters and @@ -161,6 +238,11 @@ Features Motherboard sensors: temperature, fan speed and voltage information, using mbmon(1). + - mcelog + Monitor machine check exceptions (hardware errors detected by hardware + and reported to software) reported by mcelog and generate appropriate + notifications when machine check exceptions are detected. + - md Linux software-RAID device information (number of active, failed, spare and missing disks). @@ -194,7 +276,7 @@ Features - netapp Plugin to query performance values from a NetApp storage system using the - “Manage ONTAP” SDK provided by NetApp. + “Manage ONTAP” SDK provided by NetApp. - netlink Very detailed Linux network interface and routing statistics. You can get @@ -207,8 +289,7 @@ Features plugin of choice for that. - nfs - NFS Procedures: Which NFS command were called how often. Only NFSv2 and - NFSv3 right now. + NFS Procedures: Which NFS command were called how often. - nginx Collects statistics from `nginx' (speak: engine X), a HTTP and mail @@ -217,13 +298,13 @@ Features - ntpd NTP daemon statistics: Local clock drift, offset to peers, etc. + - numa + Information about Non-Uniform Memory Access (NUMA). + - nut Network UPS tools: UPS current, voltage, power, charge, utilisation, temperature, etc. See upsd(8). - - numa - Information about Non-Uniform Memory Access (NUMA). - - olsrd Queries routing information from the “Optimized Link State Routing” daemon. @@ -232,6 +313,9 @@ Features Read onewire sensors using the owcapu library of the owfs project. Please read in collectd.conf(5) why this plugin is experimental. + - openldap + Read monitoring information from OpenLDAP's cn=Monitor subtree. + - openvpn RX and TX of each client in openvpn-status.log (status-version 2). @@ -239,6 +323,26 @@ Features - oracle Query data from an Oracle database. + - ovs_events + The plugin monitors the link status of Open vSwitch (OVS) connected + interfaces, dispatches the values to collectd and sends the notification + whenever the link state change occurs in the OVS database. It requires + YAJL library to be installed. + Detailed instructions for installing and setting up Open vSwitch, see + OVS documentation. + + + - ovs_stats + The plugin collects the statistics of OVS connected bridges and + interfaces. It requires YAJL library to be installed. + Detailed instructions for installing and setting up Open vSwitch, see + OVS documentation. + + + - pcie_errors + Read errors from PCI Express Device Status and AER extended capabilities. + + - perl The perl plugin implements a Perl-interpreter into collectd. You can write your own plugins in Perl and return arbitrary values using this @@ -265,6 +369,9 @@ Features - processes Process counts: Number of running, sleeping, zombie, ... processes. + - procevent + Listens for process starts and exits via netlink. + - protocols Counts various aspects of network protocols such as IP, TCP, UDP, etc. @@ -296,6 +403,14 @@ Features to have its measurements fed to collectd. This includes multimeters, sound level meters, thermometers, and much more. + - slurm + Gathers per-partition node and job state information using libslurm, + as well as internal health statistics. + + - smart + Collect SMART statistics, notably load cycle count, temperature + and bad sectors. + - snmp Read values from SNMP (Simple Network Management Protocol) enabled network devices such as switches, routers, thermometers, rack monitoring @@ -305,6 +420,9 @@ Features Acts as a StatsD server, reading values sent over the network from StatsD clients and calculating rates and other aggregates out of these values. + - sysevent + Listens to rsyslog events and submits matched values. + - swap Pages swapped out onto hard disk or whatever is called `swap' by the OS.. @@ -338,6 +456,14 @@ Features Reads the number of records and file size from a running Tokyo Tyrant server. + - turbostat + Reads CPU frequency and C-state residency on modern Intel + turbo-capable processors. + + - ubi + Reads the count of bad physical eraseblocks and the current + maximum erase counter value on UBI volumes. + - uptime System uptime statistics. @@ -347,8 +473,11 @@ Features - varnish Various statistics from Varnish, an HTTP accelerator. + - virt + CPU, memory, disk and network I/O statistics from virtual machines. + - vmem - Virtual memory statistics, e. g. the number of page-ins/-outs or the + Virtual memory statistics, e.g. the number of page-ins/-outs or the number of pagefaults. - vserver @@ -358,24 +487,48 @@ Features - wireless Link quality of wireless cards. Linux only. + - xencpu + XEN Hypervisor CPU stats. + - xmms Bitrate and frequency of music played with XMMS. - zfs_arc Statistics for ZFS' “Adaptive Replacement Cache” (ARC). + - zone + Measures the percentage of cpu load per container (zone) under Solaris 10 + and higher + + - zookeeper + Read data from Zookeeper's MNTR command. + * Output can be written or sent to various destinations by the following plugins: - amqp Sends JSON-encoded data to an Advanced Message Queuing Protocol (AMQP) - server, such as RabbitMQ. + 0.9.1 server, such as RabbitMQ. + + - amqp1 + Sends JSON-encoded data to an Advanced Message Queuing Protocol (AMQP) + 1.0 server, such as Qpid Dispatch Router or Apache Artemis Broker. - csv Write to comma separated values (CSV) files. This needs lots of diskspace but is extremely portable and can be analysed with almost every program that can analyse anything. Even Microsoft's Excel.. + - grpc + Send and receive values over the network using the gRPC framework. + + - lua + It's possible to implement write plugins in Lua using the Lua + plugin. See collectd-lua(5) for details. + + - mqtt + Publishes and subscribes to MQTT topics. + - network Send the data to a remote host to save the data somehow. This is useful for large setups where the data should be saved by a dedicated machine. @@ -401,6 +554,13 @@ Features updates to the files and write a bunch of updates at once, which lessens system load a lot. + - snmp_agent + Receives and handles queries from SNMP master agent and returns the data + collected by read plugins. Handles requests only for OIDs specified in + configuration file. To handle SNMP queries the plugin gets data from + collectd and translates requested values from collectd's internal format + to SNMP format. + - unixsock One can query the values from the unixsock plugin whenever they're needed. Please read collectd-unixsock(5) for a description on how that's @@ -411,10 +571,6 @@ Features can be configured to avoid logging send errors (especially useful when using UDP). - - write_tsdb - Sends data OpenTSDB, a scalable no master, no shared state time series - database. - - write_http Sends the values collected by collectd to a web-server using HTTP POST requests. The transmitted data is either in a form understood by the @@ -423,17 +579,36 @@ Features - write_kafka Sends data to Apache Kafka, a distributed queue. + - write_log + Writes data to the log + - write_mongodb Sends data to MongoDB, a NoSQL database. + - write_prometheus + Publish values using an embedded HTTP server, in a format compatible + with Prometheus' collectd_exporter. + - write_redis Sends the values to a Redis key-value database server. - write_riemann Sends data to Riemann, a stream processing and monitoring system. + - write_sensu + Sends data to Sensu, a stream processing and monitoring system, via the + Sensu client local TCP socket. + + - write_syslog + Sends data in syslog format, using TCP, where the message + contains the metric in human or JSON format. + + - write_tsdb + Sends data OpenTSDB, a scalable no master, no shared state time series + database. + * Logging is, as everything in collectd, provided by plugins. The following - plugins keep up informed about what's going on: + plugins keep us informed about what's going on: - logfile Writes log messages to a file or STDOUT/STDERR. @@ -464,6 +639,9 @@ Features Send an E-mail with the notification message to the configured recipients. + - notify_nagios + Submit notifications as passive check results to a local nagios instance. + - exec Execute a program or script to handle the notification. See collectd-exec(5). @@ -585,12 +763,22 @@ Prerequisites * Usual suspects: C compiler, linker, preprocessor, make, ... + collectd makes use of some common C99 features, e.g. compound literals and + mixed declarations, and therefore requires a C99 compatible compiler. + + On Debian and Ubuntu, the "build-essential" package should pull in + everything that's necessary. + * A POSIX-threads (pthread) implementation. Since gathering some statistics is slow (network connections, slow devices, etc) collectd is parallelized. The POSIX threads interface is being used and should be found in various implementations for hopefully all platforms. + * When building from the Git repository, flex (tokenizer) and bison (parser + generator) are required. Release tarballs include the generated files – you + don't need these packages in that case. + * aerotools-ng (optional) Used by the `aquaero' plugin. Currently, the `libaquaero5' library, which is used by the `aerotools-ng' toolkit, is not compiled as a shared object @@ -604,12 +792,26 @@ Prerequisites particular. + * CUDA (optional) + Used by the `gpu_nvidia' plugin + + + * libatasmart (optional) + Used by the `smart' plugin. + + + * libcap (optional) + The `turbostat' plugin can optionally build Linux Capabilities support, + which avoids full privileges requirement (aka. running as root) to read + values. + + * libclntsh (optional) Used by the `oracle' plugin. - * libcredis (optional) - Used by the `redis' plugin. Please note that you require a 0.2.2 version - or higher. + * libhiredis (optional) + Used by the redis plugin. Please note that you require a 0.10.0 version + or higher. * libcurl (optional) If you want to use the `apache', `ascent', `bind', `curl', `curl_json', @@ -628,13 +830,18 @@ Prerequisites Used by the `gmond' plugin to process data received from Ganglia. + * libgrpc (optional) + Used by the `grpc' plugin. gRPC requires a C++ compiler supporting the + C++11 standard. + + * libgcrypt (optional) Used by the `network' plugin for encryption and authentication. - * libhal (optional) - If present, the `uuid' plugin will check for UUID from HAL. - + * libgps (optional) + Used by the `gps' plugin. + * libi2c-dev (optional) Used for the plugin `barometer', provides just the i2c-dev.h header file @@ -644,20 +851,39 @@ Prerequisites For querying iptables counters. + * libjansson (optional) + Parse JSON data. This is used for the `capabilities' and `dpdk_telemetry` plugins. + + + * libjevents (optional) + The jevents library is used by the `intel_pmu' plugin to access the Linux + kernel perf interface. + Note: the library should be build with -fPIC flag to be linked with + intel_pmu shared object correctly. + + * libjvm (optional) Library that encapsulates the `Java Virtual Machine' (JVM). This library is - used by the `java' plugin to execute Java bytecode. See “Configuring with - libjvm” below. + used by the `java' plugin to execute Java bytecode. + See docs/BUILD.java.md for detailed build instructions. (and others) - * liblvm2 (optional) - Used by the `lvm' plugin. - + * libldap (optional) + Used by the `openldap' plugin. + + + * liblua (optional) + Used by the `lua' plugin. Currently, Lua 5.1 and later are supported. + * libmemcached (optional) Used by the `memcachec' plugin to connect to a memcache daemon. + * libmicrohttpd (optional) + Used by the write_prometheus plugin to run an http daemon. + + * libmnl (optional) Used by the `netlink' plugin. @@ -677,7 +903,11 @@ Prerequisites This library is part of the “Manage ONTAP SDK” published by NetApp. * libnetsnmp (optional) - For the `snmp' plugin. + For the `snmp' and 'snmp_agent' plugins. + + + * libnetsnmpagent (optional) + Required for the 'snmp_agent' plugin. * libnotify (optional) @@ -709,23 +939,44 @@ Prerequisites ithread support (introduced in Perl 5.6.0). + * libpmwapi (optional) + Used by the `dcpmm` plugin. + The library github: https://github.com/intel/intel-pmwatch + Follow the pmwatch build instructions mentioned for dcpmm plugin and + use the install path to resolve the dependency here. + * libpq (optional) The PostgreSQL C client library used by the `postgresql' plugin. + * libpqos (optional) + The PQoS library for Intel(R) Resource Director Technology used by the + `intel_rdt' plugin. + + + * libprotobuf, protoc 3.0+ (optional) + Used by the `grpc' plugin to generate service stubs and code to handle + network packets of collectd's protobuf-based network protocol. + + * libprotobuf-c, protoc-c (optional) Used by the `pinba' plugin to generate a parser for the network packets - sent by the Pinba PHP extension, and by the `write_riemann' plugin to - generate events to be sent to a Riemann server. + sent by the Pinba PHP extension. * libpython (optional) - Used by the `python' plugin. Currently, Python 2.3 and later and Python 3 + Used by the `python' plugin. Currently, Python 2.6 and later and Python 3 are supported. + * libqpid-proton (optional) + Used by the `amqp1' plugin for AMQP 1.0 connections, for example to + Qdrouterd. + + * librabbitmq (optional; also called “rabbitmq-c”) - Used by the `amqp' plugin for AMQP connections, for example to RabbitMQ. + Used by the `amqp' plugin for AMQP 0.9.1 connections, for example to + RabbitMQ. * librdkafka (optional; also called “rdkafka”) @@ -756,6 +1007,10 @@ Prerequisites libzip, and optionally (depending on which drivers are enabled) on libusb, libftdi and libudev. + * libslurm (optional) + Used by the `slurm` plugin. + + * libstatgrab (optional) Used by various plugins to collect statistics on systems other than Linux and/or Solaris. @@ -775,15 +1030,19 @@ Prerequisites * libxml2 (optional) Parse XML data. This is needed for the `ascent', `bind', `curl_xml' and - `libvirt' plugins. + `virt' plugins. + * libxen (optional) + Used by the `xencpu' plugin. + + * libxmms (optional) * libyajl (optional) - Parse JSON data. This is needed for the `curl_json' and `log_logstash' - plugins. + Parse JSON data. This is needed for the `ceph', `curl_json', 'ovs_events', + 'ovs_stats' and `log_logstash' plugins. * libvarnish (optional) @@ -791,13 +1050,16 @@ Prerequisites `varnish' plugin. + * riemann-c-client (optional) + For the `write_riemann' plugin. + + Configuring / Compiling / Installing ------------------------------------ To configure, build and install collectd with the default settings, run - `./configure && make && make install'. For detailed, generic instructions - see INSTALL. For a complete list of configure options and their description, - run `./configure --help'. + `./configure && make && make install'. For a complete list of configure + options and their description, run `./configure --help'. By default, the configure script will check for all build dependencies and disable all plugins whose requirements cannot be fulfilled (any other plugin @@ -821,42 +1083,54 @@ Configuring / Compiling / Installing prefixed to all installation directories. This might be useful when creating packages for collectd. -Configuring with libjvm ------------------------ +Generating the configure script +------------------------------- - To determine the location of the required files of a Java installation is not - an easy task, because the locations vary with your kernel (Linux, SunOS, …) - and with your architecture (x86, SPARC, …) and there is no ‘java-config’ - script we could use. Configuration of the JVM library is therefore a bit - tricky. +Collectd ships with a `build.sh' script to generate the `configure' +script shipped with releases. - The easiest way to use the `--with-java=$JAVA_HOME' option, where - `$JAVA_HOME' is usually something like: - /usr/lib/jvm/java-1.5.0-sun-1.5.0.14 +To generate the `configure` script, you'll need the following dependencies: - The configure script will then use find(1) to look for the following files: +- autoconf +- automake +- flex +- bison +- libtool +- pkg-config - - jni.h - - jni_md.h - - libjvm.so +The `build.sh' script takes no arguments. - If found, appropriate CPP-flags and LD-flags are set and the following - library checks succeed. - If this doesn't work for you, you have the possibility to specify CPP-flags, - C-flags and LD-flags for the ‘Java’ plugin by hand, using the following three - (environment) variables: +Building on Windows +----------------------------------------------- - - JAVA_CPPFLAGS - - JAVA_CFLAGS - - JAVA_LDFLAGS +Collectd can be built on Windows using Cygwin, and the result is a binary that +runs natively on Windows. That is, Cygwin is only needed for building, not running, +collectd. - For example (shortened for demonstration purposes): +You will need to install the following Cygwin packages: +- automake +- bison +- flex +- git +- libtool +- make +- mingw64-x86_64-dlfcn +- mingw64-x86_64-gcc-core +- mingw64-x86_64-zlib +- pkg-config - ./configure JAVA_CPPFLAGS="-I$JAVA_HOME/include -I$JAVA_HOME/include/linux" +To build, just run the `build.sh' script in your Cygwin terminal. By default, it installs +to "C:/Program Files/collectd". You can change the location by setting the INSTALL_DIR +variable: + +$ export INSTALL_DIR="C:/some/other/install/directory" +$ ./build.sh + +or: + +$ INSTALL_DIR="C:/some/other/install/directory" ./build.sh - Adding "-ljvm" to the JAVA_LDFLAGS is done automatically, you don't have to - do that. Crosscompiling -------------- @@ -892,8 +1166,12 @@ Crosscompiling Contact ------- - For questions, bug reports, development information and basically all other - concerns please send an email to collectd's mailing list at + Please use GitHub to report bugs and submit pull requests: + . + See CONTRIBUTING.md for details. + + For questions, development information and basically all other concerns please + send an email to collectd's mailing list at . For live discussion and more personal contact visit us in IRC, we're in @@ -907,6 +1185,3 @@ Author Sebastian tokkee Harl , and many contributors (see `AUTHORS'). - Please send bug reports and patches to the mailing list, see `Contact' - above. - diff --git a/TODO b/TODO deleted file mode 100644 index 009eb7fca1..0000000000 --- a/TODO +++ /dev/null @@ -1,21 +0,0 @@ -* Finalize the onewire plugin. -* Custom notification messages? -* Implement moving-average calculation for the threshold stuff. - -src/battery.c: commend not working code. - -Wishlist: -* Port nfs module to solaris -* Port tape module to Linux -* Port the apple_sensors plugin to Linux/PPC. -* Maybe look into porting the serial module -* Build Darwin package -* Maybe let the network plugin configure whether or not notifications should be - sent/received. -* Maybe find a way for processes connected to the unixsock plugin to receive - notifications, too. - -http://developer.apple.com/documentation/DeviceDrivers/Conceptual/AccessingHardware/AH_IOKitLib_API/chapter_5_section_1.html -http://developer.apple.com/documentation/DeviceDrivers/Conceptual/IOKitFundamentals/index.html#//apple_ref/doc/uid/TP0000011 -http://www.gauchosoft.com/Software/X%20Resource%20Graph/ -http://johannes.sipsolutions.net/PowerBook/Apple_Motion_Sensor_Specification/ diff --git a/bindings/Makefile.am b/bindings/Makefile.am deleted file mode 100644 index 07373e87a6..0000000000 --- a/bindings/Makefile.am +++ /dev/null @@ -1,69 +0,0 @@ -SUBDIRS = - -if BUILD_WITH_JAVA -SUBDIRS += java -endif - -EXTRA_DIST = perl/Makefile.PL \ - perl/uninstall_mod.pl \ - perl/lib/Collectd.pm \ - perl/lib/Collectd/Unixsock.pm \ - perl/lib/Collectd/Plugins/Monitorus.pm \ - perl/lib/Collectd/Plugins/OpenVZ.pm - -CLEANFILES = \ - buildperl/Collectd.pm \ - buildperl/Collectd/Plugins/OpenVZ.pm \ - buildperl/Collectd/Unixsock.pm \ - buildperl/Makefile.PL \ - .perl-directory-stamp - -DISTCLEANFILES = \ - buildperl/Collectd.pm \ - buildperl/Collectd/Plugins/OpenVZ.pm \ - buildperl/Collectd/Unixsock.pm \ - buildperl/Makefile.PL \ - .perl-directory-stamp - -all-local: @PERL_BINDINGS@ - - -install-exec-local: - [ ! -f buildperl/Makefile ] || ( cd buildperl && $(MAKE) install ) - -# Perl 'make uninstall' does not work as well as wanted. -# So we do the work here. -uninstall-local: - @PERL@ -I$(DESTDIR)$(prefix) $(srcdir)/perl/uninstall_mod.pl Collectd - find $(DESTDIR)$(prefix) -name "perllocal.pod" -exec rm {} \; - -clean-local: - rm -rf buildperl - -perl: buildperl/Makefile - cd buildperl && $(MAKE) - -buildperl/Makefile: .perl-directory-stamp buildperl/Makefile.PL \ - $(top_builddir)/config.status - @# beautify the output a bit - @echo 'cd buildperl && @PERL@ Makefile.PL @PERL_BINDINGS_OPTIONS@' - @cd buildperl && ( if ! @PERL@ Makefile.PL @PERL_BINDINGS_OPTIONS@; then \ - echo ""; \ - echo 'Check whether you have set $$PERL_MM_OPT in your environment and try using ./configure --with-perl-bindings=""'; \ - echo ""; \ - fi ) - -buildperl/Makefile.PL: .perl-directory-stamp $(top_builddir)/config.status - -.perl-directory-stamp: - if test ! -d buildperl; then \ - mkdir -p buildperl/Collectd/Plugins; \ - cp $(srcdir)/perl/lib/Collectd.pm buildperl/; \ - cp $(srcdir)/perl/Makefile.PL buildperl/; \ - cp $(srcdir)/perl/lib/Collectd/Unixsock.pm buildperl/Collectd/; \ - cp $(srcdir)/perl/lib/Collectd/Plugins/OpenVZ.pm buildperl/Collectd/Plugins/; \ - fi - touch $@ - -.PHONY: perl - diff --git a/bindings/java/Makefile.am b/bindings/java/Makefile.am deleted file mode 100644 index f8e936a8af..0000000000 --- a/bindings/java/Makefile.am +++ /dev/null @@ -1,48 +0,0 @@ -EXTRA_DIST = org/collectd/api/CollectdConfigInterface.java \ - org/collectd/api/CollectdFlushInterface.java \ - org/collectd/api/CollectdInitInterface.java \ - org/collectd/api/Collectd.java \ - org/collectd/api/CollectdLogInterface.java \ - org/collectd/api/CollectdMatchFactoryInterface.java \ - org/collectd/api/CollectdMatchInterface.java \ - org/collectd/api/CollectdNotificationInterface.java \ - org/collectd/api/CollectdReadInterface.java \ - org/collectd/api/CollectdShutdownInterface.java \ - org/collectd/api/CollectdTargetFactoryInterface.java \ - org/collectd/api/CollectdTargetInterface.java \ - org/collectd/api/CollectdWriteInterface.java \ - org/collectd/api/DataSet.java \ - org/collectd/api/DataSource.java \ - org/collectd/api/Notification.java \ - org/collectd/api/OConfigItem.java \ - org/collectd/api/OConfigValue.java \ - org/collectd/api/PluginData.java \ - org/collectd/api/ValueList.java \ - org/collectd/java/GenericJMXConfConnection.java \ - org/collectd/java/GenericJMXConfMBean.java \ - org/collectd/java/GenericJMXConfValue.java \ - org/collectd/java/GenericJMX.java \ - org/collectd/java/JMXMemory.java - -java-build-stamp: org/collectd/api/*.java org/collectd/java/*.java - $(JAVAC) -d "." "$(srcdir)/org/collectd/api"/*.java - $(JAVAC) -d "." "$(srcdir)/org/collectd/java"/*.java - mkdir -p .libs - $(JAR) cf .libs/collectd-api.jar "org/collectd/api"/*.class - $(JAR) cf .libs/generic-jmx.jar "org/collectd/java"/*.class - touch "$@" - -all-local: java-build-stamp - -install-exec-local: java-build-stamp - mkdir -p "$(DESTDIR)$(pkgdatadir)/java" - $(INSTALL) -m 644 .libs/collectd-api.jar \ - "$(DESTDIR)$(pkgdatadir)/java" - $(INSTALL) -m 644 .libs/generic-jmx.jar \ - "$(DESTDIR)$(pkgdatadir)/java" - -clean-local: - rm -f "org/collectd/api"/*.class - rm -f "org/collectd/java"/*.class - rm -f .libs - rm -f "java-build-stamp" diff --git a/bindings/java/org/collectd/java/GenericJMXConfConnection.java b/bindings/java/org/collectd/java/GenericJMXConfConnection.java index ea0f2fa2e5..887c289562 100644 --- a/bindings/java/org/collectd/java/GenericJMXConfConnection.java +++ b/bindings/java/org/collectd/java/GenericJMXConfConnection.java @@ -52,7 +52,8 @@ class GenericJMXConfConnection private String _host = null; private String _instance_prefix = null; private String _service_url = null; - private MBeanServerConnection _jmx_connection = null; + private JMXConnector _jmx_connector = null; + private MBeanServerConnection _mbean_connection = null; private List _mbeans = null; /* @@ -92,55 +93,74 @@ private String getHost () /* {{{ */ return Collectd.getHostname(); } /* }}} String getHost */ -private void connect () /* {{{ */ -{ - JMXServiceURL service_url; - JMXConnector connector; - Map environment; + private void connect () /* {{{ */ + { + JMXServiceURL service_url; + Map environment; - if (_jmx_connection != null) - return; + // already connected + if (this._jmx_connector != null) { + return; + } - environment = null; - if (this._password != null) - { - String[] credentials; + environment = null; + if (this._password != null) + { + String[] credentials; - if (this._username == null) - this._username = new String ("monitorRole"); + if (this._username == null) + this._username = new String ("monitorRole"); - credentials = new String[] { this._username, this._password }; + credentials = new String[] { this._username, this._password }; - environment = new HashMap (); - environment.put (JMXConnector.CREDENTIALS, credentials); - environment.put(JMXConnectorFactory.PROTOCOL_PROVIDER_CLASS_LOADER, this.getClass().getClassLoader()); - } + environment = new HashMap (); + environment.put (JMXConnector.CREDENTIALS, credentials); + environment.put (JMXConnectorFactory.PROTOCOL_PROVIDER_CLASS_LOADER, this.getClass().getClassLoader()); + } - try - { - service_url = new JMXServiceURL (this._service_url); - connector = JMXConnectorFactory.connect (service_url, environment); - _jmx_connection = connector.getMBeanServerConnection (); - } - catch (Exception e) + try + { + service_url = new JMXServiceURL (this._service_url); + this._jmx_connector = JMXConnectorFactory.connect (service_url, environment); + this._mbean_connection = _jmx_connector.getMBeanServerConnection (); + } + catch (Exception e) + { + Collectd.logError ("GenericJMXConfConnection: " + + "Creating MBean server connection failed: " + e); + disconnect (); + return; + } + } /* }}} void connect */ + + private void disconnect () /* {{{ */ { - Collectd.logError ("GenericJMXConfConnection: " - + "Creating MBean server connection failed: " + e); - return; - } -} /* }}} void connect */ + try + { + if (this._jmx_connector != null) { + this._jmx_connector.close(); + } + } + catch (Exception e) + { + // It's fine if close throws an exception + } -/* - * public methods - * - * - * Host "tomcat0.mycompany" - * ServiceURL "service:jmx:rmi:///jndi/rmi://localhost:17264/jmxrmi" - * Collect "java.lang:type=GarbageCollector,name=Copy" - * Collect "java.lang:type=Memory" - * - * - */ + this._jmx_connector = null; + this._mbean_connection = null; + } /* }}} void disconnect */ + + /* + * public methods + * + * + * Host "tomcat0.mycompany" + * ServiceURL "service:jmx:rmi:///jndi/rmi://localhost:17264/jmxrmi" + * Collect "java.lang:type=GarbageCollector,name=Copy" + * Collect "java.lang:type=Memory" + * + * + */ public GenericJMXConfConnection (OConfigItem ci) /* {{{ */ throws IllegalArgumentException { @@ -217,9 +237,10 @@ public void query () /* {{{ */ { PluginData pd; + // try to connect connect (); - if (this._jmx_connection == null) + if (this._mbean_connection == null) return; Collectd.logDebug ("GenericJMXConfConnection.query: " @@ -234,11 +255,11 @@ public void query () /* {{{ */ { int status; - status = this._mbeans.get (i).query (this._jmx_connection, pd, + status = this._mbeans.get (i).query (this._mbean_connection, pd, this._instance_prefix); if (status != 0) { - this._jmx_connection = null; + disconnect (); return; } } /* for */ diff --git a/bindings/java/org/collectd/java/GenericJMXConfValue.java b/bindings/java/org/collectd/java/GenericJMXConfValue.java index 4b42c91171..2827daa58a 100644 --- a/bindings/java/org/collectd/java/GenericJMXConfValue.java +++ b/bindings/java/org/collectd/java/GenericJMXConfValue.java @@ -28,7 +28,10 @@ import java.util.Arrays; import java.util.List; +import java.util.Collection; import java.util.Set; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; import java.util.Iterator; import java.util.ArrayList; @@ -39,6 +42,7 @@ import javax.management.ObjectName; import javax.management.openmbean.OpenType; import javax.management.openmbean.CompositeData; +import javax.management.openmbean.TabularData; import javax.management.openmbean.InvalidKeyException; import org.collectd.api.Collectd; @@ -61,71 +65,64 @@ * * @see GenericJMXConfMBean */ -class GenericJMXConfValue -{ - private String _ds_name; - private DataSet _ds; - private List _attributes; - private String _instance_prefix; - private List _instance_from; - private boolean _is_table; +class GenericJMXConfValue { +private + String _ds_name; +private + DataSet _ds; +private + List _attributes; +private + String _instance_prefix; +private + List _instance_from; +private + String _plugin_name; +private + boolean _is_table; /** * Converts a generic (OpenType) object to a number. * * Returns null if a conversion is not possible or not implemented. */ - private Number genericObjectToNumber (Object obj, int ds_type) /* {{{ */ +private + Number genericObjectToNumber(Object obj, int ds_type) /* {{{ */ { - if (obj instanceof String) - { - String str = (String) obj; - - try - { + if (obj instanceof String) { + String str = (String)obj; + + try { if (ds_type == DataSource.TYPE_GAUGE) - return (new Double (str)); + return (new Double(str)); else - return (new Long (str)); - } - catch (NumberFormatException e) - { + return (new Long(str)); + } catch (NumberFormatException e) { return (null); } + } else if (obj instanceof Byte) { + return (new Byte((Byte)obj)); + } else if (obj instanceof Short) { + return (new Short((Short)obj)); + } else if (obj instanceof Integer) { + return (new Integer((Integer)obj)); + } else if (obj instanceof Long) { + return (new Long((Long)obj)); + } else if (obj instanceof Float) { + return (new Float((Float)obj)); + } else if (obj instanceof Double) { + return (new Double((Double)obj)); + } else if (obj instanceof BigDecimal) { + return (BigDecimal.ZERO.add((BigDecimal)obj)); + } else if (obj instanceof BigInteger) { + return (BigInteger.ZERO.add((BigInteger)obj)); + } else if (obj instanceof AtomicInteger) { + return (new Integer(((AtomicInteger)obj).get())); + } else if (obj instanceof AtomicLong) { + return (new Long(((AtomicLong)obj).get())); + } else if (obj instanceof Boolean) { + return (Boolean)obj ? 1 : 0; } - else if (obj instanceof Byte) - { - return (new Byte ((Byte) obj)); - } - else if (obj instanceof Short) - { - return (new Short ((Short) obj)); - } - else if (obj instanceof Integer) - { - return (new Integer ((Integer) obj)); - } - else if (obj instanceof Long) - { - return (new Long ((Long) obj)); - } - else if (obj instanceof Float) - { - return (new Float ((Float) obj)); - } - else if (obj instanceof Double) - { - return (new Double ((Double) obj)); - } - else if (obj instanceof BigDecimal) - { - return (BigDecimal.ZERO.add ((BigDecimal) obj)); - } - else if (obj instanceof BigInteger) - { - return (BigInteger.ZERO.add ((BigInteger) obj)); - } - return (null); } /* }}} Number genericObjectToNumber */ @@ -134,21 +131,21 @@ else if (obj instanceof BigInteger) * * Returns null if one or more objects could not be converted. */ - private List genericListToNumber (List objects) /* {{{ */ +private + List genericListToNumber(List objects) /* {{{ */ { - List ret = new ArrayList (); - List dsrc = this._ds.getDataSources (); + List ret = new ArrayList(); + List dsrc = this._ds.getDataSources(); - assert (objects.size () == dsrc.size ()); + assert(objects.size() == dsrc.size()); - for (int i = 0; i < objects.size (); i++) - { + for (int i = 0; i < objects.size(); i++) { Number n; - n = genericObjectToNumber (objects.get (i), dsrc.get (i).getType ()); + n = genericObjectToNumber(objects.get(i), dsrc.get(i).getType()); if (n == null) return (null); - ret.add (n); + ret.add(n); } return (ret); @@ -162,280 +159,293 @@ private List genericListToNumber (List objects) /* {{{ */ * CompositeData doesn't have the specified key or one returned * object cannot converted to a number then the function will return null. */ - private List genericCompositeToNumber (List cdlist, /* {{{ */ - String key) - { - List objects = new ArrayList (); +private + List genericCompositeToNumber(List cdlist, /* {{{ */ + String key) { + List objects = new ArrayList(); - for (int i = 0; i < cdlist.size (); i++) - { + for (int i = 0; i < cdlist.size(); i++) { CompositeData cd; Object value; - cd = cdlist.get (i); - try - { - value = cd.get (key); - } - catch (InvalidKeyException e) - { + cd = cdlist.get(i); + try { + value = cd.get(key); + } catch (InvalidKeyException e) { return (null); } - objects.add (value); + objects.add(value); } - return (genericListToNumber (objects)); + return (genericListToNumber(objects)); } /* }}} List genericCompositeToNumber */ - private void submitTable (List objects, ValueList vl, /* {{{ */ - String instancePrefix) - { +private + void submitTable(List objects, ValueList vl, /* {{{ */ + String instancePrefix) { List cdlist; Set keySet = null; Iterator keyIter; - cdlist = new ArrayList (); - for (int i = 0; i < objects.size (); i++) - { + cdlist = new ArrayList(); + for (int i = 0; i < objects.size(); i++) { Object obj; - obj = objects.get (i); - if (obj instanceof CompositeData) - { + obj = objects.get(i); + if (obj instanceof CompositeData) { CompositeData cd; - cd = (CompositeData) obj; + cd = (CompositeData)obj; if (i == 0) - keySet = cd.getCompositeType ().keySet (); - - cdlist.add (cd); - } - else - { - Collectd.logError ("GenericJMXConfValue: At least one of the " - + "attributes was not of type `CompositeData', as required " - + "when table is set to `true'."); + keySet = cd.getCompositeType().keySet(); + + cdlist.add(cd); + } else { + Collectd.logError( + "GenericJMXConfValue: At least one of the " + + "attributes was not of type `CompositeData', as required " + + "when table is set to `true'."); return; } } - assert (keySet != null); + assert(keySet != null); - keyIter = keySet.iterator (); - while (keyIter.hasNext ()) - { + keyIter = keySet.iterator(); + while (keyIter.hasNext()) { String key; List values; - key = keyIter.next (); - values = genericCompositeToNumber (cdlist, key); - if (values == null) - { - Collectd.logError ("GenericJMXConfValue: Cannot build a list of " - + "numbers for key " + key + ". Most likely not all attributes " - + "have this key."); + key = keyIter.next(); + values = genericCompositeToNumber(cdlist, key); + if (values == null) { + Collectd.logError("GenericJMXConfValue: Cannot build a list of " + + "numbers for key " + key + + ". Most likely not all attributes " + + "have this key."); continue; } if (instancePrefix == null) - vl.setTypeInstance (key); + vl.setTypeInstance(key); else - vl.setTypeInstance (instancePrefix + key); - vl.setValues (values); + vl.setTypeInstance(instancePrefix + key); + vl.setValues(values); - Collectd.dispatchValues (vl); + Collectd.dispatchValues(vl); } } /* }}} void submitTable */ - private void submitScalar (List objects, ValueList vl, /* {{{ */ - String instancePrefix) - { +private + void submitScalar(List objects, ValueList vl, /* {{{ */ + String instancePrefix) { List values; - values = genericListToNumber (objects); - if (values == null) - { - Collectd.logError ("GenericJMXConfValue: Cannot convert list of " - + "objects to numbers."); + values = genericListToNumber(objects); + if (values == null) { + Collectd.logError("GenericJMXConfValue: Cannot convert list of " + + "objects to numbers."); return; } if (instancePrefix == null) - vl.setTypeInstance (""); + vl.setTypeInstance(""); else - vl.setTypeInstance (instancePrefix); - vl.setValues (values); + vl.setTypeInstance(instancePrefix); + vl.setValues(values); - Collectd.dispatchValues (vl); + Collectd.dispatchValues(vl); } /* }}} void submitScalar */ - private Object queryAttributeRecursive (CompositeData parent, /* {{{ */ - List attrName) - { +private + Object queryAttributeRecursive(CompositeData parent, /* {{{ */ + List attrName) { String key; Object value; - key = attrName.remove (0); + key = attrName.remove(0); - try - { - value = parent.get (key); - } - catch (InvalidKeyException e) - { + try { + value = parent.get(key); + } catch (InvalidKeyException e) { return (null); } - if (attrName.size () == 0) - { + if (attrName.size() == 0) { return (value); + } else { + if (value instanceof CompositeData) + return (queryAttributeRecursive((CompositeData)value, attrName)); + else if (value instanceof TabularData) + return (queryAttributeRecursive((TabularData)value, attrName)); + else + return (null); } - else - { + } /* }}} queryAttributeRecursive */ + +private + Object queryAttributeRecursive(TabularData parent, /* {{{ */ + List attrName) { + String key; + Object value = null; + + key = attrName.remove(0); + + @SuppressWarnings("unchecked") Collection table = + (Collection)parent.values(); + for (CompositeData compositeData : table) { + if (key.equals(compositeData.get("key"))) { + value = compositeData.get("value"); + } + } + if (null == value) { + return (null); + } + + if (attrName.size() == 0) { + return (value); + } else { if (value instanceof CompositeData) - return (queryAttributeRecursive ((CompositeData) value, attrName)); + return (queryAttributeRecursive((CompositeData)value, attrName)); + else if (value instanceof TabularData) + return (queryAttributeRecursive((TabularData)value, attrName)); else return (null); } } /* }}} queryAttributeRecursive */ - private Object queryAttribute (MBeanServerConnection conn, /* {{{ */ - ObjectName objName, String attrName) - { +private + Object queryAttribute(MBeanServerConnection conn, /* {{{ */ + ObjectName objName, String attrName) { List attrNameList; String key; Object value; String[] attrNameArray; - attrNameList = new ArrayList (); + attrNameList = new ArrayList(); - attrNameArray = attrName.split ("\\."); + attrNameArray = attrName.split("\\."); key = attrNameArray[0]; for (int i = 1; i < attrNameArray.length; i++) - attrNameList.add (attrNameArray[i]); - - try - { - try - { - value = conn.getAttribute (objName, key); + attrNameList.add(attrNameArray[i]); + + try { + try { + value = conn.getAttribute(objName, key); + } catch (javax.management.AttributeNotFoundException e) { + value = + conn.invoke(objName, key, /* args = */ null, /* types = */ null); } - catch (javax.management.AttributeNotFoundException e) - { - value = conn.invoke (objName, key, /* args = */ null, /* types = */ null); - } - } - catch (Exception e) - { - Collectd.logError ("GenericJMXConfValue.query: getAttribute failed: " - + e); + } catch (Exception e) { + Collectd.logError("GenericJMXConfValue.query: getAttribute failed: " + e); return (null); } - if (attrNameList.size () == 0) - { + if (attrNameList.size() == 0) { return (value); - } - else - { + } else { if (value instanceof CompositeData) - return (queryAttributeRecursive((CompositeData) value, attrNameList)); - else if (value instanceof OpenType) - { - OpenType ot = (OpenType) value; - Collectd.logNotice ("GenericJMXConfValue: Handling of OpenType \"" - + ot.getTypeName () + "\" is not yet implemented."); + return (queryAttributeRecursive((CompositeData)value, attrNameList)); + else if (value instanceof TabularData) + return (queryAttributeRecursive((TabularData)value, attrNameList)); + else if (value instanceof OpenType) { + OpenType ot = (OpenType)value; + Collectd.logNotice("GenericJMXConfValue: Handling of OpenType \"" + + ot.getTypeName() + "\" is not yet implemented."); return (null); - } - else - { - Collectd.logError ("GenericJMXConfValue: Received object of " - + "unknown class."); + } else { + Collectd.logError( + "GenericJMXConfValue: Received object of " + "unknown class. " + + attrName + " " + + ((value == null) ? "null" : value.getClass().getName())); return (null); } } } /* }}} Object queryAttribute */ - private String join (String separator, List list) /* {{{ */ +private + String join(String separator, List list) /* {{{ */ { StringBuffer sb; - sb = new StringBuffer (); + sb = new StringBuffer(); - for (int i = 0; i < list.size (); i++) - { + for (int i = 0; i < list.size(); i++) { if (i > 0) - sb.append ("-"); - sb.append (list.get (i)); + sb.append("-"); + sb.append(list.get(i)); } - return (sb.toString ()); + return (sb.toString()); } /* }}} String join */ - private String getConfigString (OConfigItem ci) /* {{{ */ +private + String getConfigString(OConfigItem ci) /* {{{ */ { List values; OConfigValue v; - values = ci.getValues (); - if (values.size () != 1) - { - Collectd.logError ("GenericJMXConfValue: The " + ci.getKey () - + " configuration option needs exactly one string argument."); + values = ci.getValues(); + if (values.size() != 1) { + Collectd.logError( + "GenericJMXConfValue: The " + ci.getKey() + + " configuration option needs exactly one string argument."); return (null); } - v = values.get (0); - if (v.getType () != OConfigValue.OCONFIG_TYPE_STRING) - { - Collectd.logError ("GenericJMXConfValue: The " + ci.getKey () - + " configuration option needs exactly one string argument."); + v = values.get(0); + if (v.getType() != OConfigValue.OCONFIG_TYPE_STRING) { + Collectd.logError( + "GenericJMXConfValue: The " + ci.getKey() + + " configuration option needs exactly one string argument."); return (null); } - return (v.getString ()); + return (v.getString()); } /* }}} String getConfigString */ - private Boolean getConfigBoolean (OConfigItem ci) /* {{{ */ +private + Boolean getConfigBoolean(OConfigItem ci) /* {{{ */ { List values; OConfigValue v; Boolean b; - values = ci.getValues (); - if (values.size () != 1) - { - Collectd.logError ("GenericJMXConfValue: The " + ci.getKey () - + " configuration option needs exactly one boolean argument."); + values = ci.getValues(); + if (values.size() != 1) { + Collectd.logError( + "GenericJMXConfValue: The " + ci.getKey() + + " configuration option needs exactly one boolean argument."); return (null); } - v = values.get (0); - if (v.getType () != OConfigValue.OCONFIG_TYPE_BOOLEAN) - { - Collectd.logError ("GenericJMXConfValue: The " + ci.getKey () - + " configuration option needs exactly one boolean argument."); + v = values.get(0); + if (v.getType() != OConfigValue.OCONFIG_TYPE_BOOLEAN) { + Collectd.logError( + "GenericJMXConfValue: The " + ci.getKey() + + " configuration option needs exactly one boolean argument."); return (null); } - return (new Boolean (v.getBoolean ())); + return (new Boolean(v.getBoolean())); } /* }}} String getConfigBoolean */ /** * Constructs a new value with the configured properties. */ - public GenericJMXConfValue (OConfigItem ci) /* {{{ */ - throws IllegalArgumentException - { +public + GenericJMXConfValue(OConfigItem ci) /* {{{ */ + throws IllegalArgumentException { List children; Iterator iter; this._ds_name = null; this._ds = null; - this._attributes = new ArrayList (); + this._attributes = new ArrayList(); this._instance_prefix = null; - this._instance_from = new ArrayList (); + this._instance_from = new ArrayList(); + this._plugin_name = null; this._is_table = false; /* @@ -449,51 +459,44 @@ public GenericJMXConfValue (OConfigItem ci) /* {{{ */ * InstancePrefix "heap-" * */ - children = ci.getChildren (); - iter = children.iterator (); - while (iter.hasNext ()) - { - OConfigItem child = iter.next (); - - if (child.getKey ().equalsIgnoreCase ("Type")) - { - String tmp = getConfigString (child); + children = ci.getChildren(); + iter = children.iterator(); + while (iter.hasNext()) { + OConfigItem child = iter.next(); + + if (child.getKey().equalsIgnoreCase("Type")) { + String tmp = getConfigString(child); if (tmp != null) this._ds_name = tmp; - } - else if (child.getKey ().equalsIgnoreCase ("Table")) - { - Boolean tmp = getConfigBoolean (child); + } else if (child.getKey().equalsIgnoreCase("Table")) { + Boolean tmp = getConfigBoolean(child); if (tmp != null) - this._is_table = tmp.booleanValue (); - } - else if (child.getKey ().equalsIgnoreCase ("Attribute")) - { - String tmp = getConfigString (child); + this._is_table = tmp.booleanValue(); + } else if (child.getKey().equalsIgnoreCase("Attribute")) { + String tmp = getConfigString(child); if (tmp != null) - this._attributes.add (tmp); - } - else if (child.getKey ().equalsIgnoreCase ("InstancePrefix")) - { - String tmp = getConfigString (child); + this._attributes.add(tmp); + } else if (child.getKey().equalsIgnoreCase("InstancePrefix")) { + String tmp = getConfigString(child); if (tmp != null) this._instance_prefix = tmp; - } - else if (child.getKey ().equalsIgnoreCase ("InstanceFrom")) - { - String tmp = getConfigString (child); + } else if (child.getKey().equalsIgnoreCase("InstanceFrom")) { + String tmp = getConfigString(child); if (tmp != null) - this._instance_from.add (tmp); - } - else - throw (new IllegalArgumentException ("Unknown option: " - + child.getKey ())); + this._instance_from.add(tmp); + } else if (child.getKey().equalsIgnoreCase("PluginName")) { + String tmp = getConfigString(child); + if (tmp != null) + this._plugin_name = tmp; + } else + throw( + new IllegalArgumentException("Unknown option: " + child.getKey())); } if (this._ds_name == null) - throw (new IllegalArgumentException ("No data set was defined.")); - else if (this._attributes.size () == 0) - throw (new IllegalArgumentException ("No attribute was defined.")); + throw(new IllegalArgumentException("No data set was defined.")); + else if (this._attributes.size() == 0) + throw(new IllegalArgumentException("No attribute was defined.")); } /* }}} GenericJMXConfValue (OConfigItem ci) */ /** @@ -505,94 +508,90 @@ else if (this._attributes.size () == 0) * @param pd Preset naming components. The members host, plugin and * plugin instance will be used. */ - public void query (MBeanServerConnection conn, ObjectName objName, /* {{{ */ - PluginData pd) - { +public + void query(MBeanServerConnection conn, ObjectName objName, /* {{{ */ + PluginData pd) { ValueList vl; List dsrc; List values; List instanceList; String instancePrefix; - if (this._ds == null) - { - this._ds = Collectd.getDS (this._ds_name); - if (this._ds == null) - { - Collectd.logError ("GenericJMXConfValue: Unknown type: " - + this._ds_name); + if (this._ds == null) { + this._ds = Collectd.getDS(this._ds_name); + if (this._ds == null) { + Collectd.logError("GenericJMXConfValue: Unknown type: " + + this._ds_name); return; } } - dsrc = this._ds.getDataSources (); - if (dsrc.size () != this._attributes.size ()) - { - Collectd.logError ("GenericJMXConfValue.query: The data set " - + this._ds_name + " has " + this._ds.getDataSources ().size () - + " data sources, but there were " + this._attributes.size () - + " attributes configured. This doesn't match!"); + dsrc = this._ds.getDataSources(); + if (dsrc.size() != this._attributes.size()) { + Collectd.logError( + "GenericJMXConfValue.query: The data set " + this._ds_name + " has " + + this._ds.getDataSources().size() + " data sources, but there were " + + this._attributes.size() + + " attributes configured. This doesn't match!"); this._ds = null; return; } - vl = new ValueList (pd); - vl.setType (this._ds_name); + vl = new ValueList(pd); + vl.setType(this._ds_name); + if (this._plugin_name != null) { + vl.setPlugin(this._plugin_name); + } /* * Build the instnace prefix from the fixed string prefix and the * properties of the objName. */ - instanceList = new ArrayList (); - for (int i = 0; i < this._instance_from.size (); i++) - { + instanceList = new ArrayList(); + for (int i = 0; i < this._instance_from.size(); i++) { String propertyName; String propertyValue; - propertyName = this._instance_from.get (i); - propertyValue = objName.getKeyProperty (propertyName); - if (propertyValue == null) - { - Collectd.logError ("GenericJMXConfMBean: " - + "No such property in object name: " + propertyName); - } - else - { - instanceList.add (propertyValue); + propertyName = this._instance_from.get(i); + propertyValue = objName.getKeyProperty(propertyName); + if (propertyValue == null) { + Collectd.logError("GenericJMXConfMBean: " + + "No such property in object name: " + propertyName); + } else { + instanceList.add(propertyValue); } } if (this._instance_prefix != null) - instancePrefix = new String (this._instance_prefix - + join ("-", instanceList)); + instancePrefix = + new String(this._instance_prefix + join("-", instanceList)); else - instancePrefix = join ("-", instanceList); + instancePrefix = join("-", instanceList); /* * Build a list of `Object's which is then passed to `submitTable' and * `submitScalar'. */ - values = new ArrayList (); - assert (dsrc.size () == this._attributes.size ()); - for (int i = 0; i < this._attributes.size (); i++) - { + values = new ArrayList(); + assert(dsrc.size() == this._attributes.size()); + for (int i = 0; i < this._attributes.size(); i++) { Object v; - v = queryAttribute (conn, objName, this._attributes.get (i)); - if (v == null) - { - Collectd.logError ("GenericJMXConfValue.query: " - + "Querying attribute " + this._attributes.get (i) + " failed."); + v = queryAttribute(conn, objName, this._attributes.get(i)); + if (v == null) { + Collectd.logError( + "GenericJMXConfValue.query: " + "Querying attribute " + + this._attributes.get(i) + " failed."); return; } - values.add (v); + values.add(v); } if (this._is_table) - submitTable (values, vl, instancePrefix); + submitTable(values, vl, instancePrefix); else - submitScalar (values, vl, instancePrefix); + submitScalar(values, vl, instancePrefix); } /* }}} void query */ } /* class GenericJMXConfValue */ diff --git a/bindings/perl/Makefile.PL b/bindings/perl/Makefile.PL index f2ef2fd33c..68fb260d58 100644 --- a/bindings/perl/Makefile.PL +++ b/bindings/perl/Makefile.PL @@ -1,8 +1,9 @@ use ExtUtils::MakeMaker; WriteMakefile( - 'NAME' => 'Collectd', - 'AUTHOR' => 'Sebastian Harl ', + NAME => 'Collectd', + AUTHOR => 'Sebastian Harl ', + TEST_REQUIRES => { 'YAML::Any' => 0 }, ); # vim: set sw=4 ts=4 tw=78 noexpandtab : diff --git a/bindings/perl/lib/Collectd.pm b/bindings/perl/lib/Collectd.pm index c1adf44262..7e89e45f5d 100644 --- a/bindings/perl/lib/Collectd.pm +++ b/bindings/perl/lib/Collectd.pm @@ -172,7 +172,6 @@ sub plugin_call_all { my $type = shift; my %plugins; - my $interval; our $cb_name = undef; @@ -181,13 +180,13 @@ sub plugin_call_all { } if (TYPE_LOG != $type) { - DEBUG ("Collectd::plugin_call: type = \"$type\" (" + DEBUG ("Collectd::plugin_call_all: type = \"$type\" (" . $types{$type} . "), args=\"" . join(', ', map { defined($_) ? $_ : '' } @_) . "\""); } if (! defined $plugins[$type]) { - ERROR ("Collectd::plugin_call: unknown type \"$type\""); + ERROR ("Collectd::plugin_call_all: unknown type \"$type\""); return; } @@ -196,21 +195,9 @@ sub plugin_call_all { %plugins = %{$plugins[$type]}; } - $interval = plugin_get_interval (); - foreach my $plugin (keys %plugins) { - my $p = $plugins{$plugin}; - - my $status = 0; - - if ($p->{'wait_left'} > 0) { - $p->{'wait_left'} -= $interval; - } - - next if ($p->{'wait_left'} > 0); - - $cb_name = $p->{'cb_name'}; - $status = call_by_name (@_); + $cb_name = $plugins{$plugin}; + my $status = call_by_name (@_); if (! $status) { my $err = undef; @@ -230,23 +217,7 @@ sub plugin_call_all { } if ($status) { - $p->{'wait_left'} = 0; - $p->{'wait_time'} = $interval; - } - elsif (TYPE_READ == $type) { - if ($p->{'wait_time'} < $interval) { - $p->{'wait_time'} = $interval; - } - - $p->{'wait_left'} = $p->{'wait_time'}; - $p->{'wait_time'} *= 2; - - if ($p->{'wait_time'} > 86400) { - $p->{'wait_time'} = 86400; - } - - WARNING ("${plugin}->read() failed with status $status. " - . "Will suspend it for $p->{'wait_left'} seconds."); + #NOOP } elsif (TYPE_INIT == $type) { ERROR ("${plugin}->init() failed with status $status. " @@ -309,21 +280,29 @@ sub plugin_register { } elsif ((TYPE_DATASET != $type) && (! ref $data)) { my $pkg = scalar caller; - - my %p : shared; - if ($data !~ m/^$pkg\:\:/) { $data = $pkg . "::" . $data; } - - %p = ( - wait_time => plugin_get_interval (), - wait_left => 0, - cb_name => $data, - ); - + if (TYPE_READ == $type) { + return plugin_register_read($name, $data); + } + if (TYPE_WRITE == $type) { + return plugin_register_write($name, $data); + } + if (TYPE_LOG == $type) { + return plugin_register_log($name, $data); + } + if (TYPE_NOTIF == $type) { + return plugin_register_notification($name, $data); + } + if (TYPE_FLUSH == $type) { + #For collectd-5.6 only + lock %{$plugins[$type]}; + $plugins[$type]->{$name} = $data; + return plugin_register_flush($name, $data); + } lock %{$plugins[$type]}; - $plugins[$type]->{$name} = \%p; + $plugins[$type]->{$name} = $data; } else { ERROR ("Collectd::plugin_register: Invalid data."); @@ -351,6 +330,21 @@ sub plugin_unregister { lock %cf_callbacks; delete $cf_callbacks{$name}; } + elsif (TYPE_READ == $type) { + return plugin_unregister_read ($name); + } + elsif (TYPE_WRITE == $type) { + return plugin_unregister_write($name); + } + elsif (TYPE_LOG == $type) { + return plugin_unregister_log ($name); + } + elsif (TYPE_NOTIF == $type) { + return plugin_unregister_notification($name); + } + elsif (TYPE_FLUSH == $type) { + return plugin_unregister_flush($name); + } elsif (defined $plugins[$type]) { lock %{$plugins[$type]}; delete $plugins[$type]->{$name}; diff --git a/bindings/perl/lib/Collectd/MockDaemon.pm b/bindings/perl/lib/Collectd/MockDaemon.pm new file mode 100644 index 0000000000..300d2c4a85 --- /dev/null +++ b/bindings/perl/lib/Collectd/MockDaemon.pm @@ -0,0 +1,10756 @@ +package Collectd::MockDaemon; +use strict; +use warnings; +use IO::Socket::UNIX; +use IO::Handle; +use File::Temp; +use Carp; +use YAML::Any qw/Load/; + +use base 'Exporter'; +our @EXPORT = qw/ mockd_start mockd_stop /; + +my ($pid, $childfh, $sock_path); +my $data = Load(do{local $/; }); +my @metrics = sort keys %$data; + +sub mockd_start { + croak "don't call me twice" if defined $pid; + $sock_path = File::Temp::mktemp('collectd-mocksock.XXXXXX'); + + my $sock = IO::Socket::UNIX->new( + Type => SOCK_STREAM, + Local => $sock_path, + Listen => 1 + ) or die "Can't open Unix domain socket `$sock_path': $!"; + $pid = open(my $kid, "-|"); + croak "cannot fork(): $!" unless defined $pid; + if($pid) { + $childfh = $kid; + } else { + daemon($sock); + exit 0; + } + return $sock_path; +} + +sub mockd_stop { + return unless defined $childfh; + kill 'TERM', $pid; # kill it with fire + unlink $sock_path; + $childfh = $pid = undef; +} + +sub daemon { + my $sock = shift; + while(my $csock = $sock->accept) { + while(<$csock>) { + chomp; + /^LISTVAL\s*$/i and $csock->print(listval()), next; + /^GETVAL\s+(.*)$/i and $csock->print(getval($1), "\n"), next; + /^PUTVAL|PUTNOTIF|FLUSH\s+(.*)$/i and $csock->print("-1 Unimplemented command `$1'\n"), next; + $csock->print("-1 Unknown command: $_\n"), next; + } + } +} + +sub listval { + my @timevals = ( + 1479835353.75, + 1479835354.434, + 1479835356, + 1479835354, + 1479835354, + 1479835350.820, + 1479835351, + 1479835354.2, + 1479835353, + ); + my $i = 0; + return print_nvalues(scalar @metrics) . + join('', map { $timevals[$i++ % @timevals] . " $_\n" } @metrics); +} + +sub getval { + my ($val) = @_; + $val =~ s/(?:^\s+|\s+$)//g; + $val =~ s/(?:^"|"$)//g; + my $id = _parse_identifier($val) or return "-1 Cannot parse identifier `$val'"; + return "-1 No such value ($val)" unless exists $data->{$val}; + my $result = print_nvalues(scalar keys %{$data->{$val}}); + return $result . join("\n", map { "$_=$data->{$val}{$_}" } keys %{$data->{$val}}); +} + +sub _parse_identifier +{ + my $s = shift; + my ($plugin_instance, $type_instance); + + my ($host, $plugin, $type) = split ('/', $s); + return unless length $host and length $plugin and length $type; + + ($plugin, $plugin_instance) = split ('-', $plugin, 2); + ($type, $type_instance) = split ('-', $type, 2); + + my $ident = + { + host => $host, + plugin => $plugin, + type => $type + }; + $ident->{'plugin_instance'} = $plugin_instance if (defined ($plugin_instance)); + $ident->{'type_instance'} = $type_instance if (defined ($type_instance)); + + return $ident; +} + +sub print_nvalues { + my $nvals = shift; + return sprintf("%d Value%s found\n", $nvals, $nvals > 1 ? 's' : ''); +} + +1; + +__DATA__ +--- +a1d8f6310/cpu-0/cpu-idle: + value: 9.999973e+01 +a1d8f6310/cpu-0/cpu-interrupt: + value: 0.000000e+00 +a1d8f6310/cpu-0/cpu-nice: + value: 0.000000e+00 +a1d8f6310/cpu-0/cpu-softirq: + value: 0.000000e+00 +a1d8f6310/cpu-0/cpu-steal: + value: 0.000000e+00 +a1d8f6310/cpu-0/cpu-system: + value: 0.000000e+00 +a1d8f6310/cpu-0/cpu-user: + value: 9.999996e-02 +a1d8f6310/cpu-0/cpu-wait: + value: 0.000000e+00 +a1d8f6310/cpu-1/cpu-idle: + value: 9.989979e+01 +a1d8f6310/cpu-1/cpu-interrupt: + value: 0.000000e+00 +a1d8f6310/cpu-1/cpu-nice: + value: 0.000000e+00 +a1d8f6310/cpu-1/cpu-softirq: + value: 0.000000e+00 +a1d8f6310/cpu-1/cpu-steal: + value: 0.000000e+00 +a1d8f6310/cpu-1/cpu-system: + value: 0.000000e+00 +a1d8f6310/cpu-1/cpu-user: + value: 0.000000e+00 +a1d8f6310/cpu-1/cpu-wait: + value: 0.000000e+00 +a1d8f6310/df-boot/df_complex-free: + value: 4.368712e+08 +a1d8f6310/df-boot/df_complex-reserved: + value: 2.684109e+07 +a1d8f6310/df-boot/df_complex-used: + value: 6.471270e+07 +a1d8f6310/df-boot/df_inodes-free: + value: 3.271800e+04 +a1d8f6310/df-boot/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-boot/df_inodes-used: + value: 5.000000e+01 +a1d8f6310/df-boot/percent_bytes-free: + value: 8.267421e+01 +a1d8f6310/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +a1d8f6310/df-boot/percent_bytes-used: + value: 1.224634e+01 +a1d8f6310/df-boot/percent_inodes-free: + value: 9.984741e+01 +a1d8f6310/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-boot/percent_inodes-used: + value: 1.525879e-01 +a1d8f6310/df-data1/df_complex-free: + value: 2.636943e+10 +a1d8f6310/df-data1/df_complex-reserved: + value: 1.476235e+09 +a1d8f6310/df-data1/df_complex-used: + value: 1.215783e+09 +a1d8f6310/df-data1/df_inodes-free: + value: 1.797470e+06 +a1d8f6310/df-data1/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-data1/df_inodes-used: + value: 4.770000e+03 +a1d8f6310/df-data1/percent_bytes-free: + value: 9.073681e+01 +a1d8f6310/df-data1/percent_bytes-reserved: + value: 5.079704e+00 +a1d8f6310/df-data1/percent_bytes-used: + value: 4.183491e+00 +a1d8f6310/df-data1/percent_inodes-free: + value: 9.973533e+01 +a1d8f6310/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-data1/percent_inodes-used: + value: 2.646706e-01 +a1d8f6310/df-dev-shm/df_complex-free: + value: 9.842483e+08 +a1d8f6310/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +a1d8f6310/df-dev-shm/df_complex-used: + value: 0.000000e+00 +a1d8f6310/df-dev-shm/df_inodes-free: + value: 2.402940e+05 +a1d8f6310/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +a1d8f6310/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +a1d8f6310/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +a1d8f6310/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +a1d8f6310/df-dev-shm/percent_inodes-free: + value: 9.999958e+01 +a1d8f6310/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-dev-shm/percent_inodes-used: + value: 4.161551e-04 +a1d8f6310/df-root/df_complex-free: + value: 1.072081e+10 +a1d8f6310/df-root/df_complex-reserved: + value: 6.442435e+08 +a1d8f6310/df-root/df_complex-used: + value: 1.317655e+09 +a1d8f6310/df-root/df_inodes-free: + value: 7.423750e+05 +a1d8f6310/df-root/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-root/df_inodes-used: + value: 4.405700e+04 +a1d8f6310/df-root/percent_bytes-free: + value: 8.453092e+01 +a1d8f6310/df-root/percent_bytes-reserved: + value: 5.079700e+00 +a1d8f6310/df-root/percent_bytes-used: + value: 1.038938e+01 +a1d8f6310/df-root/percent_inodes-free: + value: 9.439786e+01 +a1d8f6310/df-root/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-root/percent_inodes-used: + value: 5.602138e+00 +a1d8f6310/df-var/df_complex-free: + value: 7.454015e+09 +a1d8f6310/df-var/df_complex-reserved: + value: 4.294943e+08 +a1d8f6310/df-var/df_complex-used: + value: 5.716091e+08 +a1d8f6310/df-var/df_inodes-free: + value: 5.222690e+05 +a1d8f6310/df-var/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-var/df_inodes-used: + value: 2.019000e+03 +a1d8f6310/df-var/percent_bytes-free: + value: 8.815979e+01 +a1d8f6310/df-var/percent_bytes-reserved: + value: 5.079695e+00 +a1d8f6310/df-var/percent_bytes-used: + value: 6.760509e+00 +a1d8f6310/df-var/percent_inodes-free: + value: 9.961491e+01 +a1d8f6310/df-var/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6310/df-var/percent_inodes-used: + value: 3.850937e-01 +a1d8f6310/disk-vda/disk_merged: + read: 0.000000e+00 + write: 9.999910e-02 +a1d8f6310/disk-vda/disk_octets: + read: 0.000000e+00 + write: 1.228789e+03 +a1d8f6310/disk-vda/disk_ops: + read: 0.000000e+00 + write: 1.999982e-01 +a1d8f6310/disk-vda/disk_time: + read: 0.000000e+00 + write: 4.999955e-01 +a1d8f6310/disk-vda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6310/disk-vda6/disk_merged: + read: 0.000000e+00 + write: 9.999878e-02 +a1d8f6310/disk-vda6/disk_octets: + read: 0.000000e+00 + write: 1.228786e+03 +a1d8f6310/disk-vda6/disk_ops: + read: 0.000000e+00 + write: 1.999976e-01 +a1d8f6310/disk-vda6/disk_time: + read: 0.000000e+00 + write: 4.999941e-01 +a1d8f6310/load/load: + longterm: 7.000000e-02 + midterm: 6.000000e-02 + shortterm: 0.000000e+00 +a1d8f6310/memory/memory-buffered: + value: 2.348646e+08 +a1d8f6310/memory/memory-cached: + value: 5.790310e+08 +a1d8f6310/memory/memory-free: + value: 2.351022e+08 +a1d8f6310/memory/memory-used: + value: 9.194988e+08 +a1d8f6310/network/if_octets: + rx: 0.000000e+00 + tx: 6.586002e+02 +a1d8f6310/network/if_packets: + rx: 0.000000e+00 + tx: 4.999991e-01 +a1d8f6310/network/queue_length: + value: 0.000000e+00 +a1d8f6310/network/total_values-dispatch-accepted: + value: 0.000000e+00 +a1d8f6310/network/total_values-dispatch-rejected: + value: 0.000000e+00 +a1d8f6310/network/total_values-send-accepted: + value: 1.480003e+01 +a1d8f6310/network/total_values-send-rejected: + value: 0.000000e+00 +a1d8f6310/swap/swap-cached: + value: 4.173824e+06 +a1d8f6310/swap/swap-free: + value: 2.118148e+09 +a1d8f6310/swap/swap-used: + value: 2.515354e+07 +a1d8f6310/swap/swap_io-in: + value: 0.000000e+00 +a1d8f6310/swap/swap_io-out: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 6.999952e-01 +a1d8f6310/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +a1d8f6310/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-active_anon: + value: 5.748900e+04 +a1d8f6310/vmem/vmpage_number-active_file: + value: 1.023940e+05 +a1d8f6310/vmem/vmpage_number-anon_pages: + value: 5.851400e+04 +a1d8f6310/vmem/vmpage_number-anon_transparent_hugepages: + value: 1.920000e+02 +a1d8f6310/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-dirty: + value: 2.000000e+00 +a1d8f6310/vmem/vmpage_number-file_pages: + value: 1.997240e+05 +a1d8f6310/vmem/vmpage_number-free_pages: + value: 5.739800e+04 +a1d8f6310/vmem/vmpage_number-inactive_anon: + value: 1.004470e+05 +a1d8f6310/vmem/vmpage_number-inactive_file: + value: 9.618100e+04 +a1d8f6310/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-kernel_stack: + value: 1.280000e+02 +a1d8f6310/vmem/vmpage_number-mapped: + value: 4.414000e+03 +a1d8f6310/vmem/vmpage_number-mlock: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-page_table_pages: + value: 2.171000e+03 +a1d8f6310/vmem/vmpage_number-shmem: + value: 1.290000e+02 +a1d8f6310/vmem/vmpage_number-slab_reclaimable: + value: 5.264400e+04 +a1d8f6310/vmem/vmpage_number-slab_unreclaimable: + value: 5.743000e+03 +a1d8f6310/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-unstable: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-vmscan_write: + value: 7.366000e+03 +a1d8f6310/vmem/vmpage_number-writeback: + value: 0.000000e+00 +a1d8f6310/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +a1d8f6410/cpu-0/cpu-idle: + value: 9.920010e+01 +a1d8f6410/cpu-0/cpu-interrupt: + value: 0.000000e+00 +a1d8f6410/cpu-0/cpu-nice: + value: 0.000000e+00 +a1d8f6410/cpu-0/cpu-softirq: + value: 0.000000e+00 +a1d8f6410/cpu-0/cpu-steal: + value: 0.000000e+00 +a1d8f6410/cpu-0/cpu-system: + value: 1.000001e-01 +a1d8f6410/cpu-0/cpu-user: + value: 3.000003e-01 +a1d8f6410/cpu-0/cpu-wait: + value: 0.000000e+00 +a1d8f6410/cpu-1/cpu-idle: + value: 9.900000e+01 +a1d8f6410/cpu-1/cpu-interrupt: + value: 0.000000e+00 +a1d8f6410/cpu-1/cpu-nice: + value: 0.000000e+00 +a1d8f6410/cpu-1/cpu-softirq: + value: 0.000000e+00 +a1d8f6410/cpu-1/cpu-steal: + value: 0.000000e+00 +a1d8f6410/cpu-1/cpu-system: + value: 2.000000e-01 +a1d8f6410/cpu-1/cpu-user: + value: 2.000002e-01 +a1d8f6410/cpu-1/cpu-wait: + value: 2.000000e-01 +a1d8f6410/df-boot/df_complex-free: + value: 4.369080e+08 +a1d8f6410/df-boot/df_complex-reserved: + value: 2.684109e+07 +a1d8f6410/df-boot/df_complex-used: + value: 6.467584e+07 +a1d8f6410/df-boot/df_inodes-free: + value: 3.271800e+04 +a1d8f6410/df-boot/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-boot/df_inodes-used: + value: 5.000000e+01 +a1d8f6410/df-boot/percent_bytes-free: + value: 8.268118e+01 +a1d8f6410/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +a1d8f6410/df-boot/percent_bytes-used: + value: 1.223936e+01 +a1d8f6410/df-boot/percent_inodes-free: + value: 9.984741e+01 +a1d8f6410/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-boot/percent_inodes-used: + value: 1.525879e-01 +a1d8f6410/df-data1/df_complex-free: + value: 2.740489e+10 +a1d8f6410/df-data1/df_complex-reserved: + value: 1.476235e+09 +a1d8f6410/df-data1/df_complex-used: + value: 1.803182e+08 +a1d8f6410/df-data1/df_inodes-free: + value: 1.802223e+06 +a1d8f6410/df-data1/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-data1/df_inodes-used: + value: 1.700000e+01 +a1d8f6410/df-data1/percent_bytes-free: + value: 9.429982e+01 +a1d8f6410/df-data1/percent_bytes-reserved: + value: 5.079704e+00 +a1d8f6410/df-data1/percent_bytes-used: + value: 6.204723e-01 +a1d8f6410/df-data1/percent_inodes-free: + value: 9.999906e+01 +a1d8f6410/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-data1/percent_inodes-used: + value: 9.432706e-04 +a1d8f6410/df-dev-shm/df_complex-free: + value: 2.008437e+09 +a1d8f6410/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +a1d8f6410/df-dev-shm/df_complex-used: + value: 0.000000e+00 +a1d8f6410/df-dev-shm/df_inodes-free: + value: 4.903400e+05 +a1d8f6410/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +a1d8f6410/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +a1d8f6410/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +a1d8f6410/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +a1d8f6410/df-dev-shm/percent_inodes-free: + value: 9.999979e+01 +a1d8f6410/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-dev-shm/percent_inodes-used: + value: 2.039397e-04 +a1d8f6410/df-root/df_complex-free: + value: 1.030750e+10 +a1d8f6410/df-root/df_complex-reserved: + value: 6.442435e+08 +a1d8f6410/df-root/df_complex-used: + value: 1.730961e+09 +a1d8f6410/df-root/df_inodes-free: + value: 7.294150e+05 +a1d8f6410/df-root/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-root/df_inodes-used: + value: 5.701700e+04 +a1d8f6410/df-root/percent_bytes-free: + value: 8.127210e+01 +a1d8f6410/df-root/percent_bytes-reserved: + value: 5.079700e+00 +a1d8f6410/df-root/percent_bytes-used: + value: 1.364820e+01 +a1d8f6410/df-root/percent_inodes-free: + value: 9.274991e+01 +a1d8f6410/df-root/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-root/percent_inodes-used: + value: 7.250086e+00 +a1d8f6410/df-var/df_complex-free: + value: 6.861853e+09 +a1d8f6410/df-var/df_complex-reserved: + value: 4.294943e+08 +a1d8f6410/df-var/df_complex-used: + value: 1.163772e+09 +a1d8f6410/df-var/df_inodes-free: + value: 5.104480e+05 +a1d8f6410/df-var/df_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-var/df_inodes-used: + value: 1.384000e+04 +a1d8f6410/df-var/percent_bytes-free: + value: 8.115620e+01 +a1d8f6410/df-var/percent_bytes-reserved: + value: 5.079695e+00 +a1d8f6410/df-var/percent_bytes-used: + value: 1.376411e+01 +a1d8f6410/df-var/percent_inodes-free: + value: 9.736023e+01 +a1d8f6410/df-var/percent_inodes-reserved: + value: 0.000000e+00 +a1d8f6410/df-var/percent_inodes-used: + value: 2.639771e+00 +a1d8f6410/disk-vda/disk_merged: + read: 0.000000e+00 + write: 3.569994e+01 +a1d8f6410/disk-vda/disk_octets: + read: 0.000000e+00 + write: 1.724413e+05 +a1d8f6410/disk-vda/disk_ops: + read: 0.000000e+00 + write: 6.399989e+00 +a1d8f6410/disk-vda/disk_time: + read: 0.000000e+00 + write: 3.099995e+01 +a1d8f6410/disk-vda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda2/disk_merged: + read: 0.000000e+00 + write: 3.999993e-01 +a1d8f6410/disk-vda2/disk_octets: + read: 0.000000e+00 + write: 7.372786e+03 +a1d8f6410/disk-vda2/disk_ops: + read: 0.000000e+00 + write: 1.399997e+00 +a1d8f6410/disk-vda2/disk_time: + read: 0.000000e+00 + write: 9.999982e-01 +a1d8f6410/disk-vda3/disk_merged: + read: 0.000000e+00 + write: 3.529993e+01 +a1d8f6410/disk-vda3/disk_octets: + read: 0.000000e+00 + write: 1.650685e+05 +a1d8f6410/disk-vda3/disk_ops: + read: 0.000000e+00 + write: 4.999991e+00 +a1d8f6410/disk-vda3/disk_time: + read: 0.000000e+00 + write: 3.939993e+01 +a1d8f6410/disk-vda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/disk-vda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1d8f6410/load/load: + longterm: 0.000000e+00 + midterm: 3.000000e-02 + shortterm: 5.000000e-02 +a1d8f6410/memory/memory-buffered: + value: 3.095921e+08 +a1d8f6410/memory/memory-cached: + value: 1.241870e+09 +a1d8f6410/memory/memory-free: + value: 2.926060e+08 +a1d8f6410/memory/memory-used: + value: 2.172809e+09 +a1d8f6410/network/if_octets: + rx: 0.000000e+00 + tx: 6.586998e+02 +a1d8f6410/network/if_packets: + rx: 0.000000e+00 + tx: 4.999999e-01 +a1d8f6410/network/queue_length: + value: 0.000000e+00 +a1d8f6410/network/total_values-dispatch-accepted: + value: 0.000000e+00 +a1d8f6410/network/total_values-dispatch-rejected: + value: 0.000000e+00 +a1d8f6410/network/total_values-send-accepted: + value: 1.479998e+01 +a1d8f6410/network/total_values-send-rejected: + value: 0.000000e+00 +a1d8f6410/swap/swap-cached: + value: 2.048000e+05 +a1d8f6410/swap/swap-free: + value: 2.147271e+09 +a1d8f6410/swap/swap-used: + value: 0.000000e+00 +a1d8f6410/swap/swap_io-in: + value: 0.000000e+00 +a1d8f6410/swap/swap_io-out: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 6.400115e+00 +a1d8f6410/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 1.684030e+02 +a1d8f6410/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-active_anon: + value: 2.143920e+05 +a1d8f6410/vmem/vmpage_number-active_file: + value: 1.979880e+05 +a1d8f6410/vmem/vmpage_number-anon_pages: + value: 2.734200e+04 +a1d8f6410/vmem/vmpage_number-anon_transparent_hugepages: + value: 3.880000e+02 +a1d8f6410/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-dirty: + value: 2.700000e+01 +a1d8f6410/vmem/vmpage_number-file_pages: + value: 3.788250e+05 +a1d8f6410/vmem/vmpage_number-free_pages: + value: 7.143700e+04 +a1d8f6410/vmem/vmpage_number-inactive_anon: + value: 1.176200e+04 +a1d8f6410/vmem/vmpage_number-inactive_file: + value: 1.806700e+05 +a1d8f6410/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-kernel_stack: + value: 3.000000e+02 +a1d8f6410/vmem/vmpage_number-mapped: + value: 1.012100e+04 +a1d8f6410/vmem/vmpage_number-mlock: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-page_table_pages: + value: 1.602000e+03 +a1d8f6410/vmem/vmpage_number-shmem: + value: 1.170000e+02 +a1d8f6410/vmem/vmpage_number-slab_reclaimable: + value: 2.856060e+05 +a1d8f6410/vmem/vmpage_number-slab_unreclaimable: + value: 6.201000e+03 +a1d8f6410/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-unstable: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-vmscan_write: + value: 7.900000e+01 +a1d8f6410/vmem/vmpage_number-writeback: + value: 0.000000e+00 +a1d8f6410/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +a1ddf6210/cpu-0/cpu-idle: + value: 9.020090e+01 +a1ddf6210/cpu-0/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-0/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-0/cpu-softirq: + value: 4.000034e-01 +a1ddf6210/cpu-0/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-0/cpu-system: + value: 3.000031e-01 +a1ddf6210/cpu-0/cpu-user: + value: 4.200047e+00 +a1ddf6210/cpu-0/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-1/cpu-idle: + value: 9.969991e+01 +a1ddf6210/cpu-1/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-1/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-1/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-1/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-1/cpu-system: + value: 0.000000e+00 +a1ddf6210/cpu-1/cpu-user: + value: 2.000011e-01 +a1ddf6210/cpu-1/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-10/cpu-idle: + value: 9.979942e+01 +a1ddf6210/cpu-10/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-10/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-10/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-10/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-10/cpu-system: + value: 0.000000e+00 +a1ddf6210/cpu-10/cpu-user: + value: 9.999943e-02 +a1ddf6210/cpu-10/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-11/cpu-idle: + value: 9.989938e+01 +a1ddf6210/cpu-11/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-11/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-11/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-11/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-11/cpu-system: + value: 9.999938e-02 +a1ddf6210/cpu-11/cpu-user: + value: 0.000000e+00 +a1ddf6210/cpu-11/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-2/cpu-idle: + value: 9.959987e+01 +a1ddf6210/cpu-2/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-2/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-2/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-2/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-2/cpu-system: + value: 1.999997e-01 +a1ddf6210/cpu-2/cpu-user: + value: 9.999988e-02 +a1ddf6210/cpu-2/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-3/cpu-idle: + value: 9.989985e+01 +a1ddf6210/cpu-3/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-3/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-3/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-3/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-3/cpu-system: + value: 0.000000e+00 +a1ddf6210/cpu-3/cpu-user: + value: 0.000000e+00 +a1ddf6210/cpu-3/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-4/cpu-idle: + value: 9.989964e+01 +a1ddf6210/cpu-4/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-4/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-4/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-4/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-4/cpu-system: + value: 0.000000e+00 +a1ddf6210/cpu-4/cpu-user: + value: 0.000000e+00 +a1ddf6210/cpu-4/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-5/cpu-idle: + value: 9.989956e+01 +a1ddf6210/cpu-5/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-5/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-5/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-5/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-5/cpu-system: + value: 0.000000e+00 +a1ddf6210/cpu-5/cpu-user: + value: 0.000000e+00 +a1ddf6210/cpu-5/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-6/cpu-idle: + value: 8.899957e+01 +a1ddf6210/cpu-6/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-6/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-6/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-6/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-6/cpu-system: + value: 1.599993e+00 +a1ddf6210/cpu-6/cpu-user: + value: 9.499956e+00 +a1ddf6210/cpu-6/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-7/cpu-idle: + value: 9.969946e+01 +a1ddf6210/cpu-7/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-7/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-7/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-7/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-7/cpu-system: + value: 1.999989e-01 +a1ddf6210/cpu-7/cpu-user: + value: 9.999947e-02 +a1ddf6210/cpu-7/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-8/cpu-idle: + value: 9.079948e+01 +a1ddf6210/cpu-8/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-8/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-8/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-8/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-8/cpu-system: + value: 8.999950e-01 +a1ddf6210/cpu-8/cpu-user: + value: 8.099954e+00 +a1ddf6210/cpu-8/cpu-wait: + value: 0.000000e+00 +a1ddf6210/cpu-9/cpu-idle: + value: 9.989942e+01 +a1ddf6210/cpu-9/cpu-interrupt: + value: 0.000000e+00 +a1ddf6210/cpu-9/cpu-nice: + value: 0.000000e+00 +a1ddf6210/cpu-9/cpu-softirq: + value: 0.000000e+00 +a1ddf6210/cpu-9/cpu-steal: + value: 0.000000e+00 +a1ddf6210/cpu-9/cpu-system: + value: 9.999942e-02 +a1ddf6210/cpu-9/cpu-user: + value: 0.000000e+00 +a1ddf6210/cpu-9/cpu-wait: + value: 0.000000e+00 +a1ddf6210/df-boot/df_complex-free: + value: 3.880919e+08 +a1ddf6210/df-boot/df_complex-reserved: + value: 2.684109e+07 +a1ddf6210/df-boot/df_complex-used: + value: 1.134920e+08 +a1ddf6210/df-boot/df_inodes-free: + value: 3.270600e+04 +a1ddf6210/df-boot/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-boot/df_inodes-used: + value: 6.200000e+01 +a1ddf6210/df-boot/percent_bytes-free: + value: 7.344315e+01 +a1ddf6210/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +a1ddf6210/df-boot/percent_bytes-used: + value: 2.147740e+01 +a1ddf6210/df-boot/percent_inodes-free: + value: 9.981079e+01 +a1ddf6210/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-boot/percent_inodes-used: + value: 1.892090e-01 +a1ddf6210/df-data1/df_complex-free: + value: 5.390209e+11 +a1ddf6210/df-data1/df_complex-reserved: + value: 2.933339e+10 +a1ddf6210/df-data1/df_complex-used: + value: 9.088414e+09 +a1ddf6210/df-data1/df_inodes-free: + value: 3.587710e+07 +a1ddf6210/df-data1/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-data1/df_inodes-used: + value: 7.000000e+01 +a1ddf6210/df-data1/percent_bytes-free: + value: 9.334621e+01 +a1ddf6210/df-data1/percent_bytes-reserved: + value: 5.079879e+00 +a1ddf6210/df-data1/percent_bytes-used: + value: 1.573908e+00 +a1ddf6210/df-data1/percent_inodes-free: + value: 9.999979e+01 +a1ddf6210/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-data1/percent_inodes-used: + value: 1.951102e-04 +a1ddf6210/df-data2/df_complex-free: + value: 1.042212e+13 +a1ddf6210/df-data2/df_complex-reserved: + value: 1.200219e+11 +a1ddf6210/df-data2/df_complex-used: + value: 1.271712e+12 +a1ddf6210/df-data2/df_inodes-free: + value: 7.319628e+08 +a1ddf6210/df-data2/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-data2/df_inodes-used: + value: 5.985960e+05 +a1ddf6210/df-data2/percent_bytes-free: + value: 8.821947e+01 +a1ddf6210/df-data2/percent_bytes-reserved: + value: 1.015942e+00 +a1ddf6210/df-data2/percent_bytes-used: + value: 1.076458e+01 +a1ddf6210/df-data2/percent_inodes-free: + value: 9.991829e+01 +a1ddf6210/df-data2/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-data2/percent_inodes-used: + value: 8.171274e-02 +a1ddf6210/df-data3/df_complex-free: + value: 1.143610e+13 +a1ddf6210/df-data3/df_complex-reserved: + value: 1.200219e+11 +a1ddf6210/df-data3/df_complex-used: + value: 2.577290e+11 +a1ddf6210/df-data3/df_inodes-free: + value: 7.323576e+08 +a1ddf6210/df-data3/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-data3/df_inodes-used: + value: 2.037680e+05 +a1ddf6210/df-data3/percent_bytes-free: + value: 9.680247e+01 +a1ddf6210/df-data3/percent_bytes-reserved: + value: 1.015942e+00 +a1ddf6210/df-data3/percent_bytes-used: + value: 2.181582e+00 +a1ddf6210/df-data3/percent_inodes-free: + value: 9.997218e+01 +a1ddf6210/df-data3/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-data3/percent_inodes-used: + value: 2.781583e-02 +a1ddf6210/df-dev-shm/df_complex-free: + value: 3.375733e+10 +a1ddf6210/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +a1ddf6210/df-dev-shm/df_complex-used: + value: 0.000000e+00 +a1ddf6210/df-dev-shm/df_inodes-free: + value: 8.241535e+06 +a1ddf6210/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +a1ddf6210/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +a1ddf6210/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +a1ddf6210/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +a1ddf6210/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +a1ddf6210/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-dev-shm/percent_inodes-used: + value: 1.213366e-05 +a1ddf6210/df-root/df_complex-free: + value: 2.006712e+08 +a1ddf6210/df-root/df_complex-reserved: + value: 1.073725e+08 +a1ddf6210/df-root/df_complex-used: + value: 1.805705e+09 +a1ddf6210/df-root/df_inodes-free: + value: 7.542600e+04 +a1ddf6210/df-root/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-root/df_inodes-used: + value: 5.564600e+04 +a1ddf6210/df-root/percent_bytes-free: + value: 9.493617e+00 +a1ddf6210/df-root/percent_bytes-reserved: + value: 5.079720e+00 +a1ddf6210/df-root/percent_bytes-used: + value: 8.542667e+01 +a1ddf6210/df-root/percent_inodes-free: + value: 5.754547e+01 +a1ddf6210/df-root/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-root/percent_inodes-used: + value: 4.245453e+01 +a1ddf6210/df-tmp/df_complex-free: + value: 1.102356e+08 +a1ddf6210/df-tmp/df_complex-reserved: + value: 0.000000e+00 +a1ddf6210/df-tmp/df_complex-used: + value: 2.398208e+07 +a1ddf6210/df-tmp/df_inodes-free: + value: 8.241515e+06 +a1ddf6210/df-tmp/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-tmp/df_inodes-used: + value: 2.100000e+01 +a1ddf6210/df-tmp/percent_bytes-free: + value: 8.213196e+01 +a1ddf6210/df-tmp/percent_bytes-reserved: + value: 0.000000e+00 +a1ddf6210/df-tmp/percent_bytes-used: + value: 1.786804e+01 +a1ddf6210/df-tmp/percent_inodes-free: + value: 9.999974e+01 +a1ddf6210/df-tmp/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-tmp/percent_inodes-used: + value: 2.548069e-04 +a1ddf6210/df-var/df_complex-free: + value: 6.870528e+09 +a1ddf6210/df-var/df_complex-reserved: + value: 4.294943e+08 +a1ddf6210/df-var/df_complex-used: + value: 1.155097e+09 +a1ddf6210/df-var/df_inodes-free: + value: 5.196230e+05 +a1ddf6210/df-var/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-var/df_inodes-used: + value: 4.665000e+03 +a1ddf6210/df-var/percent_bytes-free: + value: 8.125880e+01 +a1ddf6210/df-var/percent_bytes-reserved: + value: 5.079695e+00 +a1ddf6210/df-var/percent_bytes-used: + value: 1.366151e+01 +a1ddf6210/df-var/percent_inodes-free: + value: 9.911022e+01 +a1ddf6210/df-var/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6210/df-var/percent_inodes-used: + value: 8.897781e-01 +a1ddf6210/disk-sda/disk_merged: + read: 0.000000e+00 + write: 2.080016e+01 +a1ddf6210/disk-sda/disk_octets: + read: 0.000000e+00 + write: 1.212425e+05 +a1ddf6210/disk-sda/disk_ops: + read: 0.000000e+00 + write: 8.700063e+00 +a1ddf6210/disk-sda/disk_time: + read: 0.000000e+00 + write: 1.000007e-01 +a1ddf6210/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 1.960018e+01 +a1ddf6210/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 1.138698e+05 +a1ddf6210/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 8.200073e+00 +a1ddf6210/disk-sda2/disk_time: + read: 0.000000e+00 + write: 1.000009e-01 +a1ddf6210/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 1.200011e+00 +a1ddf6210/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 6.144060e+03 +a1ddf6210/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 3.000029e-01 +a1ddf6210/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 1.228812e+03 +a1ddf6210/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 2.000019e-01 +a1ddf6210/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdb/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdb/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdb/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdb/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdc/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdc/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdc/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/disk-sdc/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6210/load/load: + longterm: 9.000000e-02 + midterm: 1.400000e-01 + shortterm: 1.400000e-01 +a1ddf6210/memory/memory-buffered: + value: 7.775150e+08 +a1ddf6210/memory/memory-cached: + value: 2.349433e+10 +a1ddf6210/memory/memory-free: + value: 2.759657e+10 +a1ddf6210/memory/memory-used: + value: 1.564624e+10 +a1ddf6210/network/if_octets: + rx: 0.000000e+00 + tx: 1.455100e+03 +a1ddf6210/network/if_packets: + rx: 0.000000e+00 + tx: 1.100000e+00 +a1ddf6210/network/queue_length: + value: 0.000000e+00 +a1ddf6210/network/total_values-dispatch-accepted: + value: 0.000000e+00 +a1ddf6210/network/total_values-dispatch-rejected: + value: 0.000000e+00 +a1ddf6210/network/total_values-send-accepted: + value: 2.720003e+01 +a1ddf6210/network/total_values-send-rejected: + value: 0.000000e+00 +a1ddf6210/swap/swap-cached: + value: 0.000000e+00 +a1ddf6210/swap/swap-free: + value: 2.147475e+09 +a1ddf6210/swap/swap-used: + value: 0.000000e+00 +a1ddf6210/swap/swap_io-in: + value: 0.000000e+00 +a1ddf6210/swap/swap_io-out: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 1.770240e+04 +a1ddf6210/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 1.100000e+02 +a1ddf6210/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-active_anon: + value: 7.455600e+05 +a1ddf6210/vmem/vmpage_number-active_file: + value: 3.175860e+05 +a1ddf6210/vmem/vmpage_number-anon_pages: + value: 5.005000e+04 +a1ddf6210/vmem/vmpage_number-anon_transparent_hugepages: + value: 1.356000e+03 +a1ddf6210/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-dirty: + value: 1.550000e+02 +a1ddf6210/vmem/vmpage_number-file_pages: + value: 5.925744e+06 +a1ddf6210/vmem/vmpage_number-free_pages: + value: 6.737445e+06 +a1ddf6210/vmem/vmpage_number-inactive_anon: + value: 4.923000e+03 +a1ddf6210/vmem/vmpage_number-inactive_file: + value: 5.601994e+06 +a1ddf6210/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-kernel_stack: + value: 3.480000e+02 +a1ddf6210/vmem/vmpage_number-mapped: + value: 6.515000e+03 +a1ddf6210/vmem/vmpage_number-mlock: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-page_table_pages: + value: 4.479000e+03 +a1ddf6210/vmem/vmpage_number-shmem: + value: 6.170000e+03 +a1ddf6210/vmem/vmpage_number-slab_reclaimable: + value: 2.916436e+06 +a1ddf6210/vmem/vmpage_number-slab_unreclaimable: + value: 4.737700e+04 +a1ddf6210/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-unstable: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-writeback: + value: 0.000000e+00 +a1ddf6210/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +a1ddf6510/cpu-0/cpu-idle: + value: 9.159977e+01 +a1ddf6510/cpu-0/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-0/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-0/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-0/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-0/cpu-system: + value: 2.999997e+00 +a1ddf6510/cpu-0/cpu-user: + value: 5.200008e+00 +a1ddf6510/cpu-0/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-1/cpu-idle: + value: 9.989949e+01 +a1ddf6510/cpu-1/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-1/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-1/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-1/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-1/cpu-system: + value: 9.999952e-02 +a1ddf6510/cpu-1/cpu-user: + value: 0.000000e+00 +a1ddf6510/cpu-1/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-10/cpu-idle: + value: 9.799903e+01 +a1ddf6510/cpu-10/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-10/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-10/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-10/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-10/cpu-system: + value: 1.199988e+00 +a1ddf6510/cpu-10/cpu-user: + value: 5.999943e-01 +a1ddf6510/cpu-10/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-11/cpu-idle: + value: 9.999894e+01 +a1ddf6510/cpu-11/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-11/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-11/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-11/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-11/cpu-system: + value: 0.000000e+00 +a1ddf6510/cpu-11/cpu-user: + value: 0.000000e+00 +a1ddf6510/cpu-11/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-2/cpu-idle: + value: 9.989933e+01 +a1ddf6510/cpu-2/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-2/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-2/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-2/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-2/cpu-system: + value: 0.000000e+00 +a1ddf6510/cpu-2/cpu-user: + value: 0.000000e+00 +a1ddf6510/cpu-2/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-3/cpu-idle: + value: 9.989927e+01 +a1ddf6510/cpu-3/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-3/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-3/cpu-softirq: + value: 9.999927e-02 +a1ddf6510/cpu-3/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-3/cpu-system: + value: 0.000000e+00 +a1ddf6510/cpu-3/cpu-user: + value: 0.000000e+00 +a1ddf6510/cpu-3/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-4/cpu-idle: + value: 9.999933e+01 +a1ddf6510/cpu-4/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-4/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-4/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-4/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-4/cpu-system: + value: 0.000000e+00 +a1ddf6510/cpu-4/cpu-user: + value: 9.999930e-02 +a1ddf6510/cpu-4/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-5/cpu-idle: + value: 9.999932e+01 +a1ddf6510/cpu-5/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-5/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-5/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-5/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-5/cpu-system: + value: 0.000000e+00 +a1ddf6510/cpu-5/cpu-user: + value: 0.000000e+00 +a1ddf6510/cpu-5/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-6/cpu-idle: + value: 9.589926e+01 +a1ddf6510/cpu-6/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-6/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-6/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-6/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-6/cpu-system: + value: 2.099986e+00 +a1ddf6510/cpu-6/cpu-user: + value: 1.999987e+00 +a1ddf6510/cpu-6/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-7/cpu-idle: + value: 9.679919e+01 +a1ddf6510/cpu-7/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-7/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-7/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-7/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-7/cpu-system: + value: 2.199982e+00 +a1ddf6510/cpu-7/cpu-user: + value: 1.099991e+00 +a1ddf6510/cpu-7/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-8/cpu-idle: + value: 9.439919e+01 +a1ddf6510/cpu-8/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-8/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-8/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-8/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-8/cpu-system: + value: 4.399963e+00 +a1ddf6510/cpu-8/cpu-user: + value: 1.099991e+00 +a1ddf6510/cpu-8/cpu-wait: + value: 0.000000e+00 +a1ddf6510/cpu-9/cpu-idle: + value: 9.949910e+01 +a1ddf6510/cpu-9/cpu-interrupt: + value: 0.000000e+00 +a1ddf6510/cpu-9/cpu-nice: + value: 0.000000e+00 +a1ddf6510/cpu-9/cpu-softirq: + value: 0.000000e+00 +a1ddf6510/cpu-9/cpu-steal: + value: 0.000000e+00 +a1ddf6510/cpu-9/cpu-system: + value: 1.999982e-01 +a1ddf6510/cpu-9/cpu-user: + value: 9.999913e-02 +a1ddf6510/cpu-9/cpu-wait: + value: 0.000000e+00 +a1ddf6510/df-boot/df_complex-free: + value: 4.369039e+08 +a1ddf6510/df-boot/df_complex-reserved: + value: 2.684109e+07 +a1ddf6510/df-boot/df_complex-used: + value: 6.467994e+07 +a1ddf6510/df-boot/df_inodes-free: + value: 3.271800e+04 +a1ddf6510/df-boot/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-boot/df_inodes-used: + value: 5.000000e+01 +a1ddf6510/df-boot/percent_bytes-free: + value: 8.268041e+01 +a1ddf6510/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +a1ddf6510/df-boot/percent_bytes-used: + value: 1.224014e+01 +a1ddf6510/df-boot/percent_inodes-free: + value: 9.984741e+01 +a1ddf6510/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-boot/percent_inodes-used: + value: 1.525879e-01 +a1ddf6510/df-data1/df_complex-free: + value: 5.378703e+11 +a1ddf6510/df-data1/df_complex-reserved: + value: 2.879652e+10 +a1ddf6510/df-data1/df_complex-used: + value: 2.072412e+08 +a1ddf6510/df-data1/df_inodes-free: + value: 3.522052e+07 +a1ddf6510/df-data1/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-data1/df_inodes-used: + value: 1.300000e+01 +a1ddf6510/df-data1/percent_bytes-free: + value: 9.488357e+01 +a1ddf6510/df-data1/percent_bytes-reserved: + value: 5.079879e+00 +a1ddf6510/df-data1/percent_bytes-used: + value: 3.655860e-02 +a1ddf6510/df-data1/percent_inodes-free: + value: 9.999996e+01 +a1ddf6510/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-data1/percent_inodes-used: + value: 3.691029e-05 +a1ddf6510/df-dev-shm/df_complex-free: + value: 3.375725e+10 +a1ddf6510/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +a1ddf6510/df-dev-shm/df_complex-used: + value: 0.000000e+00 +a1ddf6510/df-dev-shm/df_inodes-free: + value: 8.241515e+06 +a1ddf6510/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +a1ddf6510/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +a1ddf6510/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +a1ddf6510/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +a1ddf6510/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +a1ddf6510/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-dev-shm/percent_inodes-used: + value: 1.213369e-05 +a1ddf6510/df-root/df_complex-free: + value: 1.057486e+10 +a1ddf6510/df-root/df_complex-reserved: + value: 6.442435e+08 +a1ddf6510/df-root/df_complex-used: + value: 1.463607e+09 +a1ddf6510/df-root/df_inodes-free: + value: 7.435400e+05 +a1ddf6510/df-root/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-root/df_inodes-used: + value: 4.289200e+04 +a1ddf6510/df-root/percent_bytes-free: + value: 8.338012e+01 +a1ddf6510/df-root/percent_bytes-reserved: + value: 5.079700e+00 +a1ddf6510/df-root/percent_bytes-used: + value: 1.154018e+01 +a1ddf6510/df-root/percent_inodes-free: + value: 9.454601e+01 +a1ddf6510/df-root/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-root/percent_inodes-used: + value: 5.454000e+00 +a1ddf6510/df-var/df_complex-free: + value: 6.990479e+09 +a1ddf6510/df-var/df_complex-reserved: + value: 4.294943e+08 +a1ddf6510/df-var/df_complex-used: + value: 1.035145e+09 +a1ddf6510/df-var/df_inodes-free: + value: 5.169860e+05 +a1ddf6510/df-var/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-var/df_inodes-used: + value: 7.302000e+03 +a1ddf6510/df-var/percent_bytes-free: + value: 8.267748e+01 +a1ddf6510/df-var/percent_bytes-reserved: + value: 5.079695e+00 +a1ddf6510/df-var/percent_bytes-used: + value: 1.224282e+01 +a1ddf6510/df-var/percent_inodes-free: + value: 9.860725e+01 +a1ddf6510/df-var/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6510/df-var/percent_inodes-used: + value: 1.392746e+00 +a1ddf6510/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda/disk_octets: + read: 0.000000e+00 + write: 2.457548e+03 +a1ddf6510/disk-sda/disk_ops: + read: 0.000000e+00 + write: 5.999873e-01 +a1ddf6510/disk-sda/disk_time: + read: 0.000000e+00 + write: 9.999788e-01 +a1ddf6510/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 2.457548e+03 +a1ddf6510/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 5.999872e-01 +a1ddf6510/disk-sda2/disk_time: + read: 0.000000e+00 + write: 9.999786e-01 +a1ddf6510/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6510/load/load: + longterm: 0.000000e+00 + midterm: 0.000000e+00 + shortterm: 0.000000e+00 +a1ddf6510/memory/memory-buffered: + value: 2.371871e+08 +a1ddf6510/memory/memory-cached: + value: 1.447993e+09 +a1ddf6510/memory/memory-free: + value: 6.351406e+10 +a1ddf6510/memory/memory-used: + value: 2.315260e+09 +a1ddf6510/network/if_octets: + rx: 0.000000e+00 + tx: 1.052800e+03 +a1ddf6510/network/if_packets: + rx: 0.000000e+00 + tx: 8.000000e-01 +a1ddf6510/network/queue_length: + value: 0.000000e+00 +a1ddf6510/network/total_values-dispatch-accepted: + value: 0.000000e+00 +a1ddf6510/network/total_values-dispatch-rejected: + value: 0.000000e+00 +a1ddf6510/network/total_values-send-accepted: + value: 2.280001e+01 +a1ddf6510/network/total_values-send-rejected: + value: 0.000000e+00 +a1ddf6510/swap/swap-cached: + value: 0.000000e+00 +a1ddf6510/swap/swap-free: + value: 2.147475e+09 +a1ddf6510/swap/swap-used: + value: 0.000000e+00 +a1ddf6510/swap/swap_io-in: + value: 0.000000e+00 +a1ddf6510/swap/swap_io-out: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 3.700034e+00 +a1ddf6510/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +a1ddf6510/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-active_anon: + value: 8.369400e+04 +a1ddf6510/vmem/vmpage_number-active_file: + value: 2.449340e+05 +a1ddf6510/vmem/vmpage_number-anon_pages: + value: 4.576400e+04 +a1ddf6510/vmem/vmpage_number-anon_transparent_hugepages: + value: 7.500000e+01 +a1ddf6510/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-dirty: + value: 1.000000e+00 +a1ddf6510/vmem/vmpage_number-file_pages: + value: 4.114210e+05 +a1ddf6510/vmem/vmpage_number-free_pages: + value: 1.550636e+07 +a1ddf6510/vmem/vmpage_number-inactive_anon: + value: 2.130000e+02 +a1ddf6510/vmem/vmpage_number-inactive_file: + value: 1.662360e+05 +a1ddf6510/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-kernel_stack: + value: 3.110000e+02 +a1ddf6510/vmem/vmpage_number-mapped: + value: 6.615000e+03 +a1ddf6510/vmem/vmpage_number-mlock: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-page_table_pages: + value: 2.683000e+03 +a1ddf6510/vmem/vmpage_number-shmem: + value: 2.550000e+02 +a1ddf6510/vmem/vmpage_number-slab_reclaimable: + value: 3.633060e+05 +a1ddf6510/vmem/vmpage_number-slab_unreclaimable: + value: 1.422200e+04 +a1ddf6510/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-unstable: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-writeback: + value: 0.000000e+00 +a1ddf6510/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +a1ddf6610/cpu-0/cpu-idle: + value: 8.969821e+01 +a1ddf6610/cpu-0/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-0/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-0/cpu-softirq: + value: 1.099984e+00 +a1ddf6610/cpu-0/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-0/cpu-system: + value: 3.499955e+00 +a1ddf6610/cpu-0/cpu-user: + value: 2.199975e+00 +a1ddf6610/cpu-0/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-1/cpu-idle: + value: 9.719322e+01 +a1ddf6610/cpu-1/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-1/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-1/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-1/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-1/cpu-system: + value: 1.899957e+00 +a1ddf6610/cpu-1/cpu-user: + value: 5.999838e-01 +a1ddf6610/cpu-1/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-10/cpu-idle: + value: 9.979814e+01 +a1ddf6610/cpu-10/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-10/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-10/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-10/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-10/cpu-system: + value: 9.999814e-02 +a1ddf6610/cpu-10/cpu-user: + value: 0.000000e+00 +a1ddf6610/cpu-10/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-11/cpu-idle: + value: 9.979789e+01 +a1ddf6610/cpu-11/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-11/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-11/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-11/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-11/cpu-system: + value: 9.999790e-02 +a1ddf6610/cpu-11/cpu-user: + value: 0.000000e+00 +a1ddf6610/cpu-11/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-12/cpu-idle: + value: 9.709848e+01 +a1ddf6610/cpu-12/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-12/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-12/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-12/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-12/cpu-system: + value: 1.599972e+00 +a1ddf6610/cpu-12/cpu-user: + value: 1.199978e+00 +a1ddf6610/cpu-12/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-13/cpu-idle: + value: 7.879859e+01 +a1ddf6610/cpu-13/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-13/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-13/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-13/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-13/cpu-system: + value: 1.309976e+01 +a1ddf6610/cpu-13/cpu-user: + value: 8.099863e+00 +a1ddf6610/cpu-13/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-14/cpu-idle: + value: 9.309875e+01 +a1ddf6610/cpu-14/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-14/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-14/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-14/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-14/cpu-system: + value: 4.699934e+00 +a1ddf6610/cpu-14/cpu-user: + value: 2.099971e+00 +a1ddf6610/cpu-14/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-15/cpu-idle: + value: 8.789892e+01 +a1ddf6610/cpu-15/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-15/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-15/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-15/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-15/cpu-system: + value: 7.999894e+00 +a1ddf6610/cpu-15/cpu-user: + value: 3.599950e+00 +a1ddf6610/cpu-15/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-16/cpu-idle: + value: 9.959880e+01 +a1ddf6610/cpu-16/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-16/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-16/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-16/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-16/cpu-system: + value: 2.999964e-01 +a1ddf6610/cpu-16/cpu-user: + value: 9.999874e-02 +a1ddf6610/cpu-16/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-17/cpu-idle: + value: 9.959911e+01 +a1ddf6610/cpu-17/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-17/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-17/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-17/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-17/cpu-system: + value: 1.999981e-01 +a1ddf6610/cpu-17/cpu-user: + value: 9.999911e-02 +a1ddf6610/cpu-17/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-18/cpu-idle: + value: 9.519927e+01 +a1ddf6610/cpu-18/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-18/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-18/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-18/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-18/cpu-system: + value: 2.499979e+00 +a1ddf6610/cpu-18/cpu-user: + value: 1.899982e+00 +a1ddf6610/cpu-18/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-19/cpu-idle: + value: 8.319942e+01 +a1ddf6610/cpu-19/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-19/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-19/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-19/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-19/cpu-system: + value: 1.189992e+01 +a1ddf6610/cpu-19/cpu-user: + value: 3.999985e+00 +a1ddf6610/cpu-19/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-2/cpu-idle: + value: 9.899200e+01 +a1ddf6610/cpu-2/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-2/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-2/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-2/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-2/cpu-system: + value: 3.999674e-01 +a1ddf6610/cpu-2/cpu-user: + value: 2.999799e-01 +a1ddf6610/cpu-2/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-20/cpu-idle: + value: 9.389955e+01 +a1ddf6610/cpu-20/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-20/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-20/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-20/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-20/cpu-system: + value: 4.199980e+00 +a1ddf6610/cpu-20/cpu-user: + value: 1.399991e+00 +a1ddf6610/cpu-20/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-21/cpu-idle: + value: 8.779956e+01 +a1ddf6610/cpu-21/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-21/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-21/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-21/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-21/cpu-system: + value: 8.199940e+00 +a1ddf6610/cpu-21/cpu-user: + value: 3.599972e+00 +a1ddf6610/cpu-21/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-22/cpu-idle: + value: 9.959932e+01 +a1ddf6610/cpu-22/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-22/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-22/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-22/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-22/cpu-system: + value: 2.999981e-01 +a1ddf6610/cpu-22/cpu-user: + value: 9.999956e-02 +a1ddf6610/cpu-22/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-23/cpu-idle: + value: 9.929916e+01 +a1ddf6610/cpu-23/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-23/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-23/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-23/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-23/cpu-system: + value: 4.999943e-01 +a1ddf6610/cpu-23/cpu-user: + value: 0.000000e+00 +a1ddf6610/cpu-23/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-3/cpu-idle: + value: 9.949283e+01 +a1ddf6610/cpu-3/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-3/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-3/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-3/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-3/cpu-system: + value: 9.999309e-02 +a1ddf6610/cpu-3/cpu-user: + value: 1.999852e-01 +a1ddf6610/cpu-3/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-4/cpu-idle: + value: 9.989305e+01 +a1ddf6610/cpu-4/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-4/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-4/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-4/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-4/cpu-system: + value: 0.000000e+00 +a1ddf6610/cpu-4/cpu-user: + value: 0.000000e+00 +a1ddf6610/cpu-4/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-5/cpu-idle: + value: 9.989362e+01 +a1ddf6610/cpu-5/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-5/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-5/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-5/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-5/cpu-system: + value: 9.999406e-02 +a1ddf6610/cpu-5/cpu-user: + value: 0.000000e+00 +a1ddf6610/cpu-5/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-6/cpu-idle: + value: 9.469571e+01 +a1ddf6610/cpu-6/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-6/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-6/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-6/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-6/cpu-system: + value: 3.499803e+00 +a1ddf6610/cpu-6/cpu-user: + value: 1.199947e+00 +a1ddf6610/cpu-6/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-7/cpu-idle: + value: 9.819573e+01 +a1ddf6610/cpu-7/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-7/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-7/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-7/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-7/cpu-system: + value: 1.299941e+00 +a1ddf6610/cpu-7/cpu-user: + value: 2.999861e-01 +a1ddf6610/cpu-7/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-8/cpu-idle: + value: 9.929729e+01 +a1ddf6610/cpu-8/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-8/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-8/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-8/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-8/cpu-system: + value: 1.999943e-01 +a1ddf6610/cpu-8/cpu-user: + value: 9.999644e-02 +a1ddf6610/cpu-8/cpu-wait: + value: 0.000000e+00 +a1ddf6610/cpu-9/cpu-idle: + value: 9.989737e+01 +a1ddf6610/cpu-9/cpu-interrupt: + value: 0.000000e+00 +a1ddf6610/cpu-9/cpu-nice: + value: 0.000000e+00 +a1ddf6610/cpu-9/cpu-softirq: + value: 0.000000e+00 +a1ddf6610/cpu-9/cpu-steal: + value: 0.000000e+00 +a1ddf6610/cpu-9/cpu-system: + value: 9.999736e-02 +a1ddf6610/cpu-9/cpu-user: + value: 0.000000e+00 +a1ddf6610/cpu-9/cpu-wait: + value: 0.000000e+00 +a1ddf6610/df-boot/df_complex-free: + value: 4.793754e+08 +a1ddf6610/df-boot/df_complex-reserved: + value: 2.684109e+07 +a1ddf6610/df-boot/df_complex-used: + value: 2.220851e+07 +a1ddf6610/df-boot/df_inodes-free: + value: 3.273000e+04 +a1ddf6610/df-boot/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-boot/df_inodes-used: + value: 3.800000e+01 +a1ddf6610/df-boot/percent_bytes-free: + value: 9.071777e+01 +a1ddf6610/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +a1ddf6610/df-boot/percent_bytes-used: + value: 4.202775e+00 +a1ddf6610/df-boot/percent_inodes-free: + value: 9.988403e+01 +a1ddf6610/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-boot/percent_inodes-used: + value: 1.159668e-01 +a1ddf6610/df-data1/df_complex-free: + value: 2.574899e+11 +a1ddf6610/df-data1/df_complex-reserved: + value: 1.379019e+10 +a1ddf6610/df-data1/df_complex-used: + value: 1.961411e+08 +a1ddf6610/df-data1/df_inodes-free: + value: 1.683454e+07 +a1ddf6610/df-data1/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-data1/df_inodes-used: + value: 1.800000e+01 +a1ddf6610/df-data1/percent_bytes-free: + value: 9.484805e+01 +a1ddf6610/df-data1/percent_bytes-reserved: + value: 5.079704e+00 +a1ddf6610/df-data1/percent_bytes-used: + value: 7.224981e-02 +a1ddf6610/df-data1/percent_inodes-free: + value: 9.999989e+01 +a1ddf6610/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-data1/percent_inodes-used: + value: 1.069229e-04 +a1ddf6610/df-dev-shm/df_complex-free: + value: 3.375709e+10 +a1ddf6610/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +a1ddf6610/df-dev-shm/df_complex-used: + value: 0.000000e+00 +a1ddf6610/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +a1ddf6610/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +a1ddf6610/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +a1ddf6610/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +a1ddf6610/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +a1ddf6610/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +a1ddf6610/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +a1ddf6610/df-root/df_complex-free: + value: 1.030392e+10 +a1ddf6610/df-root/df_complex-reserved: + value: 6.442435e+08 +a1ddf6610/df-root/df_complex-used: + value: 1.734545e+09 +a1ddf6610/df-root/df_inodes-free: + value: 7.387960e+05 +a1ddf6610/df-root/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-root/df_inodes-used: + value: 4.763600e+04 +a1ddf6610/df-root/percent_bytes-free: + value: 8.124384e+01 +a1ddf6610/df-root/percent_bytes-reserved: + value: 5.079700e+00 +a1ddf6610/df-root/percent_bytes-used: + value: 1.367646e+01 +a1ddf6610/df-root/percent_inodes-free: + value: 9.394276e+01 +a1ddf6610/df-root/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-root/percent_inodes-used: + value: 6.057231e+00 +a1ddf6610/df-var/df_complex-free: + value: 5.412876e+09 +a1ddf6610/df-var/df_complex-reserved: + value: 4.294943e+08 +a1ddf6610/df-var/df_complex-used: + value: 2.612748e+09 +a1ddf6610/df-var/df_inodes-free: + value: 5.218510e+05 +a1ddf6610/df-var/df_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-var/df_inodes-used: + value: 2.437000e+03 +a1ddf6610/df-var/percent_bytes-free: + value: 6.401893e+01 +a1ddf6610/df-var/percent_bytes-reserved: + value: 5.079695e+00 +a1ddf6610/df-var/percent_bytes-used: + value: 3.090138e+01 +a1ddf6610/df-var/percent_inodes-free: + value: 9.953518e+01 +a1ddf6610/df-var/percent_inodes-reserved: + value: 0.000000e+00 +a1ddf6610/df-var/percent_inodes-used: + value: 4.648209e-01 +a1ddf6610/disk-sda/disk_merged: + read: 0.000000e+00 + write: 1.224974e+02 +a1ddf6610/disk-sda/disk_octets: + read: 0.000000e+00 + write: 5.377975e+05 +a1ddf6610/disk-sda/disk_ops: + read: 0.000000e+00 + write: 8.799739e+00 +a1ddf6610/disk-sda/disk_time: + read: 0.000000e+00 + write: 1.599958e+00 +a1ddf6610/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 1.148967e+02 +a1ddf6610/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 4.829033e+05 +a1ddf6610/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 2.999895e+00 +a1ddf6610/disk-sda2/disk_time: + read: 0.000000e+00 + write: 3.999861e-01 +a1ddf6610/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 7.599447e+00 +a1ddf6610/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 5.488478e+04 +a1ddf6610/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 5.799747e+00 +a1ddf6610/disk-sda3/disk_time: + read: 0.000000e+00 + write: 2.299833e+00 +a1ddf6610/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +a1ddf6610/load/load: + longterm: 2.600000e-01 + midterm: 2.400000e-01 + shortterm: 3.000000e-02 +a1ddf6610/memory/memory-buffered: + value: 2.945802e+08 +a1ddf6610/memory/memory-cached: + value: 2.390438e+09 +a1ddf6610/memory/memory-free: + value: 6.154120e+10 +a1ddf6610/memory/memory-used: + value: 3.287953e+09 +a1ddf6610/network/if_octets: + rx: 2.326949e+04 + tx: 0.000000e+00 +a1ddf6610/network/if_packets: + rx: 1.759976e+01 + tx: 0.000000e+00 +a1ddf6610/network/queue_length: + value: 0.000000e+00 +a1ddf6610/network/total_values-dispatch-accepted: + value: 4.607941e+02 +a1ddf6610/network/total_values-dispatch-rejected: + value: 0.000000e+00 +a1ddf6610/network/total_values-send-accepted: + value: 0.000000e+00 +a1ddf6610/network/total_values-send-rejected: + value: 0.000000e+00 +a1ddf6610/swap/swap-cached: + value: 0.000000e+00 +a1ddf6610/swap/swap-free: + value: 2.147475e+09 +a1ddf6610/swap/swap-used: + value: 0.000000e+00 +a1ddf6610/swap/swap_io-in: + value: 0.000000e+00 +a1ddf6610/swap/swap_io-out: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 1.460435e+05 +a1ddf6610/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 5.252066e+02 +a1ddf6610/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-active_anon: + value: 7.743400e+04 +a1ddf6610/vmem/vmpage_number-active_file: + value: 5.886950e+05 +a1ddf6610/vmem/vmpage_number-anon_pages: + value: 3.168900e+04 +a1ddf6610/vmem/vmpage_number-anon_transparent_hugepages: + value: 8.900000e+01 +a1ddf6610/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-dirty: + value: 1.217000e+03 +a1ddf6610/vmem/vmpage_number-file_pages: + value: 6.555230e+05 +a1ddf6610/vmem/vmpage_number-free_pages: + value: 1.502482e+07 +a1ddf6610/vmem/vmpage_number-inactive_anon: + value: 1.440000e+02 +a1ddf6610/vmem/vmpage_number-inactive_file: + value: 6.663400e+04 +a1ddf6610/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-kernel_stack: + value: 5.050000e+02 +a1ddf6610/vmem/vmpage_number-mapped: + value: 7.061000e+03 +a1ddf6610/vmem/vmpage_number-mlock: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-page_table_pages: + value: 2.714000e+03 +a1ddf6610/vmem/vmpage_number-shmem: + value: 2.010000e+02 +a1ddf6610/vmem/vmpage_number-slab_reclaimable: + value: 5.981700e+05 +a1ddf6610/vmem/vmpage_number-slab_unreclaimable: + value: 1.751300e+04 +a1ddf6610/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-unstable: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-writeback: + value: 0.000000e+00 +a1ddf6610/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +h2gdf6120/cpu-0/cpu-idle: + value: 9.830055e+01 +h2gdf6120/cpu-0/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-0/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-0/cpu-softirq: + value: 1.000006e-01 +h2gdf6120/cpu-0/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-0/cpu-system: + value: 2.000012e-01 +h2gdf6120/cpu-0/cpu-user: + value: 7.000045e-01 +h2gdf6120/cpu-0/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-1/cpu-idle: + value: 9.630047e+01 +h2gdf6120/cpu-1/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-1/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-1/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-1/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-1/cpu-system: + value: 5.000024e-01 +h2gdf6120/cpu-1/cpu-user: + value: 3.300017e+00 +h2gdf6120/cpu-1/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-10/cpu-idle: + value: 9.990053e+01 +h2gdf6120/cpu-10/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-10/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-10/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-10/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-10/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-10/cpu-user: + value: 1.000005e-01 +h2gdf6120/cpu-10/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-11/cpu-idle: + value: 9.990010e+01 +h2gdf6120/cpu-11/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-11/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-11/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-11/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-11/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-11/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-11/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-12/cpu-idle: + value: 9.600001e+01 +h2gdf6120/cpu-12/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-12/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-12/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-12/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-12/cpu-system: + value: 7.000001e-01 +h2gdf6120/cpu-12/cpu-user: + value: 2.900000e+00 +h2gdf6120/cpu-12/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-13/cpu-idle: + value: 9.740004e+01 +h2gdf6120/cpu-13/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-13/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-13/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-13/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-13/cpu-system: + value: 2.000001e-01 +h2gdf6120/cpu-13/cpu-user: + value: 2.100001e+00 +h2gdf6120/cpu-13/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-14/cpu-idle: + value: 9.920005e+01 +h2gdf6120/cpu-14/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-14/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-14/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-14/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-14/cpu-system: + value: 1.000000e-01 +h2gdf6120/cpu-14/cpu-user: + value: 6.000003e-01 +h2gdf6120/cpu-14/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-15/cpu-idle: + value: 9.990025e+01 +h2gdf6120/cpu-15/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-15/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-15/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-15/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-15/cpu-system: + value: 1.000002e-01 +h2gdf6120/cpu-15/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-15/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-16/cpu-idle: + value: 9.989996e+01 +h2gdf6120/cpu-16/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-16/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-16/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-16/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-16/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-16/cpu-user: + value: 1.000000e-01 +h2gdf6120/cpu-16/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-17/cpu-idle: + value: 9.999995e+01 +h2gdf6120/cpu-17/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-17/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-17/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-17/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-17/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-17/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-17/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-18/cpu-idle: + value: 9.989994e+01 +h2gdf6120/cpu-18/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-18/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-18/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-18/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-18/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-18/cpu-user: + value: 9.999997e-02 +h2gdf6120/cpu-18/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-19/cpu-idle: + value: 9.930003e+01 +h2gdf6120/cpu-19/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-19/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-19/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-19/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-19/cpu-system: + value: 9.999996e-02 +h2gdf6120/cpu-19/cpu-user: + value: 4.999998e-01 +h2gdf6120/cpu-19/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-2/cpu-idle: + value: 9.800028e+01 +h2gdf6120/cpu-2/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-2/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-2/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-2/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-2/cpu-system: + value: 3.000009e-01 +h2gdf6120/cpu-2/cpu-user: + value: 2.000007e+00 +h2gdf6120/cpu-2/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-20/cpu-idle: + value: 9.980000e+01 +h2gdf6120/cpu-20/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-20/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-20/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-20/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-20/cpu-system: + value: 9.999990e-02 +h2gdf6120/cpu-20/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-20/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-21/cpu-idle: + value: 9.990021e+01 +h2gdf6120/cpu-21/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-21/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-21/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-21/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-21/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-21/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-21/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-22/cpu-idle: + value: 9.660017e+01 +h2gdf6120/cpu-22/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-22/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-22/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-22/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-22/cpu-system: + value: 1.000002e-01 +h2gdf6120/cpu-22/cpu-user: + value: 3.000008e+00 +h2gdf6120/cpu-22/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-23/cpu-idle: + value: 1.000001e+02 +h2gdf6120/cpu-23/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-23/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-23/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-23/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-23/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-23/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-23/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-3/cpu-idle: + value: 9.840034e+01 +h2gdf6120/cpu-3/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-3/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-3/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-3/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-3/cpu-system: + value: 3.000008e-01 +h2gdf6120/cpu-3/cpu-user: + value: 1.700004e+00 +h2gdf6120/cpu-3/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-4/cpu-idle: + value: 9.930038e+01 +h2gdf6120/cpu-4/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-4/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-4/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-4/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-4/cpu-system: + value: 1.000004e-01 +h2gdf6120/cpu-4/cpu-user: + value: 5.000020e-01 +h2gdf6120/cpu-4/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-5/cpu-idle: + value: 1.000003e+02 +h2gdf6120/cpu-5/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-5/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-5/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-5/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-5/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-5/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-5/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-6/cpu-idle: + value: 9.840033e+01 +h2gdf6120/cpu-6/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-6/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-6/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-6/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-6/cpu-system: + value: 3.000009e-01 +h2gdf6120/cpu-6/cpu-user: + value: 1.200004e+00 +h2gdf6120/cpu-6/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-7/cpu-idle: + value: 9.700041e+01 +h2gdf6120/cpu-7/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-7/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-7/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-7/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-7/cpu-system: + value: 2.000008e-01 +h2gdf6120/cpu-7/cpu-user: + value: 2.500009e+00 +h2gdf6120/cpu-7/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-8/cpu-idle: + value: 1.000004e+02 +h2gdf6120/cpu-8/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-8/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-8/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-8/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-8/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-8/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-8/cpu-wait: + value: 0.000000e+00 +h2gdf6120/cpu-9/cpu-idle: + value: 9.990057e+01 +h2gdf6120/cpu-9/cpu-interrupt: + value: 0.000000e+00 +h2gdf6120/cpu-9/cpu-nice: + value: 0.000000e+00 +h2gdf6120/cpu-9/cpu-softirq: + value: 0.000000e+00 +h2gdf6120/cpu-9/cpu-steal: + value: 0.000000e+00 +h2gdf6120/cpu-9/cpu-system: + value: 0.000000e+00 +h2gdf6120/cpu-9/cpu-user: + value: 0.000000e+00 +h2gdf6120/cpu-9/cpu-wait: + value: 0.000000e+00 +h2gdf6120/df-boot/df_complex-free: + value: 4.325089e+08 +h2gdf6120/df-boot/df_complex-reserved: + value: 2.684109e+07 +h2gdf6120/df-boot/df_complex-used: + value: 6.907494e+07 +h2gdf6120/df-boot/df_inodes-free: + value: 3.271800e+04 +h2gdf6120/df-boot/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-boot/df_inodes-used: + value: 5.000000e+01 +h2gdf6120/df-boot/percent_bytes-free: + value: 8.184869e+01 +h2gdf6120/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +h2gdf6120/df-boot/percent_bytes-used: + value: 1.307185e+01 +h2gdf6120/df-boot/percent_inodes-free: + value: 9.984741e+01 +h2gdf6120/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-boot/percent_inodes-used: + value: 1.525879e-01 +h2gdf6120/df-data1/df_complex-free: + value: 2.503070e+11 +h2gdf6120/df-data1/df_complex-reserved: + value: 1.378982e+10 +h2gdf6120/df-data1/df_complex-used: + value: 7.372034e+09 +h2gdf6120/df-data1/df_inodes-free: + value: 1.683450e+07 +h2gdf6120/df-data1/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-data1/df_inodes-used: + value: 5.900000e+01 +h2gdf6120/df-data1/percent_bytes-free: + value: 9.220468e+01 +h2gdf6120/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +h2gdf6120/df-data1/percent_bytes-used: + value: 2.715609e+00 +h2gdf6120/df-data1/percent_inodes-free: + value: 9.999964e+01 +h2gdf6120/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-data1/percent_inodes-used: + value: 3.504695e-04 +h2gdf6120/df-dev-shm/df_complex-free: + value: 3.375709e+10 +h2gdf6120/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +h2gdf6120/df-dev-shm/df_complex-used: + value: 0.000000e+00 +h2gdf6120/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +h2gdf6120/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +h2gdf6120/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +h2gdf6120/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +h2gdf6120/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +h2gdf6120/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +h2gdf6120/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +h2gdf6120/df-root/df_complex-free: + value: 1.058675e+10 +h2gdf6120/df-root/df_complex-reserved: + value: 6.442435e+08 +h2gdf6120/df-root/df_complex-used: + value: 1.451717e+09 +h2gdf6120/df-root/df_inodes-free: + value: 7.435350e+05 +h2gdf6120/df-root/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-root/df_inodes-used: + value: 4.289700e+04 +h2gdf6120/df-root/percent_bytes-free: + value: 8.347388e+01 +h2gdf6120/df-root/percent_bytes-reserved: + value: 5.079700e+00 +h2gdf6120/df-root/percent_bytes-used: + value: 1.144643e+01 +h2gdf6120/df-root/percent_inodes-free: + value: 9.454536e+01 +h2gdf6120/df-root/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-root/percent_inodes-used: + value: 5.454636e+00 +h2gdf6120/df-var/df_complex-free: + value: 7.503532e+09 +h2gdf6120/df-var/df_complex-reserved: + value: 4.294943e+08 +h2gdf6120/df-var/df_complex-used: + value: 5.220925e+08 +h2gdf6120/df-var/df_inodes-free: + value: 5.225340e+05 +h2gdf6120/df-var/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-var/df_inodes-used: + value: 1.754000e+03 +h2gdf6120/df-var/percent_bytes-free: + value: 8.874543e+01 +h2gdf6120/df-var/percent_bytes-reserved: + value: 5.079695e+00 +h2gdf6120/df-var/percent_bytes-used: + value: 6.174870e+00 +h2gdf6120/df-var/percent_inodes-free: + value: 9.966545e+01 +h2gdf6120/df-var/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6120/df-var/percent_inodes-used: + value: 3.345490e-01 +h2gdf6120/disk-sda/disk_merged: + read: 0.000000e+00 + write: 1.000000e-01 +h2gdf6120/disk-sda/disk_octets: + read: 0.000000e+00 + write: 4.915201e+03 +h2gdf6120/disk-sda/disk_ops: + read: 0.000000e+00 + write: 1.000000e+00 +h2gdf6120/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 1.638401e+03 +h2gdf6120/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 4.000002e-01 +h2gdf6120/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 9.999979e-02 +h2gdf6120/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 3.276793e+03 +h2gdf6120/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 5.999987e-01 +h2gdf6120/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6120/load/load: + longterm: 3.000000e-02 + midterm: 3.000000e-02 + shortterm: 0.000000e+00 +h2gdf6120/memory/memory-buffered: + value: 3.471032e+08 +h2gdf6120/memory/memory-cached: + value: 6.819758e+08 +h2gdf6120/memory/memory-free: + value: 5.914347e+10 +h2gdf6120/memory/memory-used: + value: 7.341625e+09 +h2gdf6120/network/if_octets: + rx: 0.000000e+00 + tx: 1.587800e+03 +h2gdf6120/network/if_packets: + rx: 0.000000e+00 + tx: 1.200000e+00 +h2gdf6120/network/queue_length: + value: 0.000000e+00 +h2gdf6120/network/total_values-dispatch-accepted: + value: 0.000000e+00 +h2gdf6120/network/total_values-dispatch-rejected: + value: 0.000000e+00 +h2gdf6120/network/total_values-send-accepted: + value: 3.189999e+01 +h2gdf6120/network/total_values-send-rejected: + value: 0.000000e+00 +h2gdf6120/swap/swap-cached: + value: 0.000000e+00 +h2gdf6120/swap/swap-free: + value: 2.147475e+09 +h2gdf6120/swap/swap-used: + value: 0.000000e+00 +h2gdf6120/swap/swap_io-in: + value: 0.000000e+00 +h2gdf6120/swap/swap_io-out: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 4.499975e+00 +h2gdf6120/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 8.799950e+00 +h2gdf6120/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-active_anon: + value: 1.425964e+06 +h2gdf6120/vmem/vmpage_number-active_file: + value: 1.796950e+05 +h2gdf6120/vmem/vmpage_number-anon_pages: + value: 1.638300e+04 +h2gdf6120/vmem/vmpage_number-anon_transparent_hugepages: + value: 2.753000e+03 +h2gdf6120/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-dirty: + value: 8.000000e+00 +h2gdf6120/vmem/vmpage_number-file_pages: + value: 2.512400e+05 +h2gdf6120/vmem/vmpage_number-free_pages: + value: 1.443932e+07 +h2gdf6120/vmem/vmpage_number-inactive_anon: + value: 1.100000e+01 +h2gdf6120/vmem/vmpage_number-inactive_file: + value: 7.149200e+04 +h2gdf6120/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-kernel_stack: + value: 4.730000e+02 +h2gdf6120/vmem/vmpage_number-mapped: + value: 4.319000e+03 +h2gdf6120/vmem/vmpage_number-mlock: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-page_table_pages: + value: 3.607000e+03 +h2gdf6120/vmem/vmpage_number-shmem: + value: 5.700000e+01 +h2gdf6120/vmem/vmpage_number-slab_reclaimable: + value: 2.365580e+05 +h2gdf6120/vmem/vmpage_number-slab_unreclaimable: + value: 1.603500e+04 +h2gdf6120/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-unstable: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-writeback: + value: 0.000000e+00 +h2gdf6120/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +h2gdf6220/cpu-0/cpu-idle: + value: 9.760209e+01 +h2gdf6220/cpu-0/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-0/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-0/cpu-softirq: + value: 1.000040e-01 +h2gdf6220/cpu-0/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-0/cpu-system: + value: 4.000084e-01 +h2gdf6220/cpu-0/cpu-user: + value: 9.999957e-01 +h2gdf6220/cpu-0/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-1/cpu-idle: + value: 9.970561e+01 +h2gdf6220/cpu-1/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-1/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-1/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-1/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-1/cpu-system: + value: 1.000053e-01 +h2gdf6220/cpu-1/cpu-user: + value: 1.000047e-01 +h2gdf6220/cpu-1/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-10/cpu-idle: + value: 9.990600e+01 +h2gdf6220/cpu-10/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-10/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-10/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-10/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-10/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-10/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-10/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-11/cpu-idle: + value: 1.000060e+02 +h2gdf6220/cpu-11/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-11/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-11/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-11/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-11/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-11/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-11/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-12/cpu-idle: + value: 9.780591e+01 +h2gdf6220/cpu-12/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-12/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-12/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-12/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-12/cpu-system: + value: 5.000302e-01 +h2gdf6220/cpu-12/cpu-user: + value: 8.000479e-01 +h2gdf6220/cpu-12/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-13/cpu-idle: + value: 9.980613e+01 +h2gdf6220/cpu-13/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-13/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-13/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-13/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-13/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-13/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-13/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-14/cpu-idle: + value: 1.000061e+02 +h2gdf6220/cpu-14/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-14/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-14/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-14/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-14/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-14/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-14/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-15/cpu-idle: + value: 9.990596e+01 +h2gdf6220/cpu-15/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-15/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-15/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-15/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-15/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-15/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-15/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-16/cpu-idle: + value: 9.990572e+01 +h2gdf6220/cpu-16/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-16/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-16/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-16/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-16/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-16/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-16/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-17/cpu-idle: + value: 1.000057e+02 +h2gdf6220/cpu-17/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-17/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-17/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-17/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-17/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-17/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-17/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-18/cpu-idle: + value: 1.000058e+02 +h2gdf6220/cpu-18/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-18/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-18/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-18/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-18/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-18/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-18/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-19/cpu-idle: + value: 9.990559e+01 +h2gdf6220/cpu-19/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-19/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-19/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-19/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-19/cpu-system: + value: 2.000113e-01 +h2gdf6220/cpu-19/cpu-user: + value: 1.000057e-01 +h2gdf6220/cpu-19/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-2/cpu-idle: + value: 9.990540e+01 +h2gdf6220/cpu-2/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-2/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-2/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-2/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-2/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-2/cpu-user: + value: 1.000054e-01 +h2gdf6220/cpu-2/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-20/cpu-idle: + value: 1.000055e+02 +h2gdf6220/cpu-20/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-20/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-20/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-20/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-20/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-20/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-20/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-21/cpu-idle: + value: 1.000054e+02 +h2gdf6220/cpu-21/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-21/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-21/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-21/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-21/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-21/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-21/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-22/cpu-idle: + value: 9.990534e+01 +h2gdf6220/cpu-22/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-22/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-22/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-22/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-22/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-22/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-22/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-23/cpu-idle: + value: 1.000054e+02 +h2gdf6220/cpu-23/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-23/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-23/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-23/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-23/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-23/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-23/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-3/cpu-idle: + value: 1.000058e+02 +h2gdf6220/cpu-3/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-3/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-3/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-3/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-3/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-3/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-3/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-4/cpu-idle: + value: 9.990588e+01 +h2gdf6220/cpu-4/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-4/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-4/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-4/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-4/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-4/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-4/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-5/cpu-idle: + value: 1.000061e+02 +h2gdf6220/cpu-5/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-5/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-5/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-5/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-5/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-5/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-5/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-6/cpu-idle: + value: 9.980614e+01 +h2gdf6220/cpu-6/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-6/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-6/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-6/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-6/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-6/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-6/cpu-wait: + value: 1.000062e-01 +h2gdf6220/cpu-7/cpu-idle: + value: 9.990617e+01 +h2gdf6220/cpu-7/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-7/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-7/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-7/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-7/cpu-system: + value: 1.000062e-01 +h2gdf6220/cpu-7/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-7/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-8/cpu-idle: + value: 1.000060e+02 +h2gdf6220/cpu-8/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-8/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-8/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-8/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-8/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-8/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-8/cpu-wait: + value: 0.000000e+00 +h2gdf6220/cpu-9/cpu-idle: + value: 9.990601e+01 +h2gdf6220/cpu-9/cpu-interrupt: + value: 0.000000e+00 +h2gdf6220/cpu-9/cpu-nice: + value: 0.000000e+00 +h2gdf6220/cpu-9/cpu-softirq: + value: 0.000000e+00 +h2gdf6220/cpu-9/cpu-steal: + value: 0.000000e+00 +h2gdf6220/cpu-9/cpu-system: + value: 0.000000e+00 +h2gdf6220/cpu-9/cpu-user: + value: 0.000000e+00 +h2gdf6220/cpu-9/cpu-wait: + value: 0.000000e+00 +h2gdf6220/df-boot/df_complex-free: + value: 4.324721e+08 +h2gdf6220/df-boot/df_complex-reserved: + value: 2.684109e+07 +h2gdf6220/df-boot/df_complex-used: + value: 6.911181e+07 +h2gdf6220/df-boot/df_inodes-free: + value: 3.271800e+04 +h2gdf6220/df-boot/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-boot/df_inodes-used: + value: 5.000000e+01 +h2gdf6220/df-boot/percent_bytes-free: + value: 8.184172e+01 +h2gdf6220/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +h2gdf6220/df-boot/percent_bytes-used: + value: 1.307883e+01 +h2gdf6220/df-boot/percent_inodes-free: + value: 9.984741e+01 +h2gdf6220/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-boot/percent_inodes-used: + value: 1.525879e-01 +h2gdf6220/df-data1/df_complex-free: + value: 2.459593e+11 +h2gdf6220/df-data1/df_complex-reserved: + value: 1.378982e+10 +h2gdf6220/df-data1/df_complex-used: + value: 1.171974e+10 +h2gdf6220/df-data1/df_inodes-free: + value: 1.683450e+07 +h2gdf6220/df-data1/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-data1/df_inodes-used: + value: 6.100000e+01 +h2gdf6220/df-data1/percent_bytes-free: + value: 9.060313e+01 +h2gdf6220/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +h2gdf6220/df-data1/percent_bytes-used: + value: 4.317159e+00 +h2gdf6220/df-data1/percent_inodes-free: + value: 9.999964e+01 +h2gdf6220/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-data1/percent_inodes-used: + value: 3.623498e-04 +h2gdf6220/df-dev-shm/df_complex-free: + value: 3.375709e+10 +h2gdf6220/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +h2gdf6220/df-dev-shm/df_complex-used: + value: 0.000000e+00 +h2gdf6220/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +h2gdf6220/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +h2gdf6220/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +h2gdf6220/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +h2gdf6220/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +h2gdf6220/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +h2gdf6220/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +h2gdf6220/df-root/df_complex-free: + value: 1.058283e+10 +h2gdf6220/df-root/df_complex-reserved: + value: 6.442435e+08 +h2gdf6220/df-root/df_complex-used: + value: 1.455632e+09 +h2gdf6220/df-root/df_inodes-free: + value: 7.435320e+05 +h2gdf6220/df-root/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-root/df_inodes-used: + value: 4.290000e+04 +h2gdf6220/df-root/percent_bytes-free: + value: 8.344300e+01 +h2gdf6220/df-root/percent_bytes-reserved: + value: 5.079700e+00 +h2gdf6220/df-root/percent_bytes-used: + value: 1.147730e+01 +h2gdf6220/df-root/percent_inodes-free: + value: 9.454498e+01 +h2gdf6220/df-root/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-root/percent_inodes-used: + value: 5.455017e+00 +h2gdf6220/df-var/df_complex-free: + value: 7.501562e+09 +h2gdf6220/df-var/df_complex-reserved: + value: 4.294943e+08 +h2gdf6220/df-var/df_complex-used: + value: 5.240627e+08 +h2gdf6220/df-var/df_inodes-free: + value: 5.225360e+05 +h2gdf6220/df-var/df_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-var/df_inodes-used: + value: 1.752000e+03 +h2gdf6220/df-var/percent_bytes-free: + value: 8.872214e+01 +h2gdf6220/df-var/percent_bytes-reserved: + value: 5.079695e+00 +h2gdf6220/df-var/percent_bytes-used: + value: 6.198171e+00 +h2gdf6220/df-var/percent_inodes-free: + value: 9.966583e+01 +h2gdf6220/df-var/percent_inodes-reserved: + value: 0.000000e+00 +h2gdf6220/df-var/percent_inodes-used: + value: 3.341675e-01 +h2gdf6220/disk-sda/disk_merged: + read: 0.000000e+00 + write: 5.000078e-01 +h2gdf6220/disk-sda/disk_octets: + read: 0.000000e+00 + write: 1.761274e+05 +h2gdf6220/disk-sda/disk_ops: + read: 0.000000e+00 + write: 6.599997e+00 +h2gdf6220/disk-sda/disk_time: + read: 0.000000e+00 + write: 1.200000e+00 +h2gdf6220/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +h2gdf6220/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 5.000119e-01 +h2gdf6220/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 1.761322e+05 +h2gdf6220/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 6.600157e+00 +h2gdf6220/disk-sda6/disk_time: + read: 0.000000e+00 + write: 1.200029e+00 +h2gdf6220/load/load: + longterm: 3.000000e-02 + midterm: 1.300000e-01 + shortterm: 1.800000e-01 +h2gdf6220/memory/memory-buffered: + value: 3.538944e+08 +h2gdf6220/memory/memory-cached: + value: 6.890127e+08 +h2gdf6220/memory/memory-free: + value: 5.744062e+10 +h2gdf6220/memory/memory-used: + value: 9.030652e+09 +h2gdf6220/network/if_octets: + rx: 0.000000e+00 + tx: 1.449803e+03 +h2gdf6220/network/if_packets: + rx: 0.000000e+00 + tx: 1.100003e+00 +h2gdf6220/network/queue_length: + value: 0.000000e+00 +h2gdf6220/network/total_values-dispatch-accepted: + value: 0.000000e+00 +h2gdf6220/network/total_values-dispatch-rejected: + value: 0.000000e+00 +h2gdf6220/network/total_values-send-accepted: + value: 2.630008e+01 +h2gdf6220/network/total_values-send-rejected: + value: 0.000000e+00 +h2gdf6220/swap/swap-cached: + value: 0.000000e+00 +h2gdf6220/swap/swap-free: + value: 2.147475e+09 +h2gdf6220/swap/swap-used: + value: 0.000000e+00 +h2gdf6220/swap/swap_io-in: + value: 0.000000e+00 +h2gdf6220/swap/swap_io-out: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 7.000005e-01 +h2gdf6220/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 2.800002e+00 +h2gdf6220/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-active_anon: + value: 1.830919e+06 +h2gdf6220/vmem/vmpage_number-active_file: + value: 1.812510e+05 +h2gdf6220/vmem/vmpage_number-anon_pages: + value: 1.841200e+04 +h2gdf6220/vmem/vmpage_number-anon_transparent_hugepages: + value: 3.540000e+03 +h2gdf6220/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-dirty: + value: 4.000000e+00 +h2gdf6220/vmem/vmpage_number-file_pages: + value: 2.546160e+05 +h2gdf6220/vmem/vmpage_number-free_pages: + value: 1.402359e+07 +h2gdf6220/vmem/vmpage_number-inactive_anon: + value: 1.600000e+01 +h2gdf6220/vmem/vmpage_number-inactive_file: + value: 7.330700e+04 +h2gdf6220/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-kernel_stack: + value: 4.900000e+02 +h2gdf6220/vmem/vmpage_number-mapped: + value: 4.792000e+03 +h2gdf6220/vmem/vmpage_number-mlock: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-page_table_pages: + value: 4.540000e+03 +h2gdf6220/vmem/vmpage_number-shmem: + value: 6.200000e+01 +h2gdf6220/vmem/vmpage_number-slab_reclaimable: + value: 2.343820e+05 +h2gdf6220/vmem/vmpage_number-slab_unreclaimable: + value: 2.127200e+04 +h2gdf6220/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-unstable: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-writeback: + value: 0.000000e+00 +h2gdf6220/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +m01df6100/cpu-0/cpu-idle: + value: 9.980233e+01 +m01df6100/cpu-0/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-0/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-0/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-0/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-0/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-0/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-0/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-1/cpu-idle: + value: 1.000105e+02 +m01df6100/cpu-1/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-1/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-1/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-1/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-1/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-1/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-1/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-10/cpu-idle: + value: 1.000294e+02 +m01df6100/cpu-10/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-10/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-10/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-10/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-10/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-10/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-10/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-11/cpu-idle: + value: 9.993001e+01 +m01df6100/cpu-11/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-11/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-11/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-11/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-11/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-11/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-11/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-12/cpu-idle: + value: 1.000310e+02 +m01df6100/cpu-12/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-12/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-12/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-12/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-12/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-12/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-12/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-13/cpu-idle: + value: 9.993154e+01 +m01df6100/cpu-13/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-13/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-13/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-13/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-13/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-13/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-13/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-14/cpu-idle: + value: 1.000329e+02 +m01df6100/cpu-14/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-14/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-14/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-14/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-14/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-14/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-14/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-15/cpu-idle: + value: 1.000341e+02 +m01df6100/cpu-15/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-15/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-15/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-15/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-15/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-15/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-15/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-16/cpu-idle: + value: 1.000347e+02 +m01df6100/cpu-16/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-16/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-16/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-16/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-16/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-16/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-16/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-17/cpu-idle: + value: 1.000354e+02 +m01df6100/cpu-17/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-17/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-17/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-17/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-17/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-17/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-17/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-18/cpu-idle: + value: 9.993624e+01 +m01df6100/cpu-18/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-18/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-18/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-18/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-18/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-18/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-18/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-19/cpu-idle: + value: 9.993717e+01 +m01df6100/cpu-19/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-19/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-19/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-19/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-19/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-19/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-19/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-2/cpu-idle: + value: 1.000135e+02 +m01df6100/cpu-2/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-2/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-2/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-2/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-2/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-2/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-2/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-20/cpu-idle: + value: 9.993831e+01 +m01df6100/cpu-20/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-20/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-20/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-20/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-20/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-20/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-20/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-21/cpu-idle: + value: 1.000397e+02 +m01df6100/cpu-21/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-21/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-21/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-21/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-21/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-21/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-21/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-22/cpu-idle: + value: 9.994092e+01 +m01df6100/cpu-22/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-22/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-22/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-22/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-22/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-22/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-22/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-23/cpu-idle: + value: 1.000420e+02 +m01df6100/cpu-23/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-23/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-23/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-23/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-23/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-23/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-23/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-3/cpu-idle: + value: 1.000161e+02 +m01df6100/cpu-3/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-3/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-3/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-3/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-3/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-3/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-3/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-4/cpu-idle: + value: 1.000191e+02 +m01df6100/cpu-4/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-4/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-4/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-4/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-4/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-4/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-4/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-5/cpu-idle: + value: 1.000243e+02 +m01df6100/cpu-5/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-5/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-5/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-5/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-5/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-5/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-5/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-6/cpu-idle: + value: 1.000268e+02 +m01df6100/cpu-6/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-6/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-6/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-6/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-6/cpu-system: + value: 1.000266e-01 +m01df6100/cpu-6/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-6/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-7/cpu-idle: + value: 1.000274e+02 +m01df6100/cpu-7/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-7/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-7/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-7/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-7/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-7/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-7/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-8/cpu-idle: + value: 1.000283e+02 +m01df6100/cpu-8/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-8/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-8/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-8/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-8/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-8/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-8/cpu-wait: + value: 0.000000e+00 +m01df6100/cpu-9/cpu-idle: + value: 1.000291e+02 +m01df6100/cpu-9/cpu-interrupt: + value: 0.000000e+00 +m01df6100/cpu-9/cpu-nice: + value: 0.000000e+00 +m01df6100/cpu-9/cpu-softirq: + value: 0.000000e+00 +m01df6100/cpu-9/cpu-steal: + value: 0.000000e+00 +m01df6100/cpu-9/cpu-system: + value: 0.000000e+00 +m01df6100/cpu-9/cpu-user: + value: 0.000000e+00 +m01df6100/cpu-9/cpu-wait: + value: 0.000000e+00 +m01df6100/df-boot/df_complex-free: + value: 4.369408e+08 +m01df6100/df-boot/df_complex-reserved: + value: 2.684109e+07 +m01df6100/df-boot/df_complex-used: + value: 6.464307e+07 +m01df6100/df-boot/df_inodes-free: + value: 3.271800e+04 +m01df6100/df-boot/df_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-boot/df_inodes-used: + value: 5.000000e+01 +m01df6100/df-boot/percent_bytes-free: + value: 8.268739e+01 +m01df6100/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +m01df6100/df-boot/percent_bytes-used: + value: 1.223316e+01 +m01df6100/df-boot/percent_inodes-free: + value: 9.984741e+01 +m01df6100/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-boot/percent_inodes-used: + value: 1.525879e-01 +m01df6100/df-data1/df_complex-free: + value: 2.574032e+11 +m01df6100/df-data1/df_complex-reserved: + value: 1.378982e+10 +m01df6100/df-data1/df_complex-used: + value: 2.758984e+08 +m01df6100/df-data1/df_inodes-free: + value: 1.683426e+07 +m01df6100/df-data1/df_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-data1/df_inodes-used: + value: 2.960000e+02 +m01df6100/df-data1/percent_bytes-free: + value: 9.481866e+01 +m01df6100/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +m01df6100/df-data1/percent_bytes-used: + value: 1.016317e-01 +m01df6100/df-data1/percent_inodes-free: + value: 9.999825e+01 +m01df6100/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-data1/percent_inodes-used: + value: 1.758288e-03 +m01df6100/df-dev-shm/df_complex-free: + value: 3.375709e+10 +m01df6100/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +m01df6100/df-dev-shm/df_complex-used: + value: 0.000000e+00 +m01df6100/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +m01df6100/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +m01df6100/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +m01df6100/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +m01df6100/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +m01df6100/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +m01df6100/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +m01df6100/df-root/df_complex-free: + value: 1.072688e+10 +m01df6100/df-root/df_complex-reserved: + value: 6.442435e+08 +m01df6100/df-root/df_complex-used: + value: 1.311580e+09 +m01df6100/df-root/df_inodes-free: + value: 7.454950e+05 +m01df6100/df-root/df_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-root/df_inodes-used: + value: 4.093700e+04 +m01df6100/df-root/percent_bytes-free: + value: 8.457882e+01 +m01df6100/df-root/percent_bytes-reserved: + value: 5.079700e+00 +m01df6100/df-root/percent_bytes-used: + value: 1.034148e+01 +m01df6100/df-root/percent_inodes-free: + value: 9.479459e+01 +m01df6100/df-root/percent_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-root/percent_inodes-used: + value: 5.205409e+00 +m01df6100/df-var/df_complex-free: + value: 7.566787e+09 +m01df6100/df-var/df_complex-reserved: + value: 4.294943e+08 +m01df6100/df-var/df_complex-used: + value: 4.588380e+08 +m01df6100/df-var/df_inodes-free: + value: 5.228090e+05 +m01df6100/df-var/df_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-var/df_inodes-used: + value: 1.479000e+03 +m01df6100/df-var/percent_bytes-free: + value: 8.949355e+01 +m01df6100/df-var/percent_bytes-reserved: + value: 5.079695e+00 +m01df6100/df-var/percent_bytes-used: + value: 5.426748e+00 +m01df6100/df-var/percent_inodes-free: + value: 9.971790e+01 +m01df6100/df-var/percent_inodes-reserved: + value: 0.000000e+00 +m01df6100/df-var/percent_inodes-used: + value: 2.820969e-01 +m01df6100/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6100/load/load: + longterm: 0.000000e+00 + midterm: 2.000000e-02 + shortterm: 3.000000e-02 +m01df6100/memory/memory-buffered: + value: 3.348275e+08 +m01df6100/memory/memory-cached: + value: 5.892219e+08 +m01df6100/memory/memory-free: + value: 6.425088e+10 +m01df6100/memory/memory-used: + value: 2.339246e+09 +m01df6100/network/if_octets: + rx: 0.000000e+00 + tx: 1.057501e+03 +m01df6100/network/if_packets: + rx: 0.000000e+00 + tx: 8.000004e-01 +m01df6100/network/queue_length: + value: 0.000000e+00 +m01df6100/network/total_values-dispatch-accepted: + value: 0.000000e+00 +m01df6100/network/total_values-dispatch-rejected: + value: 0.000000e+00 +m01df6100/network/total_values-send-accepted: + value: 1.929969e+01 +m01df6100/network/total_values-send-rejected: + value: 0.000000e+00 +m01df6100/swap/swap-cached: + value: 0.000000e+00 +m01df6100/swap/swap-free: + value: 2.147475e+09 +m01df6100/swap/swap-used: + value: 0.000000e+00 +m01df6100/swap/swap_io-in: + value: 0.000000e+00 +m01df6100/swap/swap_io-out: + value: 0.000000e+00 +m01df6100/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 3.199662e+00 +m01df6100/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +m01df6100/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +m01df6100/vmem/vmpage_number-active_anon: + value: 2.152660e+05 +m01df6100/vmem/vmpage_number-active_file: + value: 1.507500e+05 +m01df6100/vmem/vmpage_number-anon_pages: + value: 1.456100e+04 +m01df6100/vmem/vmpage_number-anon_transparent_hugepages: + value: 3.920000e+02 +m01df6100/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-dirty: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-file_pages: + value: 2.255980e+05 +m01df6100/vmem/vmpage_number-free_pages: + value: 1.568625e+07 +m01df6100/vmem/vmpage_number-inactive_anon: + value: 4.600000e+01 +m01df6100/vmem/vmpage_number-inactive_file: + value: 7.480400e+04 +m01df6100/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-kernel_stack: + value: 4.500000e+02 +m01df6100/vmem/vmpage_number-mapped: + value: 3.560000e+03 +m01df6100/vmem/vmpage_number-mlock: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-page_table_pages: + value: 1.060000e+03 +m01df6100/vmem/vmpage_number-shmem: + value: 4.800000e+01 +m01df6100/vmem/vmpage_number-slab_reclaimable: + value: 2.369210e+05 +m01df6100/vmem/vmpage_number-slab_unreclaimable: + value: 1.479000e+04 +m01df6100/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-unstable: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-writeback: + value: 0.000000e+00 +m01df6100/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +m01df6200/cpu-0/cpu-idle: + value: 9.970372e+01 +m01df6200/cpu-0/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-0/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-0/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-0/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-0/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-0/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-0/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-1/cpu-idle: + value: 1.000038e+02 +m01df6200/cpu-1/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-1/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-1/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-1/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-1/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-1/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-1/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-10/cpu-idle: + value: 1.000043e+02 +m01df6200/cpu-10/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-10/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-10/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-10/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-10/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-10/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-10/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-11/cpu-idle: + value: 1.000045e+02 +m01df6200/cpu-11/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-11/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-11/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-11/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-11/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-11/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-11/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-12/cpu-idle: + value: 1.000044e+02 +m01df6200/cpu-12/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-12/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-12/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-12/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-12/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-12/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-12/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-13/cpu-idle: + value: 1.000045e+02 +m01df6200/cpu-13/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-13/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-13/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-13/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-13/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-13/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-13/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-14/cpu-idle: + value: 1.000044e+02 +m01df6200/cpu-14/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-14/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-14/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-14/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-14/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-14/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-14/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-15/cpu-idle: + value: 9.990450e+01 +m01df6200/cpu-15/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-15/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-15/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-15/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-15/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-15/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-15/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-16/cpu-idle: + value: 1.000046e+02 +m01df6200/cpu-16/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-16/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-16/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-16/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-16/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-16/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-16/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-17/cpu-idle: + value: 1.000047e+02 +m01df6200/cpu-17/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-17/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-17/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-17/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-17/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-17/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-17/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-18/cpu-idle: + value: 1.000047e+02 +m01df6200/cpu-18/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-18/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-18/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-18/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-18/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-18/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-18/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-19/cpu-idle: + value: 9.990492e+01 +m01df6200/cpu-19/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-19/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-19/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-19/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-19/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-19/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-19/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-2/cpu-idle: + value: 1.000038e+02 +m01df6200/cpu-2/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-2/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-2/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-2/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-2/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-2/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-2/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-20/cpu-idle: + value: 9.990475e+01 +m01df6200/cpu-20/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-20/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-20/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-20/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-20/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-20/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-20/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-21/cpu-idle: + value: 1.000048e+02 +m01df6200/cpu-21/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-21/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-21/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-21/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-21/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-21/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-21/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-22/cpu-idle: + value: 1.000049e+02 +m01df6200/cpu-22/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-22/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-22/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-22/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-22/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-22/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-22/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-23/cpu-idle: + value: 9.990458e+01 +m01df6200/cpu-23/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-23/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-23/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-23/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-23/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-23/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-23/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-3/cpu-idle: + value: 9.990383e+01 +m01df6200/cpu-3/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-3/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-3/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-3/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-3/cpu-system: + value: 1.000038e-01 +m01df6200/cpu-3/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-3/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-4/cpu-idle: + value: 1.000039e+02 +m01df6200/cpu-4/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-4/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-4/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-4/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-4/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-4/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-4/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-5/cpu-idle: + value: 1.000039e+02 +m01df6200/cpu-5/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-5/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-5/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-5/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-5/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-5/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-5/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-6/cpu-idle: + value: 1.000039e+02 +m01df6200/cpu-6/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-6/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-6/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-6/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-6/cpu-system: + value: 1.000039e-01 +m01df6200/cpu-6/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-6/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-7/cpu-idle: + value: 9.990388e+01 +m01df6200/cpu-7/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-7/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-7/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-7/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-7/cpu-system: + value: 1.000039e-01 +m01df6200/cpu-7/cpu-user: + value: 0.000000e+00 +m01df6200/cpu-7/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-8/cpu-idle: + value: 9.990408e+01 +m01df6200/cpu-8/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-8/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-8/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-8/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-8/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-8/cpu-user: + value: 1.000040e-01 +m01df6200/cpu-8/cpu-wait: + value: 0.000000e+00 +m01df6200/cpu-9/cpu-idle: + value: 1.000043e+02 +m01df6200/cpu-9/cpu-interrupt: + value: 0.000000e+00 +m01df6200/cpu-9/cpu-nice: + value: 0.000000e+00 +m01df6200/cpu-9/cpu-softirq: + value: 0.000000e+00 +m01df6200/cpu-9/cpu-steal: + value: 0.000000e+00 +m01df6200/cpu-9/cpu-system: + value: 0.000000e+00 +m01df6200/cpu-9/cpu-user: + value: 1.000043e-01 +m01df6200/cpu-9/cpu-wait: + value: 0.000000e+00 +m01df6200/df-boot/df_complex-free: + value: 4.368957e+08 +m01df6200/df-boot/df_complex-reserved: + value: 2.684109e+07 +m01df6200/df-boot/df_complex-used: + value: 6.468813e+07 +m01df6200/df-boot/df_inodes-free: + value: 3.271800e+04 +m01df6200/df-boot/df_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-boot/df_inodes-used: + value: 5.000000e+01 +m01df6200/df-boot/percent_bytes-free: + value: 8.267886e+01 +m01df6200/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +m01df6200/df-boot/percent_bytes-used: + value: 1.224169e+01 +m01df6200/df-boot/percent_inodes-free: + value: 9.984741e+01 +m01df6200/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-boot/percent_inodes-used: + value: 1.525879e-01 +m01df6200/df-data1/df_complex-free: + value: 2.574203e+11 +m01df6200/df-data1/df_complex-reserved: + value: 1.378982e+10 +m01df6200/df-data1/df_complex-used: + value: 2.587075e+08 +m01df6200/df-data1/df_inodes-free: + value: 1.683427e+07 +m01df6200/df-data1/df_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-data1/df_inodes-used: + value: 2.940000e+02 +m01df6200/df-data1/percent_bytes-free: + value: 9.482500e+01 +m01df6200/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +m01df6200/df-data1/percent_bytes-used: + value: 9.529912e-02 +m01df6200/df-data1/percent_inodes-free: + value: 9.999825e+01 +m01df6200/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-data1/percent_inodes-used: + value: 1.746407e-03 +m01df6200/df-dev-shm/df_complex-free: + value: 3.375709e+10 +m01df6200/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +m01df6200/df-dev-shm/df_complex-used: + value: 0.000000e+00 +m01df6200/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +m01df6200/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +m01df6200/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +m01df6200/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +m01df6200/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +m01df6200/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +m01df6200/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +m01df6200/df-root/df_complex-free: + value: 1.073381e+10 +m01df6200/df-root/df_complex-reserved: + value: 6.442435e+08 +m01df6200/df-root/df_complex-used: + value: 1.304654e+09 +m01df6200/df-root/df_inodes-free: + value: 7.455060e+05 +m01df6200/df-root/df_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-root/df_inodes-used: + value: 4.092600e+04 +m01df6200/df-root/percent_bytes-free: + value: 8.463343e+01 +m01df6200/df-root/percent_bytes-reserved: + value: 5.079700e+00 +m01df6200/df-root/percent_bytes-used: + value: 1.028687e+01 +m01df6200/df-root/percent_inodes-free: + value: 9.479599e+01 +m01df6200/df-root/percent_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-root/percent_inodes-used: + value: 5.204010e+00 +m01df6200/df-var/df_complex-free: + value: 7.567528e+09 +m01df6200/df-var/df_complex-reserved: + value: 4.294943e+08 +m01df6200/df-var/df_complex-used: + value: 4.580966e+08 +m01df6200/df-var/df_inodes-free: + value: 5.228110e+05 +m01df6200/df-var/df_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-var/df_inodes-used: + value: 1.477000e+03 +m01df6200/df-var/percent_bytes-free: + value: 8.950232e+01 +m01df6200/df-var/percent_bytes-reserved: + value: 5.079695e+00 +m01df6200/df-var/percent_bytes-used: + value: 5.417980e+00 +m01df6200/df-var/percent_inodes-free: + value: 9.971828e+01 +m01df6200/df-var/percent_inodes-reserved: + value: 0.000000e+00 +m01df6200/df-var/percent_inodes-used: + value: 2.817154e-01 +m01df6200/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +m01df6200/load/load: + longterm: 0.000000e+00 + midterm: 0.000000e+00 + shortterm: 0.000000e+00 +m01df6200/memory/memory-buffered: + value: 3.312067e+08 +m01df6200/memory/memory-cached: + value: 5.615206e+08 +m01df6200/memory/memory-free: + value: 6.428290e+10 +m01df6200/memory/memory-used: + value: 2.338546e+09 +m01df6200/network/if_octets: + rx: 0.000000e+00 + tx: 1.583300e+03 +m01df6200/network/if_packets: + rx: 0.000000e+00 + tx: 1.200000e+00 +m01df6200/network/queue_length: + value: 0.000000e+00 +m01df6200/network/total_values-dispatch-accepted: + value: 0.000000e+00 +m01df6200/network/total_values-dispatch-rejected: + value: 0.000000e+00 +m01df6200/network/total_values-send-accepted: + value: 3.150000e+01 +m01df6200/network/total_values-send-rejected: + value: 0.000000e+00 +m01df6200/swap/swap-cached: + value: 0.000000e+00 +m01df6200/swap/swap-free: + value: 2.147475e+09 +m01df6200/swap/swap-used: + value: 0.000000e+00 +m01df6200/swap/swap_io-in: + value: 0.000000e+00 +m01df6200/swap/swap_io-out: + value: 0.000000e+00 +m01df6200/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 3.600012e+00 +m01df6200/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +m01df6200/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +m01df6200/vmem/vmpage_number-active_anon: + value: 2.124650e+05 +m01df6200/vmem/vmpage_number-active_file: + value: 1.424970e+05 +m01df6200/vmem/vmpage_number-anon_pages: + value: 1.227400e+04 +m01df6200/vmem/vmpage_number-anon_transparent_hugepages: + value: 3.910000e+02 +m01df6200/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-dirty: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-file_pages: + value: 2.179510e+05 +m01df6200/vmem/vmpage_number-free_pages: + value: 1.569406e+07 +m01df6200/vmem/vmpage_number-inactive_anon: + value: 4.800000e+01 +m01df6200/vmem/vmpage_number-inactive_file: + value: 7.540800e+04 +m01df6200/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-kernel_stack: + value: 4.460000e+02 +m01df6200/vmem/vmpage_number-mapped: + value: 3.063000e+03 +m01df6200/vmem/vmpage_number-mlock: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-page_table_pages: + value: 8.920000e+02 +m01df6200/vmem/vmpage_number-shmem: + value: 5.000000e+01 +m01df6200/vmem/vmpage_number-slab_reclaimable: + value: 2.398380e+05 +m01df6200/vmem/vmpage_number-slab_unreclaimable: + value: 1.473600e+04 +m01df6200/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-unstable: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-writeback: + value: 0.000000e+00 +m01df6200/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w838f6010/cpu-0/cpu-idle: + value: 9.990008e+01 +w838f6010/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w838f6010/cpu-0/cpu-nice: + value: 0.000000e+00 +w838f6010/cpu-0/cpu-softirq: + value: 0.000000e+00 +w838f6010/cpu-0/cpu-steal: + value: 0.000000e+00 +w838f6010/cpu-0/cpu-system: + value: 0.000000e+00 +w838f6010/cpu-0/cpu-user: + value: 0.000000e+00 +w838f6010/cpu-0/cpu-wait: + value: 0.000000e+00 +w838f6010/cpu-1/cpu-idle: + value: 9.980017e+01 +w838f6010/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w838f6010/cpu-1/cpu-nice: + value: 0.000000e+00 +w838f6010/cpu-1/cpu-softirq: + value: 0.000000e+00 +w838f6010/cpu-1/cpu-steal: + value: 0.000000e+00 +w838f6010/cpu-1/cpu-system: + value: 0.000000e+00 +w838f6010/cpu-1/cpu-user: + value: 0.000000e+00 +w838f6010/cpu-1/cpu-wait: + value: 0.000000e+00 +w838f6010/df-boot/df_complex-free: + value: 4.793754e+08 +w838f6010/df-boot/df_complex-reserved: + value: 2.684109e+07 +w838f6010/df-boot/df_complex-used: + value: 2.220851e+07 +w838f6010/df-boot/df_inodes-free: + value: 3.273000e+04 +w838f6010/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-boot/df_inodes-used: + value: 3.800000e+01 +w838f6010/df-boot/percent_bytes-free: + value: 9.071777e+01 +w838f6010/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w838f6010/df-boot/percent_bytes-used: + value: 4.202775e+00 +w838f6010/df-boot/percent_inodes-free: + value: 9.988403e+01 +w838f6010/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-boot/percent_inodes-used: + value: 1.159668e-01 +w838f6010/df-data1/df_complex-free: + value: 2.740491e+10 +w838f6010/df-data1/df_complex-reserved: + value: 1.476235e+09 +w838f6010/df-data1/df_complex-used: + value: 1.802977e+08 +w838f6010/df-data1/df_inodes-free: + value: 1.802227e+06 +w838f6010/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-data1/df_inodes-used: + value: 1.300000e+01 +w838f6010/df-data1/percent_bytes-free: + value: 9.429990e+01 +w838f6010/df-data1/percent_bytes-reserved: + value: 5.079704e+00 +w838f6010/df-data1/percent_bytes-used: + value: 6.204019e-01 +w838f6010/df-data1/percent_inodes-free: + value: 9.999928e+01 +w838f6010/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-data1/percent_inodes-used: + value: 7.213246e-04 +w838f6010/df-dev-shm/df_complex-free: + value: 9.842483e+08 +w838f6010/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w838f6010/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w838f6010/df-dev-shm/df_inodes-free: + value: 2.402940e+05 +w838f6010/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w838f6010/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w838f6010/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w838f6010/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w838f6010/df-dev-shm/percent_inodes-free: + value: 9.999958e+01 +w838f6010/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-dev-shm/percent_inodes-used: + value: 4.161551e-04 +w838f6010/df-root/df_complex-free: + value: 1.099070e+10 +w838f6010/df-root/df_complex-reserved: + value: 6.442435e+08 +w838f6010/df-root/df_complex-used: + value: 1.047761e+09 +w838f6010/df-root/df_inodes-free: + value: 7.509290e+05 +w838f6010/df-root/df_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-root/df_inodes-used: + value: 3.550300e+04 +w838f6010/df-root/percent_bytes-free: + value: 8.665897e+01 +w838f6010/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w838f6010/df-root/percent_bytes-used: + value: 8.261335e+00 +w838f6010/df-root/percent_inodes-free: + value: 9.548557e+01 +w838f6010/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-root/percent_inodes-used: + value: 4.514440e+00 +w838f6010/df-var/df_complex-free: + value: 7.638827e+09 +w838f6010/df-var/df_complex-reserved: + value: 4.294943e+08 +w838f6010/df-var/df_complex-used: + value: 3.867976e+08 +w838f6010/df-var/df_inodes-free: + value: 5.230900e+05 +w838f6010/df-var/df_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-var/df_inodes-used: + value: 1.198000e+03 +w838f6010/df-var/percent_bytes-free: + value: 9.034559e+01 +w838f6010/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w838f6010/df-var/percent_bytes-used: + value: 4.574715e+00 +w838f6010/df-var/percent_inodes-free: + value: 9.977150e+01 +w838f6010/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w838f6010/df-var/percent_inodes-used: + value: 2.285004e-01 +w838f6010/disk-vda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/disk-vda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6010/load/load: + longterm: 0.000000e+00 + midterm: 2.000000e-02 + shortterm: 2.000000e-02 +w838f6010/memory/memory-buffered: + value: 1.263739e+08 +w838f6010/memory/memory-cached: + value: 4.350566e+08 +w838f6010/memory/memory-free: + value: 1.024844e+09 +w838f6010/memory/memory-used: + value: 3.822223e+08 +w838f6010/network/if_octets: + rx: 0.000000e+00 + tx: 6.632999e+02 +w838f6010/network/if_packets: + rx: 0.000000e+00 + tx: 5.000010e-01 +w838f6010/network/queue_length: + value: 0.000000e+00 +w838f6010/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w838f6010/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w838f6010/network/total_values-send-accepted: + value: 1.480000e+01 +w838f6010/network/total_values-send-rejected: + value: 0.000000e+00 +w838f6010/swap/swap-cached: + value: 0.000000e+00 +w838f6010/swap/swap-free: + value: 2.147475e+09 +w838f6010/swap/swap-used: + value: 0.000000e+00 +w838f6010/swap/swap_io-in: + value: 0.000000e+00 +w838f6010/swap/swap_io-out: + value: 0.000000e+00 +w838f6010/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 4.999995e+00 +w838f6010/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w838f6010/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w838f6010/vmem/vmpage_number-active_anon: + value: 1.249400e+04 +w838f6010/vmem/vmpage_number-active_file: + value: 7.016800e+04 +w838f6010/vmem/vmpage_number-anon_pages: + value: 1.095500e+04 +w838f6010/vmem/vmpage_number-anon_transparent_hugepages: + value: 3.000000e+00 +w838f6010/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-dirty: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-file_pages: + value: 1.370680e+05 +w838f6010/vmem/vmpage_number-free_pages: + value: 2.502060e+05 +w838f6010/vmem/vmpage_number-inactive_anon: + value: 4.200000e+01 +w838f6010/vmem/vmpage_number-inactive_file: + value: 6.685900e+04 +w838f6010/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-kernel_stack: + value: 1.130000e+02 +w838f6010/vmem/vmpage_number-mapped: + value: 1.480000e+03 +w838f6010/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-page_table_pages: + value: 4.220000e+02 +w838f6010/vmem/vmpage_number-shmem: + value: 4.500000e+01 +w838f6010/vmem/vmpage_number-slab_reclaimable: + value: 6.896900e+04 +w838f6010/vmem/vmpage_number-slab_unreclaimable: + value: 5.190000e+03 +w838f6010/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w838f6010/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w838f6700/cpu-0/cpu-idle: + value: 9.619931e+01 +w838f6700/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w838f6700/cpu-0/cpu-nice: + value: 0.000000e+00 +w838f6700/cpu-0/cpu-softirq: + value: 0.000000e+00 +w838f6700/cpu-0/cpu-steal: + value: 0.000000e+00 +w838f6700/cpu-0/cpu-system: + value: 1.899992e+00 +w838f6700/cpu-0/cpu-user: + value: 1.600000e+00 +w838f6700/cpu-0/cpu-wait: + value: 0.000000e+00 +w838f6700/cpu-1/cpu-idle: + value: 9.599589e+01 +w838f6700/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w838f6700/cpu-1/cpu-nice: + value: 0.000000e+00 +w838f6700/cpu-1/cpu-softirq: + value: 0.000000e+00 +w838f6700/cpu-1/cpu-steal: + value: 0.000000e+00 +w838f6700/cpu-1/cpu-system: + value: 1.799923e+00 +w838f6700/cpu-1/cpu-user: + value: 1.799919e+00 +w838f6700/cpu-1/cpu-wait: + value: 0.000000e+00 +w838f6700/cpu-2/cpu-idle: + value: 9.539595e+01 +w838f6700/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w838f6700/cpu-2/cpu-nice: + value: 0.000000e+00 +w838f6700/cpu-2/cpu-softirq: + value: 0.000000e+00 +w838f6700/cpu-2/cpu-steal: + value: 9.999593e-02 +w838f6700/cpu-2/cpu-system: + value: 2.299903e+00 +w838f6700/cpu-2/cpu-user: + value: 1.899919e+00 +w838f6700/cpu-2/cpu-wait: + value: 0.000000e+00 +w838f6700/cpu-3/cpu-idle: + value: 9.439610e+01 +w838f6700/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w838f6700/cpu-3/cpu-nice: + value: 0.000000e+00 +w838f6700/cpu-3/cpu-softirq: + value: 0.000000e+00 +w838f6700/cpu-3/cpu-steal: + value: 0.000000e+00 +w838f6700/cpu-3/cpu-system: + value: 2.699890e+00 +w838f6700/cpu-3/cpu-user: + value: 2.599893e+00 +w838f6700/cpu-3/cpu-wait: + value: 0.000000e+00 +w838f6700/df-boot/df_complex-free: + value: 4.793713e+08 +w838f6700/df-boot/df_complex-reserved: + value: 2.684109e+07 +w838f6700/df-boot/df_complex-used: + value: 2.221261e+07 +w838f6700/df-boot/df_inodes-free: + value: 3.273000e+04 +w838f6700/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-boot/df_inodes-used: + value: 3.800000e+01 +w838f6700/df-boot/percent_bytes-free: + value: 9.071700e+01 +w838f6700/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w838f6700/df-boot/percent_bytes-used: + value: 4.203550e+00 +w838f6700/df-boot/percent_inodes-free: + value: 9.988403e+01 +w838f6700/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-boot/percent_inodes-used: + value: 1.159668e-01 +w838f6700/df-data1/df_complex-free: + value: 2.740491e+10 +w838f6700/df-data1/df_complex-reserved: + value: 1.476235e+09 +w838f6700/df-data1/df_complex-used: + value: 1.802977e+08 +w838f6700/df-data1/df_inodes-free: + value: 1.802227e+06 +w838f6700/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-data1/df_inodes-used: + value: 1.300000e+01 +w838f6700/df-data1/percent_bytes-free: + value: 9.429990e+01 +w838f6700/df-data1/percent_bytes-reserved: + value: 5.079704e+00 +w838f6700/df-data1/percent_bytes-used: + value: 6.204019e-01 +w838f6700/df-data1/percent_inodes-free: + value: 9.999928e+01 +w838f6700/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-data1/percent_inodes-used: + value: 7.213246e-04 +w838f6700/df-dev-shm/df_complex-free: + value: 4.126425e+09 +w838f6700/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w838f6700/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w838f6700/df-dev-shm/df_inodes-free: + value: 1.007427e+06 +w838f6700/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w838f6700/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w838f6700/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w838f6700/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w838f6700/df-dev-shm/percent_inodes-free: + value: 9.999990e+01 +w838f6700/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-dev-shm/percent_inodes-used: + value: 9.926267e-05 +w838f6700/df-root/df_complex-free: + value: 1.069915e+10 +w838f6700/df-root/df_complex-reserved: + value: 6.442435e+08 +w838f6700/df-root/df_complex-used: + value: 1.339314e+09 +w838f6700/df-root/df_inodes-free: + value: 7.466750e+05 +w838f6700/df-root/df_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-root/df_inodes-used: + value: 3.975700e+04 +w838f6700/df-root/percent_bytes-free: + value: 8.436014e+01 +w838f6700/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w838f6700/df-root/percent_bytes-used: + value: 1.056016e+01 +w838f6700/df-root/percent_inodes-free: + value: 9.494464e+01 +w838f6700/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-root/percent_inodes-used: + value: 5.055364e+00 +w838f6700/df-var/df_complex-free: + value: 6.687375e+09 +w838f6700/df-var/df_complex-reserved: + value: 4.294943e+08 +w838f6700/df-var/df_complex-used: + value: 1.338249e+09 +w838f6700/df-var/df_inodes-free: + value: 5.212840e+05 +w838f6700/df-var/df_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-var/df_inodes-used: + value: 3.004000e+03 +w838f6700/df-var/percent_bytes-free: + value: 7.909262e+01 +w838f6700/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w838f6700/df-var/percent_bytes-used: + value: 1.582768e+01 +w838f6700/df-var/percent_inodes-free: + value: 9.942703e+01 +w838f6700/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w838f6700/df-var/percent_inodes-used: + value: 5.729675e-01 +w838f6700/disk-vda/disk_merged: + read: 0.000000e+00 + write: 1.000002e-01 +w838f6700/disk-vda/disk_octets: + read: 0.000000e+00 + write: 2.457603e+03 +w838f6700/disk-vda/disk_ops: + read: 0.000000e+00 + write: 5.000007e-01 +w838f6700/disk-vda/disk_time: + read: 0.000000e+00 + write: 1.200001e+00 +w838f6700/disk-vda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda3/disk_merged: + read: 0.000000e+00 + write: 1.000001e-01 +w838f6700/disk-vda3/disk_octets: + read: 0.000000e+00 + write: 2.457604e+03 +w838f6700/disk-vda3/disk_ops: + read: 0.000000e+00 + write: 5.000007e-01 +w838f6700/disk-vda3/disk_time: + read: 0.000000e+00 + write: 1.200002e+00 +w838f6700/disk-vda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/disk-vda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6700/load/load: + longterm: 2.000000e-02 + midterm: 4.000000e-02 + shortterm: 0.000000e+00 +w838f6700/memory/memory-buffered: + value: 1.980662e+08 +w838f6700/memory/memory-cached: + value: 1.702576e+09 +w838f6700/memory/memory-free: + value: 4.717773e+09 +w838f6700/memory/memory-used: + value: 1.634439e+09 +w838f6700/network/if_octets: + rx: 0.000000e+00 + tx: 9.293005e+02 +w838f6700/network/if_packets: + rx: 0.000000e+00 + tx: 7.000008e-01 +w838f6700/network/queue_length: + value: 0.000000e+00 +w838f6700/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w838f6700/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w838f6700/network/total_values-send-accepted: + value: 1.640000e+01 +w838f6700/network/total_values-send-rejected: + value: 0.000000e+00 +w838f6700/swap/swap-cached: + value: 0.000000e+00 +w838f6700/swap/swap-free: + value: 2.147475e+09 +w838f6700/swap/swap-used: + value: 0.000000e+00 +w838f6700/swap/swap_io-in: + value: 0.000000e+00 +w838f6700/swap/swap_io-out: + value: 0.000000e+00 +w838f6700/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 2.519992e+01 +w838f6700/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 1.999993e+00 +w838f6700/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w838f6700/vmem/vmpage_number-active_anon: + value: 2.680560e+05 +w838f6700/vmem/vmpage_number-active_file: + value: 1.344860e+05 +w838f6700/vmem/vmpage_number-anon_pages: + value: 1.661620e+05 +w838f6700/vmem/vmpage_number-anon_transparent_hugepages: + value: 1.990000e+02 +w838f6700/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-dirty: + value: 6.000000e+00 +w838f6700/vmem/vmpage_number-file_pages: + value: 4.640230e+05 +w838f6700/vmem/vmpage_number-free_pages: + value: 1.151800e+06 +w838f6700/vmem/vmpage_number-inactive_anon: + value: 6.300000e+01 +w838f6700/vmem/vmpage_number-inactive_file: + value: 3.294730e+05 +w838f6700/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-kernel_stack: + value: 2.060000e+02 +w838f6700/vmem/vmpage_number-mapped: + value: 7.423000e+03 +w838f6700/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-page_table_pages: + value: 2.612000e+03 +w838f6700/vmem/vmpage_number-shmem: + value: 6.900000e+01 +w838f6700/vmem/vmpage_number-slab_reclaimable: + value: 1.048400e+05 +w838f6700/vmem/vmpage_number-slab_unreclaimable: + value: 6.180000e+03 +w838f6700/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w838f6700/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w838f6800/cpu-0/cpu-idle: + value: 1.000001e+02 +w838f6800/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w838f6800/cpu-0/cpu-nice: + value: 0.000000e+00 +w838f6800/cpu-0/cpu-softirq: + value: 0.000000e+00 +w838f6800/cpu-0/cpu-steal: + value: 0.000000e+00 +w838f6800/cpu-0/cpu-system: + value: 0.000000e+00 +w838f6800/cpu-0/cpu-user: + value: 0.000000e+00 +w838f6800/cpu-0/cpu-wait: + value: 0.000000e+00 +w838f6800/cpu-1/cpu-idle: + value: 9.989984e+01 +w838f6800/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w838f6800/cpu-1/cpu-nice: + value: 0.000000e+00 +w838f6800/cpu-1/cpu-softirq: + value: 0.000000e+00 +w838f6800/cpu-1/cpu-steal: + value: 0.000000e+00 +w838f6800/cpu-1/cpu-system: + value: 0.000000e+00 +w838f6800/cpu-1/cpu-user: + value: 0.000000e+00 +w838f6800/cpu-1/cpu-wait: + value: 0.000000e+00 +w838f6800/cpu-2/cpu-idle: + value: 9.989981e+01 +w838f6800/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w838f6800/cpu-2/cpu-nice: + value: 0.000000e+00 +w838f6800/cpu-2/cpu-softirq: + value: 0.000000e+00 +w838f6800/cpu-2/cpu-steal: + value: 0.000000e+00 +w838f6800/cpu-2/cpu-system: + value: 0.000000e+00 +w838f6800/cpu-2/cpu-user: + value: 0.000000e+00 +w838f6800/cpu-2/cpu-wait: + value: 0.000000e+00 +w838f6800/cpu-3/cpu-idle: + value: 9.989982e+01 +w838f6800/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w838f6800/cpu-3/cpu-nice: + value: 0.000000e+00 +w838f6800/cpu-3/cpu-softirq: + value: 0.000000e+00 +w838f6800/cpu-3/cpu-steal: + value: 0.000000e+00 +w838f6800/cpu-3/cpu-system: + value: 0.000000e+00 +w838f6800/cpu-3/cpu-user: + value: 0.000000e+00 +w838f6800/cpu-3/cpu-wait: + value: 0.000000e+00 +w838f6800/df-boot/df_complex-free: + value: 4.793917e+08 +w838f6800/df-boot/df_complex-reserved: + value: 2.684109e+07 +w838f6800/df-boot/df_complex-used: + value: 2.219213e+07 +w838f6800/df-boot/df_inodes-free: + value: 3.273000e+04 +w838f6800/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-boot/df_inodes-used: + value: 3.800000e+01 +w838f6800/df-boot/percent_bytes-free: + value: 9.072087e+01 +w838f6800/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w838f6800/df-boot/percent_bytes-used: + value: 4.199674e+00 +w838f6800/df-boot/percent_inodes-free: + value: 9.988403e+01 +w838f6800/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-boot/percent_inodes-used: + value: 1.159668e-01 +w838f6800/df-data1/df_complex-free: + value: 2.740491e+10 +w838f6800/df-data1/df_complex-reserved: + value: 1.476235e+09 +w838f6800/df-data1/df_complex-used: + value: 1.802977e+08 +w838f6800/df-data1/df_inodes-free: + value: 1.802227e+06 +w838f6800/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-data1/df_inodes-used: + value: 1.300000e+01 +w838f6800/df-data1/percent_bytes-free: + value: 9.429990e+01 +w838f6800/df-data1/percent_bytes-reserved: + value: 5.079704e+00 +w838f6800/df-data1/percent_bytes-used: + value: 6.204019e-01 +w838f6800/df-data1/percent_inodes-free: + value: 9.999928e+01 +w838f6800/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-data1/percent_inodes-used: + value: 7.213246e-04 +w838f6800/df-dev-shm/df_complex-free: + value: 4.126425e+09 +w838f6800/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w838f6800/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w838f6800/df-dev-shm/df_inodes-free: + value: 1.007427e+06 +w838f6800/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w838f6800/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w838f6800/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w838f6800/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w838f6800/df-dev-shm/percent_inodes-free: + value: 9.999990e+01 +w838f6800/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-dev-shm/percent_inodes-used: + value: 9.926267e-05 +w838f6800/df-root/df_complex-free: + value: 1.099071e+10 +w838f6800/df-root/df_complex-reserved: + value: 6.442435e+08 +w838f6800/df-root/df_complex-used: + value: 1.047757e+09 +w838f6800/df-root/df_inodes-free: + value: 7.509280e+05 +w838f6800/df-root/df_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-root/df_inodes-used: + value: 3.550400e+04 +w838f6800/df-root/percent_bytes-free: + value: 8.665900e+01 +w838f6800/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w838f6800/df-root/percent_bytes-used: + value: 8.261303e+00 +w838f6800/df-root/percent_inodes-free: + value: 9.548543e+01 +w838f6800/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-root/percent_inodes-used: + value: 4.514567e+00 +w838f6800/df-var/df_complex-free: + value: 7.635927e+09 +w838f6800/df-var/df_complex-reserved: + value: 4.294943e+08 +w838f6800/df-var/df_complex-used: + value: 3.896975e+08 +w838f6800/df-var/df_inodes-free: + value: 5.230400e+05 +w838f6800/df-var/df_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-var/df_inodes-used: + value: 1.248000e+03 +w838f6800/df-var/percent_bytes-free: + value: 9.031129e+01 +w838f6800/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w838f6800/df-var/percent_bytes-used: + value: 4.609013e+00 +w838f6800/df-var/percent_inodes-free: + value: 9.976196e+01 +w838f6800/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w838f6800/df-var/percent_inodes-used: + value: 2.380371e-01 +w838f6800/disk-vda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/disk-vda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6800/load/load: + longterm: 0.000000e+00 + midterm: 0.000000e+00 + shortterm: 0.000000e+00 +w838f6800/memory/memory-buffered: + value: 1.443430e+08 +w838f6800/memory/memory-cached: + value: 4.507607e+08 +w838f6800/memory/memory-free: + value: 7.122756e+09 +w838f6800/memory/memory-used: + value: 5.349949e+08 +w838f6800/network/if_octets: + rx: 0.000000e+00 + tx: 7.896001e+02 +w838f6800/network/if_packets: + rx: 0.000000e+00 + tx: 6.000121e-01 +w838f6800/network/queue_length: + value: 0.000000e+00 +w838f6800/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w838f6800/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w838f6800/network/total_values-send-accepted: + value: 1.530036e+01 +w838f6800/network/total_values-send-rejected: + value: 0.000000e+00 +w838f6800/swap/swap-cached: + value: 0.000000e+00 +w838f6800/swap/swap-free: + value: 2.147475e+09 +w838f6800/swap/swap-used: + value: 0.000000e+00 +w838f6800/swap/swap_io-in: + value: 0.000000e+00 +w838f6800/swap/swap_io-out: + value: 0.000000e+00 +w838f6800/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 4.500056e+00 +w838f6800/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w838f6800/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w838f6800/vmem/vmpage_number-active_anon: + value: 1.298400e+04 +w838f6800/vmem/vmpage_number-active_file: + value: 7.437200e+04 +w838f6800/vmem/vmpage_number-anon_pages: + value: 1.042100e+04 +w838f6800/vmem/vmpage_number-anon_transparent_hugepages: + value: 5.000000e+00 +w838f6800/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-dirty: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-file_pages: + value: 1.452890e+05 +w838f6800/vmem/vmpage_number-free_pages: + value: 1.738954e+06 +w838f6800/vmem/vmpage_number-inactive_anon: + value: 4.200000e+01 +w838f6800/vmem/vmpage_number-inactive_file: + value: 7.087600e+04 +w838f6800/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-kernel_stack: + value: 1.390000e+02 +w838f6800/vmem/vmpage_number-mapped: + value: 1.478000e+03 +w838f6800/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-page_table_pages: + value: 4.100000e+02 +w838f6800/vmem/vmpage_number-shmem: + value: 4.500000e+01 +w838f6800/vmem/vmpage_number-slab_reclaimable: + value: 9.488500e+04 +w838f6800/vmem/vmpage_number-slab_unreclaimable: + value: 5.513000e+03 +w838f6800/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w838f6800/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w838f6900/cpu-0/cpu-idle: + value: 9.700088e+01 +w838f6900/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w838f6900/cpu-0/cpu-nice: + value: 0.000000e+00 +w838f6900/cpu-0/cpu-softirq: + value: 0.000000e+00 +w838f6900/cpu-0/cpu-steal: + value: 0.000000e+00 +w838f6900/cpu-0/cpu-system: + value: 1.000009e-01 +w838f6900/cpu-0/cpu-user: + value: 2.900025e+00 +w838f6900/cpu-0/cpu-wait: + value: 0.000000e+00 +w838f6900/cpu-1/cpu-idle: + value: 9.960079e+01 +w838f6900/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w838f6900/cpu-1/cpu-nice: + value: 0.000000e+00 +w838f6900/cpu-1/cpu-softirq: + value: 0.000000e+00 +w838f6900/cpu-1/cpu-steal: + value: 0.000000e+00 +w838f6900/cpu-1/cpu-system: + value: 0.000000e+00 +w838f6900/cpu-1/cpu-user: + value: 0.000000e+00 +w838f6900/cpu-1/cpu-wait: + value: 0.000000e+00 +w838f6900/df-boot/df_complex-free: + value: 4.793836e+08 +w838f6900/df-boot/df_complex-reserved: + value: 2.684109e+07 +w838f6900/df-boot/df_complex-used: + value: 2.220032e+07 +w838f6900/df-boot/df_inodes-free: + value: 3.273000e+04 +w838f6900/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-boot/df_inodes-used: + value: 3.800000e+01 +w838f6900/df-boot/percent_bytes-free: + value: 9.071932e+01 +w838f6900/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w838f6900/df-boot/percent_bytes-used: + value: 4.201225e+00 +w838f6900/df-boot/percent_inodes-free: + value: 9.988403e+01 +w838f6900/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-boot/percent_inodes-used: + value: 1.159668e-01 +w838f6900/df-data1/df_complex-free: + value: 2.740491e+10 +w838f6900/df-data1/df_complex-reserved: + value: 1.476235e+09 +w838f6900/df-data1/df_complex-used: + value: 1.802977e+08 +w838f6900/df-data1/df_inodes-free: + value: 1.802227e+06 +w838f6900/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-data1/df_inodes-used: + value: 1.300000e+01 +w838f6900/df-data1/percent_bytes-free: + value: 9.429990e+01 +w838f6900/df-data1/percent_bytes-reserved: + value: 5.079704e+00 +w838f6900/df-data1/percent_bytes-used: + value: 6.204019e-01 +w838f6900/df-data1/percent_inodes-free: + value: 9.999928e+01 +w838f6900/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-data1/percent_inodes-used: + value: 7.213246e-04 +w838f6900/df-dev-shm/df_complex-free: + value: 9.842483e+08 +w838f6900/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w838f6900/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w838f6900/df-dev-shm/df_inodes-free: + value: 2.402940e+05 +w838f6900/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w838f6900/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w838f6900/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w838f6900/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w838f6900/df-dev-shm/percent_inodes-free: + value: 9.999958e+01 +w838f6900/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-dev-shm/percent_inodes-used: + value: 4.161551e-04 +w838f6900/df-root/df_complex-free: + value: 1.097382e+10 +w838f6900/df-root/df_complex-reserved: + value: 6.442435e+08 +w838f6900/df-root/df_complex-used: + value: 1.064645e+09 +w838f6900/df-root/df_inodes-free: + value: 7.501330e+05 +w838f6900/df-root/df_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-root/df_inodes-used: + value: 3.629900e+04 +w838f6900/df-root/percent_bytes-free: + value: 8.652584e+01 +w838f6900/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w838f6900/df-root/percent_bytes-used: + value: 8.394459e+00 +w838f6900/df-root/percent_inodes-free: + value: 9.538434e+01 +w838f6900/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-root/percent_inodes-used: + value: 4.615657e+00 +w838f6900/df-var/df_complex-free: + value: 7.637877e+09 +w838f6900/df-var/df_complex-reserved: + value: 4.294943e+08 +w838f6900/df-var/df_complex-used: + value: 3.877478e+08 +w838f6900/df-var/df_inodes-free: + value: 5.229840e+05 +w838f6900/df-var/df_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-var/df_inodes-used: + value: 1.304000e+03 +w838f6900/df-var/percent_bytes-free: + value: 9.033435e+01 +w838f6900/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w838f6900/df-var/percent_bytes-used: + value: 4.585954e+00 +w838f6900/df-var/percent_inodes-free: + value: 9.975128e+01 +w838f6900/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w838f6900/df-var/percent_inodes-used: + value: 2.487183e-01 +w838f6900/disk-vda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/disk-vda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w838f6900/load/load: + longterm: 0.000000e+00 + midterm: 0.000000e+00 + shortterm: 0.000000e+00 +w838f6900/memory/memory-buffered: + value: 1.040671e+08 +w838f6900/memory/memory-cached: + value: 4.379361e+08 +w838f6900/memory/memory-free: + value: 9.871852e+08 +w838f6900/memory/memory-used: + value: 4.393083e+08 +w838f6900/network/if_octets: + rx: 0.000000e+00 + tx: 6.614006e+02 +w838f6900/network/if_packets: + rx: 0.000000e+00 + tx: 4.999994e-01 +w838f6900/network/queue_length: + value: 0.000000e+00 +w838f6900/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w838f6900/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w838f6900/network/total_values-send-accepted: + value: 1.479996e+01 +w838f6900/network/total_values-send-rejected: + value: 0.000000e+00 +w838f6900/swap/swap-cached: + value: 0.000000e+00 +w838f6900/swap/swap-free: + value: 2.147475e+09 +w838f6900/swap/swap-used: + value: 0.000000e+00 +w838f6900/swap/swap_io-in: + value: 0.000000e+00 +w838f6900/swap/swap_io-out: + value: 0.000000e+00 +w838f6900/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 4.300042e+00 +w838f6900/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w838f6900/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w838f6900/vmem/vmpage_number-active_anon: + value: 3.653600e+04 +w838f6900/vmem/vmpage_number-active_file: + value: 7.163800e+04 +w838f6900/vmem/vmpage_number-anon_pages: + value: 2.014900e+04 +w838f6900/vmem/vmpage_number-anon_transparent_hugepages: + value: 3.200000e+01 +w838f6900/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-dirty: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-file_pages: + value: 1.323250e+05 +w838f6900/vmem/vmpage_number-free_pages: + value: 2.410120e+05 +w838f6900/vmem/vmpage_number-inactive_anon: + value: 4.300000e+01 +w838f6900/vmem/vmpage_number-inactive_file: + value: 6.064500e+04 +w838f6900/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-kernel_stack: + value: 1.280000e+02 +w838f6900/vmem/vmpage_number-mapped: + value: 3.447000e+03 +w838f6900/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-page_table_pages: + value: 6.660000e+02 +w838f6900/vmem/vmpage_number-shmem: + value: 4.600000e+01 +w838f6900/vmem/vmpage_number-slab_reclaimable: + value: 5.838000e+04 +w838f6900/vmem/vmpage_number-slab_unreclaimable: + value: 5.330000e+03 +w838f6900/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w838f6900/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w83df6100/cpu-0/cpu-idle: + value: 9.979989e+01 +w83df6100/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-0/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-0/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-0/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-0/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-0/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-0/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-1/cpu-idle: + value: 9.999984e+01 +w83df6100/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-1/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-1/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-1/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-1/cpu-system: + value: 9.999985e-02 +w83df6100/cpu-1/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-1/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-10/cpu-idle: + value: 9.989993e+01 +w83df6100/cpu-10/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-10/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-10/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-10/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-10/cpu-system: + value: 9.999993e-02 +w83df6100/cpu-10/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-10/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-11/cpu-idle: + value: 9.999994e+01 +w83df6100/cpu-11/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-11/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-11/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-11/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-11/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-11/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-11/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-12/cpu-idle: + value: 9.999992e+01 +w83df6100/cpu-12/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-12/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-12/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-12/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-12/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-12/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-12/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-13/cpu-idle: + value: 9.989989e+01 +w83df6100/cpu-13/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-13/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-13/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-13/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-13/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-13/cpu-user: + value: 9.999990e-02 +w83df6100/cpu-13/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-14/cpu-idle: + value: 9.999994e+01 +w83df6100/cpu-14/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-14/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-14/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-14/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-14/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-14/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-14/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-15/cpu-idle: + value: 9.990003e+01 +w83df6100/cpu-15/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-15/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-15/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-15/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-15/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-15/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-15/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-16/cpu-idle: + value: 1.000001e+02 +w83df6100/cpu-16/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-16/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-16/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-16/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-16/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-16/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-16/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-17/cpu-idle: + value: 9.999995e+01 +w83df6100/cpu-17/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-17/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-17/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-17/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-17/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-17/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-17/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-18/cpu-idle: + value: 9.999993e+01 +w83df6100/cpu-18/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-18/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-18/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-18/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-18/cpu-system: + value: 9.999993e-02 +w83df6100/cpu-18/cpu-user: + value: 9.999991e-02 +w83df6100/cpu-18/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-19/cpu-idle: + value: 9.989974e+01 +w83df6100/cpu-19/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-19/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-19/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-19/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-19/cpu-system: + value: 9.999975e-02 +w83df6100/cpu-19/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-19/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-2/cpu-idle: + value: 9.999995e+01 +w83df6100/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-2/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-2/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-2/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-2/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-2/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-2/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-20/cpu-idle: + value: 9.999968e+01 +w83df6100/cpu-20/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-20/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-20/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-20/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-20/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-20/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-20/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-21/cpu-idle: + value: 9.999958e+01 +w83df6100/cpu-21/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-21/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-21/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-21/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-21/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-21/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-21/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-22/cpu-idle: + value: 9.999951e+01 +w83df6100/cpu-22/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-22/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-22/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-22/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-22/cpu-system: + value: 9.999951e-02 +w83df6100/cpu-22/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-22/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-23/cpu-idle: + value: 9.989947e+01 +w83df6100/cpu-23/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-23/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-23/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-23/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-23/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-23/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-23/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-3/cpu-idle: + value: 1.000002e+02 +w83df6100/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-3/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-3/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-3/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-3/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-3/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-3/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-4/cpu-idle: + value: 1.000004e+02 +w83df6100/cpu-4/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-4/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-4/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-4/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-4/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-4/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-4/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-5/cpu-idle: + value: 1.000004e+02 +w83df6100/cpu-5/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-5/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-5/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-5/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-5/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-5/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-5/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-6/cpu-idle: + value: 9.990037e+01 +w83df6100/cpu-6/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-6/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-6/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-6/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-6/cpu-system: + value: 1.000004e-01 +w83df6100/cpu-6/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-6/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-7/cpu-idle: + value: 9.990034e+01 +w83df6100/cpu-7/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-7/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-7/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-7/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-7/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-7/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-7/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-8/cpu-idle: + value: 9.990024e+01 +w83df6100/cpu-8/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-8/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-8/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-8/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-8/cpu-system: + value: 3.000007e-01 +w83df6100/cpu-8/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-8/cpu-wait: + value: 0.000000e+00 +w83df6100/cpu-9/cpu-idle: + value: 9.999998e+01 +w83df6100/cpu-9/cpu-interrupt: + value: 0.000000e+00 +w83df6100/cpu-9/cpu-nice: + value: 0.000000e+00 +w83df6100/cpu-9/cpu-softirq: + value: 0.000000e+00 +w83df6100/cpu-9/cpu-steal: + value: 0.000000e+00 +w83df6100/cpu-9/cpu-system: + value: 0.000000e+00 +w83df6100/cpu-9/cpu-user: + value: 0.000000e+00 +w83df6100/cpu-9/cpu-wait: + value: 0.000000e+00 +w83df6100/df-boot/df_complex-free: + value: 4.369900e+08 +w83df6100/df-boot/df_complex-reserved: + value: 2.684109e+07 +w83df6100/df-boot/df_complex-used: + value: 6.459392e+07 +w83df6100/df-boot/df_inodes-free: + value: 3.271800e+04 +w83df6100/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-boot/df_inodes-used: + value: 5.000000e+01 +w83df6100/df-boot/percent_bytes-free: + value: 8.269669e+01 +w83df6100/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w83df6100/df-boot/percent_bytes-used: + value: 1.222386e+01 +w83df6100/df-boot/percent_inodes-free: + value: 9.984741e+01 +w83df6100/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-boot/percent_inodes-used: + value: 1.525879e-01 +w83df6100/df-data1/df_complex-free: + value: 2.574625e+11 +w83df6100/df-data1/df_complex-reserved: + value: 1.378982e+10 +w83df6100/df-data1/df_complex-used: + value: 2.165924e+08 +w83df6100/df-data1/df_inodes-free: + value: 1.683452e+07 +w83df6100/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-data1/df_inodes-used: + value: 4.400000e+01 +w83df6100/df-data1/percent_bytes-free: + value: 9.484051e+01 +w83df6100/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +w83df6100/df-data1/percent_bytes-used: + value: 7.978535e-02 +w83df6100/df-data1/percent_inodes-free: + value: 9.999974e+01 +w83df6100/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-data1/percent_inodes-used: + value: 2.613671e-04 +w83df6100/df-dev-shm/df_complex-free: + value: 3.375709e+10 +w83df6100/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w83df6100/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w83df6100/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +w83df6100/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w83df6100/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w83df6100/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w83df6100/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w83df6100/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +w83df6100/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +w83df6100/df-root/df_complex-free: + value: 1.076427e+10 +w83df6100/df-root/df_complex-reserved: + value: 6.442435e+08 +w83df6100/df-root/df_complex-used: + value: 1.274192e+09 +w83df6100/df-root/df_inodes-free: + value: 7.458150e+05 +w83df6100/df-root/df_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-root/df_inodes-used: + value: 4.061700e+04 +w83df6100/df-root/percent_bytes-free: + value: 8.487361e+01 +w83df6100/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w83df6100/df-root/percent_bytes-used: + value: 1.004669e+01 +w83df6100/df-root/percent_inodes-free: + value: 9.483528e+01 +w83df6100/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-root/percent_inodes-used: + value: 5.164719e+00 +w83df6100/df-var/df_complex-free: + value: 7.566651e+09 +w83df6100/df-var/df_complex-reserved: + value: 4.294943e+08 +w83df6100/df-var/df_complex-used: + value: 4.589732e+08 +w83df6100/df-var/df_inodes-free: + value: 5.227920e+05 +w83df6100/df-var/df_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-var/df_inodes-used: + value: 1.496000e+03 +w83df6100/df-var/percent_bytes-free: + value: 8.949196e+01 +w83df6100/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w83df6100/df-var/percent_bytes-used: + value: 5.428347e+00 +w83df6100/df-var/percent_inodes-free: + value: 9.971466e+01 +w83df6100/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w83df6100/df-var/percent_inodes-used: + value: 2.853394e-01 +w83df6100/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6100/load/load: + longterm: 0.000000e+00 + midterm: 0.000000e+00 + shortterm: 0.000000e+00 +w83df6100/memory/memory-buffered: + value: 2.127012e+08 +w83df6100/memory/memory-cached: + value: 5.203763e+08 +w83df6100/memory/memory-free: + value: 6.526190e+10 +w83df6100/memory/memory-used: + value: 1.519194e+09 +w83df6100/network/if_octets: + rx: 0.000000e+00 + tx: 1.580500e+03 +w83df6100/network/if_packets: + rx: 0.000000e+00 + tx: 1.200000e+00 +w83df6100/network/queue_length: + value: 0.000000e+00 +w83df6100/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w83df6100/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w83df6100/network/total_values-send-accepted: + value: 3.239997e+01 +w83df6100/network/total_values-send-rejected: + value: 0.000000e+00 +w83df6100/swap/swap-cached: + value: 0.000000e+00 +w83df6100/swap/swap-free: + value: 2.147475e+09 +w83df6100/swap/swap-used: + value: 0.000000e+00 +w83df6100/swap/swap_io-in: + value: 0.000000e+00 +w83df6100/swap/swap_io-out: + value: 0.000000e+00 +w83df6100/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 3.899998e+00 +w83df6100/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6100/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6100/vmem/vmpage_number-active_anon: + value: 1.617900e+04 +w83df6100/vmem/vmpage_number-active_file: + value: 1.166460e+05 +w83df6100/vmem/vmpage_number-anon_pages: + value: 1.208200e+04 +w83df6100/vmem/vmpage_number-anon_transparent_hugepages: + value: 8.000000e+00 +w83df6100/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-dirty: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-file_pages: + value: 1.789740e+05 +w83df6100/vmem/vmpage_number-free_pages: + value: 1.593308e+07 +w83df6100/vmem/vmpage_number-inactive_anon: + value: 4.500000e+01 +w83df6100/vmem/vmpage_number-inactive_file: + value: 6.228400e+04 +w83df6100/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-kernel_stack: + value: 4.390000e+02 +w83df6100/vmem/vmpage_number-mapped: + value: 1.670000e+03 +w83df6100/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-page_table_pages: + value: 5.870000e+02 +w83df6100/vmem/vmpage_number-shmem: + value: 4.700000e+01 +w83df6100/vmem/vmpage_number-slab_reclaimable: + value: 2.364110e+05 +w83df6100/vmem/vmpage_number-slab_unreclaimable: + value: 1.472600e+04 +w83df6100/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w83df6100/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w83df6200/cpu-0/cpu-idle: + value: 9.970004e+01 +w83df6200/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-0/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-0/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-0/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-0/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-0/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-0/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-1/cpu-idle: + value: 1.000000e+02 +w83df6200/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-1/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-1/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-1/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-1/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-1/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-1/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-10/cpu-idle: + value: 9.990010e+01 +w83df6200/cpu-10/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-10/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-10/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-10/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-10/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-10/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-10/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-11/cpu-idle: + value: 1.000000e+02 +w83df6200/cpu-11/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-11/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-11/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-11/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-11/cpu-system: + value: 1.000001e-01 +w83df6200/cpu-11/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-11/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-12/cpu-idle: + value: 9.990011e+01 +w83df6200/cpu-12/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-12/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-12/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-12/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-12/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-12/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-12/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-13/cpu-idle: + value: 9.990010e+01 +w83df6200/cpu-13/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-13/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-13/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-13/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-13/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-13/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-13/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-14/cpu-idle: + value: 1.000000e+02 +w83df6200/cpu-14/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-14/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-14/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-14/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-14/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-14/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-14/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-15/cpu-idle: + value: 1.000000e+02 +w83df6200/cpu-15/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-15/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-15/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-15/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-15/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-15/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-15/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-16/cpu-idle: + value: 9.999999e+01 +w83df6200/cpu-16/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-16/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-16/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-16/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-16/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-16/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-16/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-17/cpu-idle: + value: 1.000000e+02 +w83df6200/cpu-17/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-17/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-17/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-17/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-17/cpu-system: + value: 1.000000e-01 +w83df6200/cpu-17/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-17/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-18/cpu-idle: + value: 9.990002e+01 +w83df6200/cpu-18/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-18/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-18/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-18/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-18/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-18/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-18/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-19/cpu-idle: + value: 9.989997e+01 +w83df6200/cpu-19/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-19/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-19/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-19/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-19/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-19/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-19/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-2/cpu-idle: + value: 9.980002e+01 +w83df6200/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-2/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-2/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-2/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-2/cpu-system: + value: 1.000000e-01 +w83df6200/cpu-2/cpu-user: + value: 1.000000e-01 +w83df6200/cpu-2/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-20/cpu-idle: + value: 9.999997e+01 +w83df6200/cpu-20/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-20/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-20/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-20/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-20/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-20/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-20/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-21/cpu-idle: + value: 9.989997e+01 +w83df6200/cpu-21/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-21/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-21/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-21/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-21/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-21/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-21/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-22/cpu-idle: + value: 9.990010e+01 +w83df6200/cpu-22/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-22/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-22/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-22/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-22/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-22/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-22/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-23/cpu-idle: + value: 1.000000e+02 +w83df6200/cpu-23/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-23/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-23/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-23/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-23/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-23/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-23/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-3/cpu-idle: + value: 9.990001e+01 +w83df6200/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-3/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-3/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-3/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-3/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-3/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-3/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-4/cpu-idle: + value: 9.989997e+01 +w83df6200/cpu-4/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-4/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-4/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-4/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-4/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-4/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-4/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-5/cpu-idle: + value: 9.989993e+01 +w83df6200/cpu-5/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-5/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-5/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-5/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-5/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-5/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-5/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-6/cpu-idle: + value: 9.989989e+01 +w83df6200/cpu-6/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-6/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-6/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-6/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-6/cpu-system: + value: 9.999989e-02 +w83df6200/cpu-6/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-6/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-7/cpu-idle: + value: 9.990003e+01 +w83df6200/cpu-7/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-7/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-7/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-7/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-7/cpu-system: + value: 2.000001e-01 +w83df6200/cpu-7/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-7/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-8/cpu-idle: + value: 9.990009e+01 +w83df6200/cpu-8/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-8/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-8/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-8/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-8/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-8/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-8/cpu-wait: + value: 0.000000e+00 +w83df6200/cpu-9/cpu-idle: + value: 1.000001e+02 +w83df6200/cpu-9/cpu-interrupt: + value: 0.000000e+00 +w83df6200/cpu-9/cpu-nice: + value: 0.000000e+00 +w83df6200/cpu-9/cpu-softirq: + value: 0.000000e+00 +w83df6200/cpu-9/cpu-steal: + value: 0.000000e+00 +w83df6200/cpu-9/cpu-system: + value: 0.000000e+00 +w83df6200/cpu-9/cpu-user: + value: 0.000000e+00 +w83df6200/cpu-9/cpu-wait: + value: 0.000000e+00 +w83df6200/df-boot/df_complex-free: + value: 4.369490e+08 +w83df6200/df-boot/df_complex-reserved: + value: 2.684109e+07 +w83df6200/df-boot/df_complex-used: + value: 6.463488e+07 +w83df6200/df-boot/df_inodes-free: + value: 3.271800e+04 +w83df6200/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-boot/df_inodes-used: + value: 5.000000e+01 +w83df6200/df-boot/percent_bytes-free: + value: 8.268894e+01 +w83df6200/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w83df6200/df-boot/percent_bytes-used: + value: 1.223161e+01 +w83df6200/df-boot/percent_inodes-free: + value: 9.984741e+01 +w83df6200/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-boot/percent_inodes-used: + value: 1.525879e-01 +w83df6200/df-data1/df_complex-free: + value: 2.574625e+11 +w83df6200/df-data1/df_complex-reserved: + value: 1.378982e+10 +w83df6200/df-data1/df_complex-used: + value: 2.165924e+08 +w83df6200/df-data1/df_inodes-free: + value: 1.683452e+07 +w83df6200/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-data1/df_inodes-used: + value: 4.400000e+01 +w83df6200/df-data1/percent_bytes-free: + value: 9.484051e+01 +w83df6200/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +w83df6200/df-data1/percent_bytes-used: + value: 7.978535e-02 +w83df6200/df-data1/percent_inodes-free: + value: 9.999974e+01 +w83df6200/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-data1/percent_inodes-used: + value: 2.613671e-04 +w83df6200/df-dev-shm/df_complex-free: + value: 3.375709e+10 +w83df6200/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w83df6200/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w83df6200/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +w83df6200/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w83df6200/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w83df6200/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w83df6200/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w83df6200/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +w83df6200/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +w83df6200/df-root/df_complex-free: + value: 1.076426e+10 +w83df6200/df-root/df_complex-reserved: + value: 6.442435e+08 +w83df6200/df-root/df_complex-used: + value: 1.274200e+09 +w83df6200/df-root/df_inodes-free: + value: 7.458150e+05 +w83df6200/df-root/df_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-root/df_inodes-used: + value: 4.061700e+04 +w83df6200/df-root/percent_bytes-free: + value: 8.487355e+01 +w83df6200/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w83df6200/df-root/percent_bytes-used: + value: 1.004675e+01 +w83df6200/df-root/percent_inodes-free: + value: 9.483528e+01 +w83df6200/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-root/percent_inodes-used: + value: 5.164719e+00 +w83df6200/df-var/df_complex-free: + value: 7.567688e+09 +w83df6200/df-var/df_complex-reserved: + value: 4.294943e+08 +w83df6200/df-var/df_complex-used: + value: 4.579369e+08 +w83df6200/df-var/df_inodes-free: + value: 5.227970e+05 +w83df6200/df-var/df_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-var/df_inodes-used: + value: 1.491000e+03 +w83df6200/df-var/percent_bytes-free: + value: 8.950421e+01 +w83df6200/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w83df6200/df-var/percent_bytes-used: + value: 5.416090e+00 +w83df6200/df-var/percent_inodes-free: + value: 9.971561e+01 +w83df6200/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w83df6200/df-var/percent_inodes-used: + value: 2.843857e-01 +w83df6200/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6200/load/load: + longterm: 0.000000e+00 + midterm: 2.000000e-02 + shortterm: 1.000000e-02 +w83df6200/memory/memory-buffered: + value: 2.156175e+08 +w83df6200/memory/memory-cached: + value: 5.203517e+08 +w83df6200/memory/memory-free: + value: 6.524863e+10 +w83df6200/memory/memory-used: + value: 1.529577e+09 +w83df6200/network/if_octets: + rx: 0.000000e+00 + tx: 2.117499e+03 +w83df6200/network/if_packets: + rx: 0.000000e+00 + tx: 1.600001e+00 +w83df6200/network/queue_length: + value: 0.000000e+00 +w83df6200/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w83df6200/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w83df6200/network/total_values-send-accepted: + value: 4.570050e+01 +w83df6200/network/total_values-send-rejected: + value: 0.000000e+00 +w83df6200/swap/swap-cached: + value: 0.000000e+00 +w83df6200/swap/swap-free: + value: 2.147475e+09 +w83df6200/swap/swap-used: + value: 0.000000e+00 +w83df6200/swap/swap_io-in: + value: 0.000000e+00 +w83df6200/swap/swap_io-out: + value: 0.000000e+00 +w83df6200/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 8.000883e-01 +w83df6200/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6200/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6200/vmem/vmpage_number-active_anon: + value: 1.666900e+04 +w83df6200/vmem/vmpage_number-active_file: + value: 1.167210e+05 +w83df6200/vmem/vmpage_number-anon_pages: + value: 1.154700e+04 +w83df6200/vmem/vmpage_number-anon_transparent_hugepages: + value: 1.000000e+01 +w83df6200/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-dirty: + value: 2.000000e+00 +w83df6200/vmem/vmpage_number-file_pages: + value: 1.796800e+05 +w83df6200/vmem/vmpage_number-free_pages: + value: 1.592984e+07 +w83df6200/vmem/vmpage_number-inactive_anon: + value: 4.500000e+01 +w83df6200/vmem/vmpage_number-inactive_file: + value: 6.291600e+04 +w83df6200/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-kernel_stack: + value: 4.390000e+02 +w83df6200/vmem/vmpage_number-mapped: + value: 1.669000e+03 +w83df6200/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-page_table_pages: + value: 5.770000e+02 +w83df6200/vmem/vmpage_number-shmem: + value: 4.700000e+01 +w83df6200/vmem/vmpage_number-slab_reclaimable: + value: 2.386770e+05 +w83df6200/vmem/vmpage_number-slab_unreclaimable: + value: 1.476200e+04 +w83df6200/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w83df6200/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w83df6300/cpu-0/cpu-idle: + value: 9.980074e+01 +w83df6300/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-0/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-0/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-0/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-0/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-0/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-0/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-1/cpu-idle: + value: 9.990070e+01 +w83df6300/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-1/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-1/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-1/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-1/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-1/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-1/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-10/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-10/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-10/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-10/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-10/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-10/cpu-system: + value: 1.000011e-01 +w83df6300/cpu-10/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-10/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-11/cpu-idle: + value: 1.000011e+02 +w83df6300/cpu-11/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-11/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-11/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-11/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-11/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-11/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-11/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-12/cpu-idle: + value: 9.980111e+01 +w83df6300/cpu-12/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-12/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-12/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-12/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-12/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-12/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-12/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-13/cpu-idle: + value: 9.990102e+01 +w83df6300/cpu-13/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-13/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-13/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-13/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-13/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-13/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-13/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-14/cpu-idle: + value: 9.990101e+01 +w83df6300/cpu-14/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-14/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-14/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-14/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-14/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-14/cpu-user: + value: 1.000010e-01 +w83df6300/cpu-14/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-15/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-15/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-15/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-15/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-15/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-15/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-15/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-15/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-16/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-16/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-16/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-16/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-16/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-16/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-16/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-16/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-17/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-17/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-17/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-17/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-17/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-17/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-17/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-17/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-18/cpu-idle: + value: 1.000009e+02 +w83df6300/cpu-18/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-18/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-18/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-18/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-18/cpu-system: + value: 1.000009e-01 +w83df6300/cpu-18/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-18/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-19/cpu-idle: + value: 9.990092e+01 +w83df6300/cpu-19/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-19/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-19/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-19/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-19/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-19/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-19/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-2/cpu-idle: + value: 1.000009e+02 +w83df6300/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-2/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-2/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-2/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-2/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-2/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-2/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-20/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-20/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-20/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-20/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-20/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-20/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-20/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-20/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-21/cpu-idle: + value: 1.000011e+02 +w83df6300/cpu-21/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-21/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-21/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-21/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-21/cpu-system: + value: 1.000011e-01 +w83df6300/cpu-21/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-21/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-22/cpu-idle: + value: 1.000012e+02 +w83df6300/cpu-22/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-22/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-22/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-22/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-22/cpu-system: + value: 1.000012e-01 +w83df6300/cpu-22/cpu-user: + value: 1.000012e-01 +w83df6300/cpu-22/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-23/cpu-idle: + value: 9.990117e+01 +w83df6300/cpu-23/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-23/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-23/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-23/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-23/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-23/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-23/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-3/cpu-idle: + value: 1.000009e+02 +w83df6300/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-3/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-3/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-3/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-3/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-3/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-3/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-4/cpu-idle: + value: 9.990089e+01 +w83df6300/cpu-4/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-4/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-4/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-4/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-4/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-4/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-4/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-5/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-5/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-5/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-5/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-5/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-5/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-5/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-5/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-6/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-6/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-6/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-6/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-6/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-6/cpu-system: + value: 1.000010e-01 +w83df6300/cpu-6/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-6/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-7/cpu-idle: + value: 1.000011e+02 +w83df6300/cpu-7/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-7/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-7/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-7/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-7/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-7/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-7/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-8/cpu-idle: + value: 9.990103e+01 +w83df6300/cpu-8/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-8/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-8/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-8/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-8/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-8/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-8/cpu-wait: + value: 0.000000e+00 +w83df6300/cpu-9/cpu-idle: + value: 1.000010e+02 +w83df6300/cpu-9/cpu-interrupt: + value: 0.000000e+00 +w83df6300/cpu-9/cpu-nice: + value: 0.000000e+00 +w83df6300/cpu-9/cpu-softirq: + value: 0.000000e+00 +w83df6300/cpu-9/cpu-steal: + value: 0.000000e+00 +w83df6300/cpu-9/cpu-system: + value: 0.000000e+00 +w83df6300/cpu-9/cpu-user: + value: 0.000000e+00 +w83df6300/cpu-9/cpu-wait: + value: 0.000000e+00 +w83df6300/df-boot/df_complex-free: + value: 4.369449e+08 +w83df6300/df-boot/df_complex-reserved: + value: 2.684109e+07 +w83df6300/df-boot/df_complex-used: + value: 6.463898e+07 +w83df6300/df-boot/df_inodes-free: + value: 3.271800e+04 +w83df6300/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-boot/df_inodes-used: + value: 5.000000e+01 +w83df6300/df-boot/percent_bytes-free: + value: 8.268816e+01 +w83df6300/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w83df6300/df-boot/percent_bytes-used: + value: 1.223238e+01 +w83df6300/df-boot/percent_inodes-free: + value: 9.984741e+01 +w83df6300/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-boot/percent_inodes-used: + value: 1.525879e-01 +w83df6300/df-data1/df_complex-free: + value: 2.574625e+11 +w83df6300/df-data1/df_complex-reserved: + value: 1.378982e+10 +w83df6300/df-data1/df_complex-used: + value: 2.165924e+08 +w83df6300/df-data1/df_inodes-free: + value: 1.683452e+07 +w83df6300/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-data1/df_inodes-used: + value: 4.400000e+01 +w83df6300/df-data1/percent_bytes-free: + value: 9.484051e+01 +w83df6300/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +w83df6300/df-data1/percent_bytes-used: + value: 7.978535e-02 +w83df6300/df-data1/percent_inodes-free: + value: 9.999974e+01 +w83df6300/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-data1/percent_inodes-used: + value: 2.613671e-04 +w83df6300/df-dev-shm/df_complex-free: + value: 3.375709e+10 +w83df6300/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w83df6300/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w83df6300/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +w83df6300/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w83df6300/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w83df6300/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w83df6300/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w83df6300/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +w83df6300/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +w83df6300/df-root/df_complex-free: + value: 1.022576e+10 +w83df6300/df-root/df_complex-reserved: + value: 6.442435e+08 +w83df6300/df-root/df_complex-used: + value: 1.812701e+09 +w83df6300/df-root/df_inodes-free: + value: 7.415980e+05 +w83df6300/df-root/df_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-root/df_inodes-used: + value: 4.483400e+04 +w83df6300/df-root/percent_bytes-free: + value: 8.062760e+01 +w83df6300/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w83df6300/df-root/percent_bytes-used: + value: 1.429270e+01 +w83df6300/df-root/percent_inodes-free: + value: 9.429906e+01 +w83df6300/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-root/percent_inodes-used: + value: 5.700938e+00 +w83df6300/df-var/df_complex-free: + value: 7.485731e+09 +w83df6300/df-var/df_complex-reserved: + value: 4.294943e+08 +w83df6300/df-var/df_complex-used: + value: 5.398938e+08 +w83df6300/df-var/df_inodes-free: + value: 5.224290e+05 +w83df6300/df-var/df_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-var/df_inodes-used: + value: 1.859000e+03 +w83df6300/df-var/percent_bytes-free: + value: 8.853490e+01 +w83df6300/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w83df6300/df-var/percent_bytes-used: + value: 6.385407e+00 +w83df6300/df-var/percent_inodes-free: + value: 9.964542e+01 +w83df6300/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w83df6300/df-var/percent_inodes-used: + value: 3.545761e-01 +w83df6300/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6300/load/load: + longterm: 0.000000e+00 + midterm: 2.000000e-02 + shortterm: 1.000000e-02 +w83df6300/memory/memory-buffered: + value: 2.686280e+08 +w83df6300/memory/memory-cached: + value: 1.142759e+09 +w83df6300/memory/memory-free: + value: 6.452790e+10 +w83df6300/memory/memory-used: + value: 1.574883e+09 +w83df6300/network/if_octets: + rx: 0.000000e+00 + tx: 1.575799e+03 +w83df6300/network/if_packets: + rx: 0.000000e+00 + tx: 1.199999e+00 +w83df6300/network/queue_length: + value: 0.000000e+00 +w83df6300/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w83df6300/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w83df6300/network/total_values-send-accepted: + value: 3.240001e+01 +w83df6300/network/total_values-send-rejected: + value: 0.000000e+00 +w83df6300/swap/swap-cached: + value: 0.000000e+00 +w83df6300/swap/swap-free: + value: 2.147475e+09 +w83df6300/swap/swap-used: + value: 0.000000e+00 +w83df6300/swap/swap_io-in: + value: 0.000000e+00 +w83df6300/swap/swap_io-out: + value: 0.000000e+00 +w83df6300/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 3.800015e+00 +w83df6300/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6300/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6300/vmem/vmpage_number-active_anon: + value: 1.835300e+04 +w83df6300/vmem/vmpage_number-active_file: + value: 1.867190e+05 +w83df6300/vmem/vmpage_number-anon_pages: + value: 1.272000e+04 +w83df6300/vmem/vmpage_number-anon_transparent_hugepages: + value: 1.100000e+01 +w83df6300/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-dirty: + value: 4.000000e+00 +w83df6300/vmem/vmpage_number-file_pages: + value: 3.445770e+05 +w83df6300/vmem/vmpage_number-free_pages: + value: 1.575388e+07 +w83df6300/vmem/vmpage_number-inactive_anon: + value: 4.900000e+01 +w83df6300/vmem/vmpage_number-inactive_file: + value: 1.578110e+05 +w83df6300/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-kernel_stack: + value: 4.460000e+02 +w83df6300/vmem/vmpage_number-mapped: + value: 2.404000e+03 +w83df6300/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-page_table_pages: + value: 8.250000e+02 +w83df6300/vmem/vmpage_number-shmem: + value: 5.100000e+01 +w83df6300/vmem/vmpage_number-slab_reclaimable: + value: 2.469330e+05 +w83df6300/vmem/vmpage_number-slab_unreclaimable: + value: 1.504900e+04 +w83df6300/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w83df6300/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w83df6400/cpu-0/cpu-idle: + value: 9.979917e+01 +w83df6400/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-0/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-0/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-0/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-0/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-0/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-0/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-1/cpu-idle: + value: 9.989810e+01 +w83df6400/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-1/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-1/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-1/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-1/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-1/cpu-user: + value: 9.999843e-02 +w83df6400/cpu-1/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-10/cpu-idle: + value: 9.999853e+01 +w83df6400/cpu-10/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-10/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-10/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-10/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-10/cpu-system: + value: 9.999853e-02 +w83df6400/cpu-10/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-10/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-11/cpu-idle: + value: 9.989854e+01 +w83df6400/cpu-11/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-11/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-11/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-11/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-11/cpu-system: + value: 9.999853e-02 +w83df6400/cpu-11/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-11/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-12/cpu-idle: + value: 9.989849e+01 +w83df6400/cpu-12/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-12/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-12/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-12/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-12/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-12/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-12/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-13/cpu-idle: + value: 9.989843e+01 +w83df6400/cpu-13/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-13/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-13/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-13/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-13/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-13/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-13/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-14/cpu-idle: + value: 9.999838e+01 +w83df6400/cpu-14/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-14/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-14/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-14/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-14/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-14/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-14/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-15/cpu-idle: + value: 9.989833e+01 +w83df6400/cpu-15/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-15/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-15/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-15/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-15/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-15/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-15/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-16/cpu-idle: + value: 9.999832e+01 +w83df6400/cpu-16/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-16/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-16/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-16/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-16/cpu-system: + value: 9.999834e-02 +w83df6400/cpu-16/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-16/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-17/cpu-idle: + value: 9.989833e+01 +w83df6400/cpu-17/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-17/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-17/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-17/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-17/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-17/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-17/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-18/cpu-idle: + value: 9.999827e+01 +w83df6400/cpu-18/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-18/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-18/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-18/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-18/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-18/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-18/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-19/cpu-idle: + value: 9.999815e+01 +w83df6400/cpu-19/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-19/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-19/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-19/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-19/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-19/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-19/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-2/cpu-idle: + value: 9.979807e+01 +w83df6400/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-2/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-2/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-2/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-2/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-2/cpu-user: + value: 9.999811e-02 +w83df6400/cpu-2/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-20/cpu-idle: + value: 9.999811e+01 +w83df6400/cpu-20/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-20/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-20/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-20/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-20/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-20/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-20/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-21/cpu-idle: + value: 9.999773e+01 +w83df6400/cpu-21/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-21/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-21/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-21/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-21/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-21/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-21/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-22/cpu-idle: + value: 9.999773e+01 +w83df6400/cpu-22/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-22/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-22/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-22/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-22/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-22/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-22/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-23/cpu-idle: + value: 9.989763e+01 +w83df6400/cpu-23/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-23/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-23/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-23/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-23/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-23/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-23/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-3/cpu-idle: + value: 9.999817e+01 +w83df6400/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-3/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-3/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-3/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-3/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-3/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-3/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-4/cpu-idle: + value: 9.989839e+01 +w83df6400/cpu-4/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-4/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-4/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-4/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-4/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-4/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-4/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-5/cpu-idle: + value: 9.999820e+01 +w83df6400/cpu-5/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-5/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-5/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-5/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-5/cpu-system: + value: 9.999815e-02 +w83df6400/cpu-5/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-5/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-6/cpu-idle: + value: 9.989865e+01 +w83df6400/cpu-6/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-6/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-6/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-6/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-6/cpu-system: + value: 0.000000e+00 +w83df6400/cpu-6/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-6/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-7/cpu-idle: + value: 9.999866e+01 +w83df6400/cpu-7/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-7/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-7/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-7/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-7/cpu-system: + value: 9.999866e-02 +w83df6400/cpu-7/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-7/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-8/cpu-idle: + value: 9.999857e+01 +w83df6400/cpu-8/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-8/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-8/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-8/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-8/cpu-system: + value: 9.999860e-02 +w83df6400/cpu-8/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-8/cpu-wait: + value: 0.000000e+00 +w83df6400/cpu-9/cpu-idle: + value: 9.989853e+01 +w83df6400/cpu-9/cpu-interrupt: + value: 0.000000e+00 +w83df6400/cpu-9/cpu-nice: + value: 0.000000e+00 +w83df6400/cpu-9/cpu-softirq: + value: 0.000000e+00 +w83df6400/cpu-9/cpu-steal: + value: 0.000000e+00 +w83df6400/cpu-9/cpu-system: + value: 9.999854e-02 +w83df6400/cpu-9/cpu-user: + value: 0.000000e+00 +w83df6400/cpu-9/cpu-wait: + value: 0.000000e+00 +w83df6400/df-boot/df_complex-free: + value: 4.369449e+08 +w83df6400/df-boot/df_complex-reserved: + value: 2.684109e+07 +w83df6400/df-boot/df_complex-used: + value: 6.463898e+07 +w83df6400/df-boot/df_inodes-free: + value: 3.271800e+04 +w83df6400/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-boot/df_inodes-used: + value: 5.000000e+01 +w83df6400/df-boot/percent_bytes-free: + value: 8.268816e+01 +w83df6400/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w83df6400/df-boot/percent_bytes-used: + value: 1.223238e+01 +w83df6400/df-boot/percent_inodes-free: + value: 9.984741e+01 +w83df6400/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-boot/percent_inodes-used: + value: 1.525879e-01 +w83df6400/df-data1/df_complex-free: + value: 2.574625e+11 +w83df6400/df-data1/df_complex-reserved: + value: 1.378982e+10 +w83df6400/df-data1/df_complex-used: + value: 2.165924e+08 +w83df6400/df-data1/df_inodes-free: + value: 1.683452e+07 +w83df6400/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-data1/df_inodes-used: + value: 4.400000e+01 +w83df6400/df-data1/percent_bytes-free: + value: 9.484051e+01 +w83df6400/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +w83df6400/df-data1/percent_bytes-used: + value: 7.978535e-02 +w83df6400/df-data1/percent_inodes-free: + value: 9.999974e+01 +w83df6400/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-data1/percent_inodes-used: + value: 2.613671e-04 +w83df6400/df-dev-shm/df_complex-free: + value: 3.375709e+10 +w83df6400/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w83df6400/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w83df6400/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +w83df6400/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w83df6400/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w83df6400/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w83df6400/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w83df6400/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +w83df6400/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +w83df6400/df-root/df_complex-free: + value: 1.062062e+10 +w83df6400/df-root/df_complex-reserved: + value: 6.442435e+08 +w83df6400/df-root/df_complex-used: + value: 1.417847e+09 +w83df6400/df-root/df_inodes-free: + value: 7.449690e+05 +w83df6400/df-root/df_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-root/df_inodes-used: + value: 4.146300e+04 +w83df6400/df-root/percent_bytes-free: + value: 8.374093e+01 +w83df6400/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w83df6400/df-root/percent_bytes-used: + value: 1.117937e+01 +w83df6400/df-root/percent_inodes-free: + value: 9.472771e+01 +w83df6400/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-root/percent_inodes-used: + value: 5.272293e+00 +w83df6400/df-var/df_complex-free: + value: 7.567413e+09 +w83df6400/df-var/df_complex-reserved: + value: 4.294943e+08 +w83df6400/df-var/df_complex-used: + value: 4.582113e+08 +w83df6400/df-var/df_inodes-free: + value: 5.227820e+05 +w83df6400/df-var/df_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-var/df_inodes-used: + value: 1.506000e+03 +w83df6400/df-var/percent_bytes-free: + value: 8.950097e+01 +w83df6400/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w83df6400/df-var/percent_bytes-used: + value: 5.419336e+00 +w83df6400/df-var/percent_inodes-free: + value: 9.971275e+01 +w83df6400/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w83df6400/df-var/percent_inodes-used: + value: 2.872467e-01 +w83df6400/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6400/load/load: + longterm: 0.000000e+00 + midterm: 2.000000e-02 + shortterm: 3.000000e-02 +w83df6400/memory/memory-buffered: + value: 2.072453e+08 +w83df6400/memory/memory-cached: + value: 6.651863e+08 +w83df6400/memory/memory-free: + value: 6.511982e+10 +w83df6400/memory/memory-used: + value: 1.521922e+09 +w83df6400/network/if_octets: + rx: 0.000000e+00 + tx: 1.849000e+03 +w83df6400/network/if_packets: + rx: 0.000000e+00 + tx: 1.400000e+00 +w83df6400/network/queue_length: + value: 0.000000e+00 +w83df6400/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w83df6400/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w83df6400/network/total_values-send-accepted: + value: 3.370000e+01 +w83df6400/network/total_values-send-rejected: + value: 0.000000e+00 +w83df6400/swap/swap-cached: + value: 0.000000e+00 +w83df6400/swap/swap-free: + value: 2.147475e+09 +w83df6400/swap/swap-used: + value: 0.000000e+00 +w83df6400/swap/swap_io-in: + value: 0.000000e+00 +w83df6400/swap/swap_io-out: + value: 0.000000e+00 +w83df6400/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 4.700028e+00 +w83df6400/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6400/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6400/vmem/vmpage_number-active_anon: + value: 1.704400e+04 +w83df6400/vmem/vmpage_number-active_file: + value: 1.158240e+05 +w83df6400/vmem/vmpage_number-anon_pages: + value: 1.090600e+04 +w83df6400/vmem/vmpage_number-anon_transparent_hugepages: + value: 1.200000e+01 +w83df6400/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-dirty: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-file_pages: + value: 2.129960e+05 +w83df6400/vmem/vmpage_number-free_pages: + value: 1.589839e+07 +w83df6400/vmem/vmpage_number-inactive_anon: + value: 4.400000e+01 +w83df6400/vmem/vmpage_number-inactive_file: + value: 9.713000e+04 +w83df6400/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-kernel_stack: + value: 4.350000e+02 +w83df6400/vmem/vmpage_number-mapped: + value: 1.621000e+03 +w83df6400/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-page_table_pages: + value: 4.680000e+02 +w83df6400/vmem/vmpage_number-shmem: + value: 4.600000e+01 +w83df6400/vmem/vmpage_number-slab_reclaimable: + value: 2.361780e+05 +w83df6400/vmem/vmpage_number-slab_unreclaimable: + value: 1.468100e+04 +w83df6400/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w83df6400/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w83df6500/cpu-0/cpu-idle: + value: 8.689957e+01 +w83df6500/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-0/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-0/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-0/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-0/cpu-system: + value: 2.299989e+00 +w83df6500/cpu-0/cpu-user: + value: 1.059998e+01 +w83df6500/cpu-0/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-1/cpu-idle: + value: 9.869419e+01 +w83df6500/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-1/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-1/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-1/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-1/cpu-system: + value: 3.999803e-01 +w83df6500/cpu-1/cpu-user: + value: 6.999674e-01 +w83df6500/cpu-1/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-10/cpu-idle: + value: 9.999000e+01 +w83df6500/cpu-10/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-10/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-10/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-10/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-10/cpu-system: + value: 9.999001e-02 +w83df6500/cpu-10/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-10/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-11/cpu-idle: + value: 9.988985e+01 +w83df6500/cpu-11/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-11/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-11/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-11/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-11/cpu-system: + value: 9.998982e-02 +w83df6500/cpu-11/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-11/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-12/cpu-idle: + value: 9.988970e+01 +w83df6500/cpu-12/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-12/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-12/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-12/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-12/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-12/cpu-user: + value: 9.998982e-02 +w83df6500/cpu-12/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-13/cpu-idle: + value: 9.239045e+01 +w83df6500/cpu-13/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-13/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-13/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-13/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-13/cpu-system: + value: 2.999690e+00 +w83df6500/cpu-13/cpu-user: + value: 4.399545e+00 +w83df6500/cpu-13/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-14/cpu-idle: + value: 9.639002e+01 +w83df6500/cpu-14/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-14/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-14/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-14/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-14/cpu-system: + value: 2.999689e-01 +w83df6500/cpu-14/cpu-user: + value: 3.299658e+00 +w83df6500/cpu-14/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-15/cpu-idle: + value: 9.998962e+01 +w83df6500/cpu-15/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-15/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-15/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-15/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-15/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-15/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-15/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-16/cpu-idle: + value: 9.998964e+01 +w83df6500/cpu-16/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-16/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-16/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-16/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-16/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-16/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-16/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-17/cpu-idle: + value: 9.998943e+01 +w83df6500/cpu-17/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-17/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-17/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-17/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-17/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-17/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-17/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-18/cpu-idle: + value: 9.978947e+01 +w83df6500/cpu-18/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-18/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-18/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-18/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-18/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-18/cpu-user: + value: 9.998947e-02 +w83df6500/cpu-18/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-19/cpu-idle: + value: 9.149020e+01 +w83df6500/cpu-19/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-19/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-19/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-19/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-19/cpu-system: + value: 3.299646e+00 +w83df6500/cpu-19/cpu-user: + value: 5.099453e+00 +w83df6500/cpu-19/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-2/cpu-idle: + value: 9.999229e+01 +w83df6500/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-2/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-2/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-2/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-2/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-2/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-2/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-20/cpu-idle: + value: 9.988926e+01 +w83df6500/cpu-20/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-20/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-20/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-20/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-20/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-20/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-20/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-21/cpu-idle: + value: 9.888932e+01 +w83df6500/cpu-21/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-21/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-21/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-21/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-21/cpu-system: + value: 9.998920e-02 +w83df6500/cpu-21/cpu-user: + value: 7.999136e-01 +w83df6500/cpu-21/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-22/cpu-idle: + value: 9.998916e+01 +w83df6500/cpu-22/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-22/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-22/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-22/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-22/cpu-system: + value: 9.998916e-02 +w83df6500/cpu-22/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-22/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-23/cpu-idle: + value: 9.988925e+01 +w83df6500/cpu-23/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-23/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-23/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-23/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-23/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-23/cpu-user: + value: 9.998923e-02 +w83df6500/cpu-23/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-3/cpu-idle: + value: 9.989136e+01 +w83df6500/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-3/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-3/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-3/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-3/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-3/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-3/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-4/cpu-idle: + value: 9.989094e+01 +w83df6500/cpu-4/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-4/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-4/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-4/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-4/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-4/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-4/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-5/cpu-idle: + value: 9.999060e+01 +w83df6500/cpu-5/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-5/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-5/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-5/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-5/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-5/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-5/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-6/cpu-idle: + value: 9.959022e+01 +w83df6500/cpu-6/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-6/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-6/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-6/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-6/cpu-system: + value: 9.999033e-02 +w83df6500/cpu-6/cpu-user: + value: 2.999711e-01 +w83df6500/cpu-6/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-7/cpu-idle: + value: 9.809048e+01 +w83df6500/cpu-7/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-7/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-7/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-7/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-7/cpu-system: + value: 4.999515e-01 +w83df6500/cpu-7/cpu-user: + value: 1.299874e+00 +w83df6500/cpu-7/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-8/cpu-idle: + value: 9.999017e+01 +w83df6500/cpu-8/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-8/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-8/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-8/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-8/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-8/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-8/cpu-wait: + value: 0.000000e+00 +w83df6500/cpu-9/cpu-idle: + value: 9.989011e+01 +w83df6500/cpu-9/cpu-interrupt: + value: 0.000000e+00 +w83df6500/cpu-9/cpu-nice: + value: 0.000000e+00 +w83df6500/cpu-9/cpu-softirq: + value: 0.000000e+00 +w83df6500/cpu-9/cpu-steal: + value: 0.000000e+00 +w83df6500/cpu-9/cpu-system: + value: 0.000000e+00 +w83df6500/cpu-9/cpu-user: + value: 0.000000e+00 +w83df6500/cpu-9/cpu-wait: + value: 0.000000e+00 +w83df6500/df-boot/df_complex-free: + value: 4.793876e+08 +w83df6500/df-boot/df_complex-reserved: + value: 2.684109e+07 +w83df6500/df-boot/df_complex-used: + value: 2.219622e+07 +w83df6500/df-boot/df_inodes-free: + value: 3.273000e+04 +w83df6500/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-boot/df_inodes-used: + value: 3.800000e+01 +w83df6500/df-boot/percent_bytes-free: + value: 9.072010e+01 +w83df6500/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w83df6500/df-boot/percent_bytes-used: + value: 4.200449e+00 +w83df6500/df-boot/percent_inodes-free: + value: 9.988403e+01 +w83df6500/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-boot/percent_inodes-used: + value: 1.159668e-01 +w83df6500/df-data1/df_complex-free: + value: 2.574625e+11 +w83df6500/df-data1/df_complex-reserved: + value: 1.378982e+10 +w83df6500/df-data1/df_complex-used: + value: 2.165883e+08 +w83df6500/df-data1/df_inodes-free: + value: 1.683452e+07 +w83df6500/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-data1/df_inodes-used: + value: 4.300000e+01 +w83df6500/df-data1/percent_bytes-free: + value: 9.484052e+01 +w83df6500/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +w83df6500/df-data1/percent_bytes-used: + value: 7.978383e-02 +w83df6500/df-data1/percent_inodes-free: + value: 9.999974e+01 +w83df6500/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-data1/percent_inodes-used: + value: 2.554269e-04 +w83df6500/df-dev-shm/df_complex-free: + value: 3.375709e+10 +w83df6500/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w83df6500/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w83df6500/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +w83df6500/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w83df6500/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w83df6500/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w83df6500/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w83df6500/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +w83df6500/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +w83df6500/df-root/df_complex-free: + value: 1.055831e+10 +w83df6500/df-root/df_complex-reserved: + value: 6.442435e+08 +w83df6500/df-root/df_complex-used: + value: 1.480151e+09 +w83df6500/df-root/df_inodes-free: + value: 7.465750e+05 +w83df6500/df-root/df_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-root/df_inodes-used: + value: 3.985700e+04 +w83df6500/df-root/percent_bytes-free: + value: 8.324968e+01 +w83df6500/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w83df6500/df-root/percent_bytes-used: + value: 1.167062e+01 +w83df6500/df-root/percent_inodes-free: + value: 9.493192e+01 +w83df6500/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-root/percent_inodes-used: + value: 5.068080e+00 +w83df6500/df-var/df_complex-free: + value: 7.641543e+09 +w83df6500/df-var/df_complex-reserved: + value: 4.294943e+08 +w83df6500/df-var/df_complex-used: + value: 3.840819e+08 +w83df6500/df-var/df_inodes-free: + value: 5.228880e+05 +w83df6500/df-var/df_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-var/df_inodes-used: + value: 1.400000e+03 +w83df6500/df-var/percent_bytes-free: + value: 9.037771e+01 +w83df6500/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w83df6500/df-var/percent_bytes-used: + value: 4.542596e+00 +w83df6500/df-var/percent_inodes-free: + value: 9.973297e+01 +w83df6500/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w83df6500/df-var/percent_inodes-used: + value: 2.670288e-01 +w83df6500/disk-sda/disk_merged: + read: 0.000000e+00 + write: 7.199968e+00 +w83df6500/disk-sda/disk_octets: + read: 0.000000e+00 + write: 3.850286e+04 +w83df6500/disk-sda/disk_ops: + read: 0.000000e+00 + write: 2.200014e+00 +w83df6500/disk-sda/disk_time: + read: 0.000000e+00 + write: 4.000026e-01 +w83df6500/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 2.299968e+00 +w83df6500/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 1.146866e+04 +w83df6500/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 4.999937e-01 +w83df6500/disk-sda2/disk_time: + read: 0.000000e+00 + write: 1.999972e-01 +w83df6500/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 4.899926e+00 +w83df6500/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 2.703321e+04 +w83df6500/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 1.699975e+00 +w83df6500/disk-sda3/disk_time: + read: 0.000000e+00 + write: 4.999926e-01 +w83df6500/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6500/load/load: + longterm: 2.000000e-02 + midterm: 9.000000e-02 + shortterm: 1.600000e-01 +w83df6500/memory/memory-buffered: + value: 4.858675e+07 +w83df6500/memory/memory-cached: + value: 7.746028e+08 +w83df6500/memory/memory-free: + value: 6.579641e+10 +w83df6500/memory/memory-used: + value: 8.945746e+08 +w83df6500/network/if_octets: + rx: 0.000000e+00 + tx: 1.591300e+03 +w83df6500/network/if_packets: + rx: 0.000000e+00 + tx: 1.199999e+00 +w83df6500/network/queue_length: + value: 0.000000e+00 +w83df6500/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w83df6500/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w83df6500/network/total_values-send-accepted: + value: 3.239995e+01 +w83df6500/network/total_values-send-rejected: + value: 0.000000e+00 +w83df6500/swap/swap-cached: + value: 0.000000e+00 +w83df6500/swap/swap-free: + value: 2.147475e+09 +w83df6500/swap/swap-used: + value: 0.000000e+00 +w83df6500/swap/swap_io-in: + value: 0.000000e+00 +w83df6500/swap/swap_io-out: + value: 0.000000e+00 +w83df6500/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 1.747727e+04 +w83df6500/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 3.759999e+01 +w83df6500/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6500/vmem/vmpage_number-active_anon: + value: 7.795900e+04 +w83df6500/vmem/vmpage_number-active_file: + value: 8.036800e+04 +w83df6500/vmem/vmpage_number-anon_pages: + value: 2.727800e+04 +w83df6500/vmem/vmpage_number-anon_transparent_hugepages: + value: 1.000000e+02 +w83df6500/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-dirty: + value: 3.920000e+02 +w83df6500/vmem/vmpage_number-file_pages: + value: 2.009740e+05 +w83df6500/vmem/vmpage_number-free_pages: + value: 1.606358e+07 +w83df6500/vmem/vmpage_number-inactive_anon: + value: 4.600000e+01 +w83df6500/vmem/vmpage_number-inactive_file: + value: 1.205540e+05 +w83df6500/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-kernel_stack: + value: 5.970000e+02 +w83df6500/vmem/vmpage_number-mapped: + value: 6.373000e+03 +w83df6500/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-page_table_pages: + value: 1.091000e+03 +w83df6500/vmem/vmpage_number-shmem: + value: 4.800000e+01 +w83df6500/vmem/vmpage_number-slab_reclaimable: + value: 1.991400e+04 +w83df6500/vmem/vmpage_number-slab_unreclaimable: + value: 1.512500e+04 +w83df6500/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w83df6500/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 +w83df6600/cpu-0/cpu-idle: + value: 9.980063e+01 +w83df6600/cpu-0/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-0/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-0/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-0/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-0/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-0/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-0/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-1/cpu-idle: + value: 9.990608e+01 +w83df6600/cpu-1/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-1/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-1/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-1/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-1/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-1/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-1/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-10/cpu-idle: + value: 9.991430e+01 +w83df6600/cpu-10/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-10/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-10/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-10/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-10/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-10/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-10/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-11/cpu-idle: + value: 1.000143e+02 +w83df6600/cpu-11/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-11/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-11/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-11/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-11/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-11/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-11/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-12/cpu-idle: + value: 1.000143e+02 +w83df6600/cpu-12/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-12/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-12/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-12/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-12/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-12/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-12/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-13/cpu-idle: + value: 9.991410e+01 +w83df6600/cpu-13/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-13/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-13/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-13/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-13/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-13/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-13/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-14/cpu-idle: + value: 1.000141e+02 +w83df6600/cpu-14/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-14/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-14/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-14/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-14/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-14/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-14/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-15/cpu-idle: + value: 9.998509e+01 +w83df6600/cpu-15/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-15/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-15/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-15/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-15/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-15/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-15/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-16/cpu-idle: + value: 9.998503e+01 +w83df6600/cpu-16/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-16/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-16/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-16/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-16/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-16/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-16/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-17/cpu-idle: + value: 9.988509e+01 +w83df6600/cpu-17/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-17/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-17/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-17/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-17/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-17/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-17/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-18/cpu-idle: + value: 9.988507e+01 +w83df6600/cpu-18/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-18/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-18/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-18/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-18/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-18/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-18/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-19/cpu-idle: + value: 9.978521e+01 +w83df6600/cpu-19/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-19/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-19/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-19/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-19/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-19/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-19/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-2/cpu-idle: + value: 9.999391e+01 +w83df6600/cpu-2/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-2/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-2/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-2/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-2/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-2/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-2/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-20/cpu-idle: + value: 1.000140e+02 +w83df6600/cpu-20/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-20/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-20/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-20/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-20/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-20/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-20/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-21/cpu-idle: + value: 1.000139e+02 +w83df6600/cpu-21/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-21/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-21/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-21/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-21/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-21/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-21/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-22/cpu-idle: + value: 1.000138e+02 +w83df6600/cpu-22/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-22/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-22/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-22/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-22/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-22/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-22/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-23/cpu-idle: + value: 1.000137e+02 +w83df6600/cpu-23/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-23/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-23/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-23/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-23/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-23/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-23/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-3/cpu-idle: + value: 9.989001e+01 +w83df6600/cpu-3/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-3/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-3/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-3/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-3/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-3/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-3/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-4/cpu-idle: + value: 9.998791e+01 +w83df6600/cpu-4/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-4/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-4/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-4/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-4/cpu-system: + value: 9.998773e-02 +w83df6600/cpu-4/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-4/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-5/cpu-idle: + value: 9.988613e+01 +w83df6600/cpu-5/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-5/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-5/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-5/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-5/cpu-system: + value: 9.998665e-02 +w83df6600/cpu-5/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-5/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-6/cpu-idle: + value: 9.988577e+01 +w83df6600/cpu-6/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-6/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-6/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-6/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-6/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-6/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-6/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-7/cpu-idle: + value: 9.988529e+01 +w83df6600/cpu-7/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-7/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-7/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-7/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-7/cpu-system: + value: 3.999412e-01 +w83df6600/cpu-7/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-7/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-8/cpu-idle: + value: 9.998504e+01 +w83df6600/cpu-8/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-8/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-8/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-8/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-8/cpu-system: + value: 0.000000e+00 +w83df6600/cpu-8/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-8/cpu-wait: + value: 0.000000e+00 +w83df6600/cpu-9/cpu-idle: + value: 9.988501e+01 +w83df6600/cpu-9/cpu-interrupt: + value: 0.000000e+00 +w83df6600/cpu-9/cpu-nice: + value: 0.000000e+00 +w83df6600/cpu-9/cpu-softirq: + value: 0.000000e+00 +w83df6600/cpu-9/cpu-steal: + value: 0.000000e+00 +w83df6600/cpu-9/cpu-system: + value: 9.998501e-02 +w83df6600/cpu-9/cpu-user: + value: 0.000000e+00 +w83df6600/cpu-9/cpu-wait: + value: 0.000000e+00 +w83df6600/df-boot/df_complex-free: + value: 4.793631e+08 +w83df6600/df-boot/df_complex-reserved: + value: 2.684109e+07 +w83df6600/df-boot/df_complex-used: + value: 2.222080e+07 +w83df6600/df-boot/df_inodes-free: + value: 3.273000e+04 +w83df6600/df-boot/df_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-boot/df_inodes-used: + value: 3.800000e+01 +w83df6600/df-boot/percent_bytes-free: + value: 9.071545e+01 +w83df6600/df-boot/percent_bytes-reserved: + value: 5.079451e+00 +w83df6600/df-boot/percent_bytes-used: + value: 4.205100e+00 +w83df6600/df-boot/percent_inodes-free: + value: 9.988403e+01 +w83df6600/df-boot/percent_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-boot/percent_inodes-used: + value: 1.159668e-01 +w83df6600/df-data1/df_complex-free: + value: 2.574625e+11 +w83df6600/df-data1/df_complex-reserved: + value: 1.378982e+10 +w83df6600/df-data1/df_complex-used: + value: 2.165883e+08 +w83df6600/df-data1/df_inodes-free: + value: 1.683452e+07 +w83df6600/df-data1/df_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-data1/df_inodes-used: + value: 4.300000e+01 +w83df6600/df-data1/percent_bytes-free: + value: 9.484052e+01 +w83df6600/df-data1/percent_bytes-reserved: + value: 5.079707e+00 +w83df6600/df-data1/percent_bytes-used: + value: 7.978383e-02 +w83df6600/df-data1/percent_inodes-free: + value: 9.999974e+01 +w83df6600/df-data1/percent_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-data1/percent_inodes-used: + value: 2.554269e-04 +w83df6600/df-dev-shm/df_complex-free: + value: 3.375709e+10 +w83df6600/df-dev-shm/df_complex-reserved: + value: 0.000000e+00 +w83df6600/df-dev-shm/df_complex-used: + value: 0.000000e+00 +w83df6600/df-dev-shm/df_inodes-free: + value: 8.241475e+06 +w83df6600/df-dev-shm/df_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-dev-shm/df_inodes-used: + value: 1.000000e+00 +w83df6600/df-dev-shm/percent_bytes-free: + value: 1.000000e+02 +w83df6600/df-dev-shm/percent_bytes-reserved: + value: 0.000000e+00 +w83df6600/df-dev-shm/percent_bytes-used: + value: 0.000000e+00 +w83df6600/df-dev-shm/percent_inodes-free: + value: 9.999998e+01 +w83df6600/df-dev-shm/percent_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-dev-shm/percent_inodes-used: + value: 1.213375e-05 +w83df6600/df-root/df_complex-free: + value: 1.055849e+10 +w83df6600/df-root/df_complex-reserved: + value: 6.442435e+08 +w83df6600/df-root/df_complex-used: + value: 1.479975e+09 +w83df6600/df-root/df_inodes-free: + value: 7.466050e+05 +w83df6600/df-root/df_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-root/df_inodes-used: + value: 3.982700e+04 +w83df6600/df-root/percent_bytes-free: + value: 8.325107e+01 +w83df6600/df-root/percent_bytes-reserved: + value: 5.079700e+00 +w83df6600/df-root/percent_bytes-used: + value: 1.166924e+01 +w83df6600/df-root/percent_inodes-free: + value: 9.493573e+01 +w83df6600/df-root/percent_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-root/percent_inodes-used: + value: 5.064265e+00 +w83df6600/df-var/df_complex-free: + value: 7.642092e+09 +w83df6600/df-var/df_complex-reserved: + value: 4.294943e+08 +w83df6600/df-var/df_complex-used: + value: 3.835331e+08 +w83df6600/df-var/df_inodes-free: + value: 5.229150e+05 +w83df6600/df-var/df_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-var/df_inodes-used: + value: 1.373000e+03 +w83df6600/df-var/percent_bytes-free: + value: 9.038420e+01 +w83df6600/df-var/percent_bytes-reserved: + value: 5.079695e+00 +w83df6600/df-var/percent_bytes-used: + value: 4.536105e+00 +w83df6600/df-var/percent_inodes-free: + value: 9.973812e+01 +w83df6600/df-var/percent_inodes-reserved: + value: 0.000000e+00 +w83df6600/df-var/percent_inodes-used: + value: 2.618790e-01 +w83df6600/disk-sda/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda1/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda1/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda1/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda1/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda2/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda2/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda2/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda2/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda3/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda3/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda3/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda3/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda4/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda4/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda4/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda4/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda5/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda5/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda5/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda5/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda6/disk_merged: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda6/disk_octets: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda6/disk_ops: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/disk-sda6/disk_time: + read: 0.000000e+00 + write: 0.000000e+00 +w83df6600/load/load: + longterm: 0.000000e+00 + midterm: 0.000000e+00 + shortterm: 0.000000e+00 +w83df6600/memory/memory-buffered: + value: 4.378624e+07 +w83df6600/memory/memory-cached: + value: 7.730299e+08 +w83df6600/memory/memory-free: + value: 6.607691e+10 +w83df6600/memory/memory-used: + value: 6.204498e+08 +w83df6600/network/if_octets: + rx: 0.000000e+00 + tx: 1.043100e+03 +w83df6600/network/if_packets: + rx: 0.000000e+00 + tx: 7.999960e-01 +w83df6600/network/queue_length: + value: 0.000000e+00 +w83df6600/network/total_values-dispatch-accepted: + value: 0.000000e+00 +w83df6600/network/total_values-dispatch-rejected: + value: 0.000000e+00 +w83df6600/network/total_values-send-accepted: + value: 2.019973e+01 +w83df6600/network/total_values-send-rejected: + value: 0.000000e+00 +w83df6600/swap/swap-cached: + value: 0.000000e+00 +w83df6600/swap/swap-free: + value: 2.147475e+09 +w83df6600/swap/swap-used: + value: 0.000000e+00 +w83df6600/swap/swap_io-in: + value: 0.000000e+00 +w83df6600/swap/swap_io-out: + value: 0.000000e+00 +w83df6600/vmem/vmpage_faults: + majflt: 0.000000e+00 + minflt: 8.999036e-01 +w83df6600/vmem/vmpage_io-memory: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6600/vmem/vmpage_io-swap: + in: 0.000000e+00 + out: 0.000000e+00 +w83df6600/vmem/vmpage_number-active_anon: + value: 1.469200e+04 +w83df6600/vmem/vmpage_number-active_file: + value: 6.927600e+04 +w83df6600/vmem/vmpage_number-anon_pages: + value: 1.110500e+04 +w83df6600/vmem/vmpage_number-anon_transparent_hugepages: + value: 7.000000e+00 +w83df6600/vmem/vmpage_number-boudfe: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-dirty: + value: 9.000000e+00 +w83df6600/vmem/vmpage_number-file_pages: + value: 1.994180e+05 +w83df6600/vmem/vmpage_number-free_pages: + value: 1.613205e+07 +w83df6600/vmem/vmpage_number-inactive_anon: + value: 4.300000e+01 +w83df6600/vmem/vmpage_number-inactive_file: + value: 1.300980e+05 +w83df6600/vmem/vmpage_number-isolated_anon: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-isolated_file: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-kernel_stack: + value: 4.330000e+02 +w83df6600/vmem/vmpage_number-mapped: + value: 1.253000e+03 +w83df6600/vmem/vmpage_number-mlock: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-page_table_pages: + value: 4.520000e+02 +w83df6600/vmem/vmpage_number-shmem: + value: 4.600000e+01 +w83df6600/vmem/vmpage_number-slab_reclaimable: + value: 1.905300e+04 +w83df6600/vmem/vmpage_number-slab_unreclaimable: + value: 1.455200e+04 +w83df6600/vmem/vmpage_number-unevictable: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-unstable: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-vmscan_write: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-writeback: + value: 0.000000e+00 +w83df6600/vmem/vmpage_number-writeback_temp: + value: 0.000000e+00 diff --git a/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm b/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm index 4c7c3fe40f..66359da12f 100644 --- a/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm +++ b/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm @@ -110,9 +110,9 @@ sub cpu_read { $v{'type_instance'} = $cpu_instances[$key]; $v{'values'} = [ $counters[$key] ]; plugin_dispatch_values(\%v); + } } } -} sub df_read { my $veid = shift; @@ -137,7 +137,7 @@ sub df_read { $v{'type_instance'} = $val; $v{'values'} = [ $parts[5] * ($parts[6] - $parts[7]), $parts[5] * $parts[7] ]; plugin_dispatch_values(\%v); -} + } } sub load_read { @@ -180,7 +180,7 @@ sub processes_read { $v{'type_instance'} = $key; $v{'values'} = [ $ps_states->{$key} ]; plugin_dispatch_values(\%v); -} + } } sub users_read { diff --git a/bindings/perl/lib/Collectd/Unixsock.pm b/bindings/perl/lib/Collectd/Unixsock.pm index 2b3d8f5e55..28dbd57e6a 100644 --- a/bindings/perl/lib/Collectd/Unixsock.pm +++ b/bindings/perl/lib/Collectd/Unixsock.pm @@ -33,7 +33,7 @@ collectd's unixsock plugin. =head1 SYNOPSIS - use Collectd::Unixsock (); + use Collectd::Unixsock; my $sock = Collectd::Unixsock->new ($path); @@ -56,23 +56,16 @@ programmers to interact with the daemon. use strict; use warnings; -#use constant { NOTIF_FAILURE => 1, NOTIF_WARNING => 2, NOTIF_OKAY => 4 }; - -use Carp (qw(cluck confess)); +use Carp qw(cluck confess carp croak); +use POSIX; use IO::Socket::UNIX; -use Regexp::Common (qw(number)); +use Scalar::Util qw( looks_like_number ); our $Debug = 0; -return (1); - sub _debug { - if (!$Debug) - { - return; - } - print @_; + print @_ if $Debug; } sub _create_socket @@ -89,88 +82,185 @@ sub _create_socket =head1 VALUE IDENTIFIERS -The values in the collectd are identified using an five-tuple (host, plugin, -plugin-instance, type, type-instance) where only plugin-instance and -type-instance may be NULL (or undefined). Many functions expect an -I<%identifier> hash that has at least the members B, B, and -B, possibly completed by B and B. +The values in the collectd are identified using a five-tuple (host, plugin, +plugin-instance, type, type-instance) where only plugin instance and type +instance may be undef. Many functions expect an I<%identifier> hash that has at +least the members B, B, and B, possibly completed by +B and B. Usually you can pass this hash as follows: - $obj->method (host => $host, plugin => $plugin, type => $type, %other_args); + $self->method (host => $host, plugin => $plugin, type => $type, %other_args); =cut sub _create_identifier { my $args = shift; - my $host; - my $plugin; - my $type; + my ($host, $plugin, $type); - if (!$args->{'host'} || !$args->{'plugin'} || !$args->{'type'}) + if (!$args->{host} || !$args->{plugin} || !$args->{type}) { cluck ("Need `host', `plugin' and `type'"); return; } - $host = $args->{'host'}; - $plugin = $args->{'plugin'}; - $plugin .= '-' . $args->{'plugin_instance'} if (defined ($args->{'plugin_instance'})); - $type = $args->{'type'}; - $type .= '-' . $args->{'type_instance'} if (defined ($args->{'type_instance'})); + $host = $args->{host}; + $plugin = $args->{plugin}; + $plugin .= '-' . $args->{plugin_instance} if defined $args->{plugin_instance}; + $type = $args->{type}; + $type .= '-' . $args->{type_instance} if defined $args->{type_instance}; - return ("$host/$plugin/$type"); + return "$host/$plugin/$type"; } # _create_identifier sub _parse_identifier { my $string = shift; - my $host; - my $plugin; - my $plugin_instance; - my $type; - my $type_instance; - my $ident; + my ($plugin_instance, $type_instance); - ($host, $plugin, $type) = split ('/', $string); + my ($host, $plugin, $type) = split /\//, $string; - ($plugin, $plugin_instance) = split ('-', $plugin, 2); - ($type, $type_instance) = split ('-', $type, 2); + ($plugin, $plugin_instance) = split /-/, $plugin, 2; + ($type, $type_instance) = split /-/, $type, 2; - $ident = + my $ident = { host => $host, plugin => $plugin, type => $type }; - $ident->{'plugin_instance'} = $plugin_instance if (defined ($plugin_instance)); - $ident->{'type_instance'} = $type_instance if (defined ($type_instance)); + $ident->{plugin_instance} = $plugin_instance if defined $plugin_instance; + $ident->{type_instance} = $type_instance if defined $type_instance; - return ($ident); + return $ident; } # _parse_identifier sub _escape_argument { - my $string = shift; + my $arg = shift; + + return $arg if $arg =~ /^\w+$/; + + $arg =~ s#\\#\\\\#g; + $arg =~ s#"#\\"#g; + return "\"$arg\""; +} + +# Handle socket errors. +sub _socket_error { + my ($self, $where) = @_; + + # If the peer has reset the connection, try to reconnect, + # otherwise fail. + if ($! == EPIPE) { + _debug "^^ error on $where: $!; reconnecting\n"; + $self->destroy; + $self->{sock} = _create_socket ($self->{path}) or return 1; + return; + } else { + carp ("error on $where: $!; aborting action\n"); + $self->{error} = $!; + return 1; + } +} + +# Send a command on a socket, including any required argument escaping. +# Return a single line of result. +sub _socket_command { + my ($self, $command, $args) = @_; + + my $fh = $self->{sock} or confess ('object has no filehandle'); + + if($args) { + my $identifier = _create_identifier ($args) or return; + $command .= ' ' . _escape_argument ($identifier) . "\n"; + } else { + $command .= "\n"; + } + _debug "-> $command"; + while (not $fh->print($command)) { + return if $self->_socket_error ('print'); + $fh = $self->{sock}; + } + + my $response; + while (not defined ($response = $fh->getline)) { + return if $self->_socket_error ('getline'); + $fh = $self->{sock}; + } + chomp $response; + _debug "<- $response\n"; + return $response; +} + +# Read any remaining results from a socket and pass them to +# a callback for caller-defined mangling. +sub _socket_chat +{ + my ($self, $msg, $callback, $cbdata) = @_; + my ($nresults, $ret); + my $fh = $self->{sock} or confess ('object has no filehandle'); + + ($nresults, $msg) = split / /, $msg, 2; + if ($nresults <= 0) + { + $self->{error} = $msg; + return; + } - if ($string =~ m/^\w+$/) + for (1 .. $nresults) { - return ("$string"); + my $entry; + while (not defined($entry = $fh->getline)) { + return if $self->_socket_error ('getline'); + $fh = $self->{sock}; + } + chomp $entry; + _debug "<- $entry\n"; + $callback->($entry, $cbdata); + } + return $cbdata; +} + +# Send a raw message on a socket. +# Returns true upon success and false otherwise. +sub _send_message +{ + my ($self, $msg) = @_; + + my $fh = $self->{'sock'} or confess ('object has no filehandle'); + + $msg .= "\n" unless $msg =~/\n$/; + + #1024 is default buffer size at unixsock.c us_handle_client() + warn "Collectd::Unixsock->_send_message(\$msg): message is too long!" if length($msg) > 1024; + + _debug "-> $msg"; + while (not $fh->print($msg)) { + return if $self->_socket_error ('print'); + $fh = $self->{sock}; + } + + while (not defined ($msg = <$fh>)) { + return if $self->_socket_error ('readline'); + $fh = $self->{sock}; } + chomp ($msg); + _debug "<- $msg\n"; - $string =~ s#\\#\\\\#g; - $string =~ s#"#\\"#g; - $string = "\"$string\""; + my ($status, $error) = split / /, $msg, 2; + return 1 if $status == 0; - return ($string); + $self->{error} = $error; + return; } =head1 PUBLIC METHODS =over 4 -=item I<$obj> = Collectd::Unixsock->B ([I<$path>]); +=item I<$self> = Collectd::Unixsock->B ([I<$path>]); Creates a new connection to the daemon. The optional I<$path> argument gives the path to the UNIX socket of the C and defaults to @@ -181,19 +271,18 @@ false on error. sub new { - my $pkg = shift; - my $path = @_ ? shift : '/var/run/collectd-unixsock'; + my $class = shift; + my $path = shift || '/var/run/collectd-unixsock'; my $sock = _create_socket ($path) or return; - my $obj = bless ( + return bless { path => $path, sock => $sock, error => 'No error' - }, $pkg); - return ($obj); + }, $class; } # new -=item I<$res> = I<$obj>-EB (I<%identifier>); +=item I<$res> = I<$self>-EB (I<%identifier>); Requests a value-list from the daemon. On success a hash-ref is returned with the name of each data-source as the key and the according value as, well, the @@ -203,53 +292,22 @@ value. On error false is returned. sub getval # {{{ { - my $obj = shift; + my $self = shift; my %args = @_; - - my $status; - my $fh = $obj->{'sock'} or confess ('object has no filehandle'); - my $msg; - my $identifier; - my $ret = {}; - $identifier = _create_identifier (\%args) or return; - - $msg = 'GETVAL ' . _escape_argument ($identifier) . "\n"; - _debug "-> $msg"; - print $fh $msg; - - $msg = <$fh>; - chomp ($msg); - _debug "<- $msg\n"; - - ($status, $msg) = split (' ', $msg, 2); - if ($status <= 0) - { - $obj->{'error'} = $msg; - return; - } - - for (my $i = 0; $i < $status; $i++) - { - my $entry = <$fh>; - chomp ($entry); - _debug "<- $entry\n"; - - if ($entry =~ m/^(\w+)=NaN$/) - { - $ret->{$1} = undef; - } - elsif ($entry =~ m/^(\w+)=($RE{num}{real})$/) - { - $ret->{$1} = 0.0 + $2; - } - } - - return ($ret); + my $msg = $self->_socket_command('GETVAL', \%args) or return; + $self->_socket_chat($msg, sub { + local $_ = shift; + my $ret = shift; + /^(\w+)=NaN$/ and $ret->{$1} = undef, return; + /^(\w+)=(.*)$/ and looks_like_number($2) and $ret->{$1} = 0 + $2, return; + }, $ret + ); + return $ret; } # }}} sub getval -=item I<$res> = I<$obj>-EB (I<%identifier>); +=item I<$res> = I<$self>-EB (I<%identifier>); Requests a threshold from the daemon. On success a hash-ref is returned with the threshold data. On error false is returned. @@ -258,55 +316,25 @@ the threshold data. On error false is returned. sub getthreshold # {{{ { - my $obj = shift; + my $self = shift; my %args = @_; - - my $status; - my $fh = $obj->{'sock'} or confess ('object has no filehandle'); - my $msg; - my $identifier; - my $ret = {}; - $identifier = _create_identifier (\%args) or return; - - $msg = 'GETTHRESHOLD ' . _escape_argument ($identifier) . "\n"; - _debug "-> $msg"; - print $fh $msg; - - $msg = <$fh>; - chomp ($msg); - _debug "<- $msg\n"; - - ($status, $msg) = split (' ', $msg, 2); - if ($status <= 0) - { - $obj->{'error'} = $msg; - return; - } - - for (my $i = 0; $i < $status; $i++) - { - my $entry = <$fh>; - chomp ($entry); - _debug "<- $entry\n"; - - if ($entry =~ m/^([^:]+):\s*(\S.*)$/) - { - my $key = $1; - my $value = $2; - - $key =~ s/^\s+//; - $key =~ s/\s+$//; - - $ret->{$key} = $value; - } - } - - return ($ret); + my $msg = $self->_socket_command('GETTHRESHOLD', \%args) or return; + $self->_socket_chat($msg, sub { + local $_ = shift; + my $ret = shift; + my ( $key, $val ); + ( $key, $val ) = /^\s*([^:]+):\s*(.*)/ and do { + $key =~ s/\s*$//; + $ret->{$key} = $val; + }; + }, $ret + ); + return $ret; } # }}} sub getthreshold -=item I<$obj>-EB (I<%identifier>, B