diff options
| author | Laurent Bonnans <laurent.bonnans@here.com> | 2020-05-07 16:44:49 +0200 |
|---|---|---|
| committer | Laurent Bonnans <laurent.bonnans@here.com> | 2020-05-18 14:47:23 +0200 |
| commit | 6b01947fe72b50a08378d74d9c3168a6422451ba (patch) | |
| tree | c6606ad877f3657bb37b5a6c251bf2e641f842dc | |
| parent | b3bc79b0319dcf720fb5a54852d9152f7642a61d (diff) | |
| download | meta-updater-feat/collectd-zeus.tar.gz | |
Adding collectd coniguration for aktualizrfeat/collectd-zeus
Signed-off-by: Laurent Bonnans <laurent.bonnans@here.com>
| -rw-r--r-- | recipes-extended/collectd/collectd_%.bbappend | 5 | ||||
| -rw-r--r-- | recipes-sota/aktualizr/aktualizr-collectd.bb | 21 | ||||
| -rw-r--r-- | recipes-sota/aktualizr/files/aktualizr-collectd.conf | 9 |
3 files changed, 35 insertions, 0 deletions
diff --git a/recipes-extended/collectd/collectd_%.bbappend b/recipes-extended/collectd/collectd_%.bbappend new file mode 100644 index 0000000..fb3e6c4 --- /dev/null +++ b/recipes-extended/collectd/collectd_%.bbappend | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | do_install_append() { | ||
| 2 | printf "<Include \"${sysconfdir}/collectd.conf.d\">\nFilter \"*.conf\"\n</Include>\n" >> ${D}/${sysconfdir}/collectd.conf | ||
| 3 | |||
| 4 | install -d ${D}/${sysconfdir}/collectd.conf.d | ||
| 5 | } | ||
diff --git a/recipes-sota/aktualizr/aktualizr-collectd.bb b/recipes-sota/aktualizr/aktualizr-collectd.bb new file mode 100644 index 0000000..c1fc717 --- /dev/null +++ b/recipes-sota/aktualizr/aktualizr-collectd.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Aktualizr metric collection" | ||
| 2 | HOMEPAGE = "https://github.com/advancedtelematic/aktualizr" | ||
| 3 | SECTION = "base" | ||
| 4 | LICENSE = "MPL-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MPL-2.0;md5=815ca599c9df247a0c7f619bab123dad" | ||
| 6 | |||
| 7 | RDEPENDS_${PN} = "collectd" | ||
| 8 | |||
| 9 | SRC_URI = " file://aktualizr-collectd.conf" | ||
| 10 | |||
| 11 | S = "${WORKDIR}" | ||
| 12 | |||
| 13 | do_install() { | ||
| 14 | install -d ${D}${sysconfdir}/collectd.conf.d | ||
| 15 | install -m 0644 ${WORKDIR}/aktualizr-collectd.conf ${D}${sysconfdir}/collectd.conf.d/aktualizr.conf | ||
| 16 | } | ||
| 17 | |||
| 18 | FILES_${PN} = " \ | ||
| 19 | ${sysconfdir}/collectd.conf.d \ | ||
| 20 | ${sysconfdir}/collectd.conf.d/aktualizr.conf \ | ||
| 21 | " | ||
diff --git a/recipes-sota/aktualizr/files/aktualizr-collectd.conf b/recipes-sota/aktualizr/files/aktualizr-collectd.conf new file mode 100644 index 0000000..35a1f61 --- /dev/null +++ b/recipes-sota/aktualizr/files/aktualizr-collectd.conf | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | <LoadPlugin processes> | ||
| 2 | Interval 1 | ||
| 3 | </LoadPlugin> | ||
| 4 | <Plugin processes> | ||
| 5 | CollectFileDescriptor true | ||
| 6 | CollectContextSwitch true | ||
| 7 | CollectMemoryMaps true | ||
| 8 | Process "aktualizr" | ||
| 9 | </Plugin> | ||
