mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-25 13:51:42 +02:00
* Remove go-toolkit as build requirement for RPM builds if run in CI * Remove condition around BuildRequires and use go-toolkit for RPM builds * use go-toolkit for RPM builds * Install go-toolkit to fulfill build requirements for RPM * Add golang-race for UBI9 and Alma9 * Fix wrongly named packages * Fix wrongly named packages * Fix Release part * Fix Release part * Fix documentation of RAPL collector * Mark all JSON config fields of message processor as omitempty * Generate HUGO inputs out of Markdown files * Check creation of CCMessage in NATS receiver * Use CCMessage FromBytes instead of Influx's decoder * Rename 'process_message' to 'process_messages' in metricRouter config This makes the behavior more consistent with the other modules, which have their MessageProcessor named 'process_messages'. This most likely was just a typo. * Add optional interface alias in netstat (#130) * Check creation of CCMessage in NATS receiver * add optional interface aliases for netstatMetric * small fix --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Fix excluded metrics for diskstat and add exclude_mounts (#131) * Check creation of CCMessage in NATS receiver * fix excluded metrics and add optional mountpoint exclude --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Add derived values for nfsiostat (#132) * Check creation of CCMessage in NATS receiver * add derived_values for nfsiostatMetric --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Add exclude_devices to iostat (#133) * Check creation of CCMessage in NATS receiver * add exclude_device for iostatMetric * add md file --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Add derived_values for numastats (#134) * Check creation of CCMessage in NATS receiver * add derived_values for numastats * change to ccMessage * remove vim command artefact --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Fix artifacts of not done cc-lib switch * Fix artifacts in netstat collector of not done cc-lib switch * Change to cc-lib (#135) * Change to ccMessage from cc-lib * Remove local development path * Use receiver, sinks, ccLogger and ccConfig from cc-lib * Fix ccLogger import path * Update CI * Delete mountpoint when it vanishes, not just its data (#137) --------- Co-authored-by: Michael Panzlaff <michael.panzlaff@fau.de> Co-authored-by: brinkcoder <Robert.Externbrink@ruhr-uni-bochum.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de>
176 lines
4.4 KiB
Bash
Executable File
176 lines
4.4 KiB
Bash
Executable File
#!/bin/bash -l
|
|
|
|
SRCDIR="$(pwd)"
|
|
DESTDIR="$1"
|
|
|
|
if [ -z "$DESTDIR" ]; then
|
|
echo "Destination folder not provided"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
COLLECTORS=$(find "${SRCDIR}/collectors" -name "*Metric.md")
|
|
SINKS=$(find "${SRCDIR}/sinks" -name "*Sink.md")
|
|
RECEIVERS=$(find "${SRCDIR}/receivers" -name "*Receiver.md")
|
|
|
|
|
|
|
|
# Collectors
|
|
mkdir -p "${DESTDIR}/collectors"
|
|
for F in $COLLECTORS; do
|
|
echo "$F"
|
|
FNAME=$(basename "$F")
|
|
TITLE=$(grep -E "^##" "$F" | head -n 1 | sed -e 's+## ++g')
|
|
echo "'${TITLE//\`/}'"
|
|
if [ "${TITLE}" == "" ]; then continue; fi
|
|
rm --force "${DESTDIR}/collectors/${FNAME}"
|
|
cat << EOF >> "${DESTDIR}/collectors/${FNAME}"
|
|
---
|
|
title: ${TITLE//\`/}
|
|
description: >
|
|
Toplevel ${FNAME/.md/}
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Collector, ${FNAME/Metric.md/}]
|
|
weight: 2
|
|
---
|
|
|
|
EOF
|
|
cat "$F" >> "${DESTDIR}/collectors/${FNAME}"
|
|
done
|
|
|
|
if [ -e "${SRCDIR}/collectors/README.md" ]; then
|
|
cat << EOF > "${DESTDIR}/collectors/_index.md"
|
|
---
|
|
title: cc-metric-collector's collectors
|
|
description: Documentation of cc-metric-collector's collectors
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Collector, General]
|
|
weight: 40
|
|
---
|
|
|
|
EOF
|
|
cat "${SRCDIR}/collectors/README.md" >> "${DESTDIR}/collectors/_index.md"
|
|
fi
|
|
|
|
# Sinks
|
|
mkdir -p "${DESTDIR}/sinks"
|
|
for F in $SINKS; do
|
|
echo "$F"
|
|
FNAME=$(basename "$F")
|
|
TITLE=$(grep -E "^##" "$F" | head -n 1 | sed -e 's+## ++g')
|
|
echo "'${TITLE//\`/}'"
|
|
if [ "${TITLE}" == "" ]; then continue; fi
|
|
rm --force "${DESTDIR}/sinks/${FNAME}"
|
|
cat << EOF >> "${DESTDIR}/sinks/${FNAME}"
|
|
---
|
|
title: ${TITLE//\`/}
|
|
description: >
|
|
Toplevel ${FNAME/.md/}
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Sink, ${FNAME/Sink.md/}]
|
|
weight: 2
|
|
---
|
|
|
|
EOF
|
|
cat "$F" >> "${DESTDIR}/sinks/${FNAME}"
|
|
done
|
|
|
|
if [ -e "${SRCDIR}/collectors/README.md" ]; then
|
|
cat << EOF > "${DESTDIR}/sinks/_index.md"
|
|
---
|
|
title: cc-metric-collector's sinks
|
|
description: Documentation of cc-metric-collector's sinks
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Sink, General]
|
|
weight: 40
|
|
---
|
|
|
|
EOF
|
|
cat "${SRCDIR}/sinks/README.md" >> "${DESTDIR}/sinks/_index.md"
|
|
fi
|
|
|
|
|
|
# Receivers
|
|
mkdir -p "${DESTDIR}/receivers"
|
|
for F in $RECEIVERS; do
|
|
echo "$F"
|
|
FNAME=$(basename "$F")
|
|
TITLE=$(grep -E "^##" "$F" | head -n 1 | sed -e 's+## ++g')
|
|
echo "'${TITLE//\`/}'"
|
|
if [ "${TITLE}" == "" ]; then continue; fi
|
|
rm --force "${DESTDIR}/receivers/${FNAME}"
|
|
cat << EOF >> "${DESTDIR}/receivers/${FNAME}"
|
|
---
|
|
title: ${TITLE//\`/}
|
|
description: >
|
|
Toplevel ${FNAME/.md/}
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Receiver, ${FNAME/Receiver.md/}]
|
|
weight: 2
|
|
---
|
|
|
|
EOF
|
|
cat "$F" >> "${DESTDIR}/receivers/${FNAME}"
|
|
done
|
|
|
|
if [ -e "${SRCDIR}/receivers/README.md" ]; then
|
|
cat << EOF > "${DESTDIR}/receivers/_index.md"
|
|
---
|
|
title: cc-metric-collector's receivers
|
|
description: Documentation of cc-metric-collector's receivers
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Receiver, General]
|
|
weight: 40
|
|
---
|
|
|
|
EOF
|
|
cat "${SRCDIR}/receivers/README.md" >> "${DESTDIR}/receivers/_index.md"
|
|
fi
|
|
|
|
mkdir -p "${DESTDIR}/internal/metricRouter"
|
|
if [ -e "${SRCDIR}/internal/metricRouter/README.md" ]; then
|
|
cat << EOF > "${DESTDIR}/internal/metricRouter/_index.md"
|
|
---
|
|
title: cc-metric-collector's router
|
|
description: Documentation of cc-metric-collector's router
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Router, General]
|
|
weight: 40
|
|
---
|
|
|
|
EOF
|
|
cat "${SRCDIR}/internal/metricRouter/README.md" >> "${DESTDIR}/internal/metricRouter/_index.md"
|
|
fi
|
|
|
|
if [ -e "${SRCDIR}/README.md" ]; then
|
|
cat << EOF > "${DESTDIR}/_index.md"
|
|
---
|
|
title: cc-metric-collector
|
|
description: Documentation of cc-metric-collector
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, General]
|
|
weight: 40
|
|
---
|
|
|
|
EOF
|
|
cat "${SRCDIR}/README.md" >> "${DESTDIR}/_index.md"
|
|
sed -i -e 's+README.md+_index.md+g' "${DESTDIR}/_index.md"
|
|
fi
|
|
|
|
|
|
mkdir -p "${DESTDIR}/pkg/messageProcessor"
|
|
if [ -e "${SRCDIR}/pkg/messageProcessor/README.md" ]; then
|
|
cat << EOF > "${DESTDIR}/pkg/messageProcessor/_index.md"
|
|
---
|
|
title: cc-metric-collector's message processor
|
|
description: Documentation of cc-metric-collector's message processor
|
|
categories: [cc-metric-collector]
|
|
tags: [cc-metric-collector, Message Processor]
|
|
weight: 40
|
|
---
|
|
|
|
EOF
|
|
cat "${SRCDIR}/pkg/messageProcessor/README.md" >> "${DESTDIR}/pkg/messageProcessor/_index.md"
|
|
fi
|
|
|