From f061a88994ecdd9ac0c51eb41cc645305d01d609 Mon Sep 17 00:00:00 2001 From: Tobias Bauriedel Date: Wed, 11 Jan 2023 08:25:18 +0100 Subject: [PATCH] Release 0.8.1 --- README.md | 25 +++++++++++++++++++++++-- version.go | 2 +- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7903bd3..be9b8e5 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ If you want to see what is collected, add `--verbose`. ``` Usage of support-collector: - -o, --output string Output file for the ZIP content (default "netways-support-20220523-0929.zip") - --enable strings List of enabled module (default [base,icinga2,icingaweb2,icinga-director,icingadb,mysql,influxdb,postgresql,ansible,puppet,grafana,graphite]) + -o, --output string Output file for the zip content + --enable strings List of enabled module (default [base,icinga2,icingaweb2,icinga-director,icingadb,corosync,keepalived,mysql,influxdb,postgresql,ansible,puppet,grafana,graphite]) --disable strings List of disabled module --command-timeout duration Timeout for command execution in modules (default 1m0s) -v, --verbose Enable verbose logging @@ -98,6 +98,27 @@ Module: `icinga-director` See [modules/icingadirector/collector.go](modules/icingadirector/collector.go) for details. +### Corosync + +Module: `corosync` + +* Version +* Service status from `corosync` and `pacemaker` +* Configuration from corosync +* Logs from corosync and pacemaker + +See [modules/corosync/collector.go](modules/icingadirector/collector.go) for detauls + +### Keepalived + +Module: `keepalived` + +* Version +* Service status from keepalived +* Configuration from keepalived + +See [modules/keepalived/collector.go](modules/keepalived/collector.go) + ### MySQL Module: `mysql` diff --git a/version.go b/version.go index 7815a0e..0a1bae2 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ import "fmt" //nolint:gochecknoglobals var ( - version = "0.8.0" + version = "0.8.1" commit = "" date = "" )