mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-12-26 07:29:04 +01:00
Merge latest developments into main (#67)
* Update configuration.md Add an additional receiver to have better alignment of components * Change default GpfsCollector command to `mmpmon` (#53) * Set default cmd to 'mmpmon' * Reuse looked up path * Cast const to string * Just download LIKWID to get the headers (#54) * Just download LIKWID to get the headers * Remove perl-Data-Dumper from BuildRequires, only required by LIKWID build * Add HttpReceiver as counterpart to the HttpSink (#49) * Use GBytes as unit for large memory numbers * Make maxForward configurable, save old name in meta in rename metrics and make the hostname tag key configurable * Single release action (#55) Building all RPMs and releasing in a single workflow * Makefile target to build binary-only Debian packages (#61) * Add 'install' and 'DEB' make targets to build binary-only Debian packages * Add control file for DEB builds * Use a single line for bash loop in make clean * Add config options for retry intervals of InfluxDB clients (#59) * Refactoring of LikwidCollector and metric units (#62) * Reduce complexity of LikwidCollector and allow metric units * Add unit to LikwidCollector docu and fix some typos * Make library path configurable * Use old metric name in Ganglia if rename has happened in the router (#60) * Use old metric name if rename has happened in the router * Also check for Ganglia renames for the oldname * Derived metrics (#57) * Add time-based derivatived (e.g. bandwidth) to some collectors * Add documentation * Add comments * Fix: Only compute rates with a valid previous state * Only compute rates with a valid previous state * Define const values for net/dev fields * Set default config values * Add comments * Refactor: Consolidate data structures * Refactor: Consolidate data structures * Refactor: Avoid struct deep copy * Refactor: Avoid redundant tag maps * Refactor: Use int64 type for absolut values Co-authored-by: Holger Obermaier <40787752+ho-ob@users.noreply.github.com> * Simplified iota usage * Move unit tag to meta data tags * Derived metrics (#65) * Add time-based derivatived (e.g. bandwidth) to some collectors * Add documentation * Add comments * Fix: Only compute rates with a valid previous state * Only compute rates with a valid previous state * Define const values for net/dev fields * Set default config values * Add comments * Refactor: Consolidate data structures * Refactor: Consolidate data structures * Refactor: Avoid struct deep copy * Refactor: Avoid redundant tag maps * Refactor: Use int64 type for absolut values * Update LustreCollector Co-authored-by: Holger Obermaier <40787752+ho-ob@users.noreply.github.com> * Meta to tags list and map for sinks (#63) * Change ccMetric->Influx functions * Use a meta_as_tags string list in config but create a lookup map afterwards * Add meta as tag logic to sampleSink * Fix staticcheck warnings (#66) Co-authored-by: Holger Obermaier <40787752+ho-ob@users.noreply.github.com>
This commit is contained in:
parent
3157386b3e
commit
3f76947f54
64
.github/workflows/AlmaLinux.yml
vendored
64
.github/workflows/AlmaLinux.yml
vendored
@ -1,64 +0,0 @@
|
|||||||
# See: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
|
|
||||||
|
|
||||||
# Workflow name
|
|
||||||
name: AlmaLinux 8.5 RPM build
|
|
||||||
|
|
||||||
# Run on tag push
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '**'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
#
|
|
||||||
# Build on AlmaLinux 8.5 using go-toolset
|
|
||||||
#
|
|
||||||
AlmaLinux-RPM-build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
# See: https://hub.docker.com/_/almalinux
|
|
||||||
container: almalinux:8.5
|
|
||||||
steps:
|
|
||||||
|
|
||||||
# Use dnf to install development packages
|
|
||||||
- name: Install development packages
|
|
||||||
run: dnf --assumeyes group install "Development Tools" "RPM Development Tools"
|
|
||||||
|
|
||||||
# Checkout git repository and submodules
|
|
||||||
# fetch-depth must be 0 to use git describe
|
|
||||||
# See: https://github.com/marketplace/actions/checkout
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
# Use dnf to install build dependencies
|
|
||||||
- name: Install build dependencies
|
|
||||||
run: dnf --assumeyes builddep scripts/cc-metric-collector.spec
|
|
||||||
|
|
||||||
- name: RPM build MetricCollector
|
|
||||||
id: rpmbuild
|
|
||||||
run: make RPM
|
|
||||||
|
|
||||||
# See: https://github.com/actions/upload-artifact
|
|
||||||
- name: Save RPM as artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector RPM for AlmaLinux 8.5
|
|
||||||
path: ${{ steps.rpmbuild.outputs.RPM }}
|
|
||||||
- name: Save SRPM as artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector SRPM for AlmaLinux 8.5
|
|
||||||
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
|
||||||
|
|
||||||
# See: https://github.com/softprops/action-gh-release
|
|
||||||
- name: Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector-${{github.ref_name}}
|
|
||||||
files: |
|
|
||||||
${{ steps.rpmbuild.outputs.RPM }}
|
|
||||||
${{ steps.rpmbuild.outputs.SRPM }}
|
|
64
.github/workflows/RedHatUniversalBaseImage.yml
vendored
64
.github/workflows/RedHatUniversalBaseImage.yml
vendored
@ -1,64 +0,0 @@
|
|||||||
# See: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
|
|
||||||
|
|
||||||
# Workflow name
|
|
||||||
name: Red Hat Universal Base Image 8 RPM build
|
|
||||||
|
|
||||||
# Run on tag push
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '**'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
#
|
|
||||||
# Build on UBI 8 using go-toolset
|
|
||||||
#
|
|
||||||
UBI-8-RPM-build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
# See: https://catalog.redhat.com/software/containers/ubi8/ubi/5c359854d70cc534b3a3784e?container-tabs=gti
|
|
||||||
container: registry.access.redhat.com/ubi8/ubi:8.5-226.1645809065
|
|
||||||
steps:
|
|
||||||
|
|
||||||
# Use dnf to install development packages
|
|
||||||
- name: Install development packages
|
|
||||||
run: dnf --assumeyes --disableplugin=subscription-manager install rpm-build go-srpm-macros rpm-build-libs rpm-libs gcc make python38 git
|
|
||||||
|
|
||||||
# Checkout git repository and submodules
|
|
||||||
# fetch-depth must be 0 to use git describe
|
|
||||||
# See: https://github.com/marketplace/actions/checkout
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
# Use dnf to install build dependencies
|
|
||||||
- name: Install build dependencies
|
|
||||||
run: dnf --assumeyes --disableplugin=subscription-manager builddep scripts/cc-metric-collector.spec
|
|
||||||
|
|
||||||
- name: RPM build MetricCollector
|
|
||||||
id: rpmbuild
|
|
||||||
run: make RPM
|
|
||||||
|
|
||||||
# See: https://github.com/actions/upload-artifact
|
|
||||||
- name: Save RPM as artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector RPM for UBI 8
|
|
||||||
path: ${{ steps.rpmbuild.outputs.RPM }}
|
|
||||||
- name: Save SRPM as artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector SRPM for UBI 8
|
|
||||||
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
|
||||||
|
|
||||||
# See: https://github.com/softprops/action-gh-release
|
|
||||||
- name: Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector-${{github.ref_name}}
|
|
||||||
files: |
|
|
||||||
${{ steps.rpmbuild.outputs.RPM }}
|
|
||||||
${{ steps.rpmbuild.outputs.SRPM }}
|
|
184
.github/workflows/Release.yml
vendored
Normal file
184
.github/workflows/Release.yml
vendored
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
# See: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
|
||||||
|
|
||||||
|
# Workflow name
|
||||||
|
name: Release
|
||||||
|
|
||||||
|
# Run on tag push
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
#
|
||||||
|
# Build on AlmaLinux 8.5 using go-toolset
|
||||||
|
#
|
||||||
|
AlmaLinux-RPM-build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# See: https://hub.docker.com/_/almalinux
|
||||||
|
container: almalinux:8.5
|
||||||
|
# The job outputs link to the outputs of the 'rpmrename' step
|
||||||
|
# Only job outputs can be used in child jobs
|
||||||
|
outputs:
|
||||||
|
rpm : ${{steps.rpmrename.outputs.RPM}}
|
||||||
|
srpm : ${{steps.rpmrename.outputs.SRPM}}
|
||||||
|
steps:
|
||||||
|
|
||||||
|
# Use dnf to install development packages
|
||||||
|
- name: Install development packages
|
||||||
|
run: dnf --assumeyes group install "Development Tools" "RPM Development Tools"
|
||||||
|
|
||||||
|
# Checkout git repository and submodules
|
||||||
|
# fetch-depth must be 0 to use git describe
|
||||||
|
# See: https://github.com/marketplace/actions/checkout
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# Use dnf to install build dependencies
|
||||||
|
- name: Install build dependencies
|
||||||
|
run: dnf --assumeyes builddep scripts/cc-metric-collector.spec
|
||||||
|
|
||||||
|
- name: RPM build MetricCollector
|
||||||
|
id: rpmbuild
|
||||||
|
run: make RPM
|
||||||
|
|
||||||
|
# AlmaLinux 8.5 is a derivate of RedHat Enterprise Linux 8 (UBI8),
|
||||||
|
# so the created RPM both contain the substring 'el8' in the RPM file names
|
||||||
|
# This step replaces the substring 'el8' to 'alma85'. It uses the move operation
|
||||||
|
# because it is unclear whether the default AlmaLinux 8.5 container contains the
|
||||||
|
# 'rename' command. This way we also get the new names for output.
|
||||||
|
- name: Rename RPMs (s/el8/alma85/)
|
||||||
|
id: rpmrename
|
||||||
|
run: |
|
||||||
|
OLD_RPM="${{steps.rpmbuild.outputs.RPM}}"
|
||||||
|
OLD_SRPM="${{steps.rpmbuild.outputs.SRPM}}"
|
||||||
|
NEW_RPM="${OLD_RPM/el8/alma85}"
|
||||||
|
NEW_SRPM=${OLD_SRPM/el8/alma85}
|
||||||
|
mv "${OLD_RPM}" "${NEW_RPM}"
|
||||||
|
mv "${OLD_SRPM}" "${NEW_SRPM}"
|
||||||
|
echo "::set-output name=SRPM::${NEW_SRPM}"
|
||||||
|
echo "::set-output name=RPM::${NEW_RPM}"
|
||||||
|
|
||||||
|
# See: https://github.com/actions/upload-artifact
|
||||||
|
- name: Save RPM as artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector RPM for AlmaLinux 8.5
|
||||||
|
path: ${{ steps.rpmrename.outputs.RPM }}
|
||||||
|
- name: Save SRPM as artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector SRPM for AlmaLinux 8.5
|
||||||
|
path: ${{ steps.rpmrename.outputs.SRPM }}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Build on UBI 8 using go-toolset
|
||||||
|
#
|
||||||
|
UBI-8-RPM-build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# See: https://catalog.redhat.com/software/containers/ubi8/ubi/5c359854d70cc534b3a3784e?container-tabs=gti
|
||||||
|
container: registry.access.redhat.com/ubi8/ubi:8.5-226.1645809065
|
||||||
|
# The job outputs link to the outputs of the 'rpmbuild' step
|
||||||
|
outputs:
|
||||||
|
rpm : ${{steps.rpmbuild.outputs.RPM}}
|
||||||
|
srpm : ${{steps.rpmbuild.outputs.SRPM}}
|
||||||
|
steps:
|
||||||
|
|
||||||
|
# Use dnf to install development packages
|
||||||
|
- name: Install development packages
|
||||||
|
run: dnf --assumeyes --disableplugin=subscription-manager install rpm-build go-srpm-macros rpm-build-libs rpm-libs gcc make python38 git
|
||||||
|
|
||||||
|
# Checkout git repository and submodules
|
||||||
|
# fetch-depth must be 0 to use git describe
|
||||||
|
# See: https://github.com/marketplace/actions/checkout
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# Use dnf to install build dependencies
|
||||||
|
- name: Install build dependencies
|
||||||
|
run: dnf --assumeyes --disableplugin=subscription-manager builddep scripts/cc-metric-collector.spec
|
||||||
|
|
||||||
|
- name: RPM build MetricCollector
|
||||||
|
id: rpmbuild
|
||||||
|
run: make RPM
|
||||||
|
|
||||||
|
# See: https://github.com/actions/upload-artifact
|
||||||
|
- name: Save RPM as artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector RPM for UBI 8
|
||||||
|
path: ${{ steps.rpmbuild.outputs.RPM }}
|
||||||
|
- name: Save SRPM as artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector SRPM for UBI 8
|
||||||
|
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Create release with fresh RPMs
|
||||||
|
#
|
||||||
|
Release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# We need the RPMs, so add dependency
|
||||||
|
needs: [AlmaLinux-RPM-build, UBI-8-RPM-build]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# See: https://github.com/actions/download-artifact
|
||||||
|
- name: Download AlmaLinux 8.5 RPM
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector RPM for AlmaLinux 8.5
|
||||||
|
- name: Download AlmaLinux 8.5 SRPM
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector SRPM for AlmaLinux 8.5
|
||||||
|
|
||||||
|
- name: Download UBI 8 RPM
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector RPM for UBI 8
|
||||||
|
- name: Download UBI 8 SRPM
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector SRPM for UBI 8
|
||||||
|
|
||||||
|
# The download actions do not publish the name of the downloaded file,
|
||||||
|
# so we re-use the job outputs of the parent jobs. The files are all
|
||||||
|
# downloaded to the current folder.
|
||||||
|
# The gh-release action afterwards does not accept file lists but all
|
||||||
|
# files have to be listed at 'files'. The step creates one output per
|
||||||
|
# RPM package (2 per distro)
|
||||||
|
- name: Set RPM variables
|
||||||
|
id: files
|
||||||
|
run: |
|
||||||
|
ALMA_85_RPM=$(basename "${{ needs.AlmaLinux-RPM-build.outputs.rpm}}")
|
||||||
|
ALMA_85_SRPM=$(basename "${{ needs.AlmaLinux-RPM-build.outputs.srpm}}")
|
||||||
|
UBI_8_RPM=$(basename "${{ needs.UBI-8-RPM-build.outputs.rpm}}")
|
||||||
|
UBI_8_SRPM=$(basename "${{ needs.UBI-8-RPM-build.outputs.srpm}}")
|
||||||
|
echo "ALMA_85_RPM::${ALMA_85_RPM}"
|
||||||
|
echo "ALMA_85_SRPM::${ALMA_85_SRPM}"
|
||||||
|
echo "UBI_8_RPM::${UBI_8_RPM}"
|
||||||
|
echo "UBI_8_SRPM::${UBI_8_SRPM}"
|
||||||
|
echo "::set-output name=ALMA_85_RPM::${ALMA_85_RPM}"
|
||||||
|
echo "::set-output name=ALMA_85_SRPM::${ALMA_85_SRPM}"
|
||||||
|
echo "::set-output name=UBI_8_RPM::${UBI_8_RPM}"
|
||||||
|
echo "::set-output name=UBI_8_SRPM::${UBI_8_SRPM}"
|
||||||
|
|
||||||
|
# See: https://github.com/softprops/action-gh-release
|
||||||
|
- name: Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
name: cc-metric-collector-${{github.ref_name}}
|
||||||
|
files: |
|
||||||
|
${{ steps.files.outputs.ALMA_85_RPM }}
|
||||||
|
${{ steps.files.outputs.ALMA_85_SRPM }}
|
||||||
|
${{ steps.files.outputs.UBI_8_RPM }}
|
||||||
|
${{ steps.files.outputs.UBI_8_SRPM }}
|
53
Makefile
53
Makefile
@ -15,6 +15,8 @@ COMPONENT_DIRS := collectors \
|
|||||||
internal/ccTopology \
|
internal/ccTopology \
|
||||||
internal/multiChanTicker
|
internal/multiChanTicker
|
||||||
|
|
||||||
|
BINDIR = bin
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: $(APP)
|
all: $(APP)
|
||||||
@ -24,15 +26,27 @@ $(APP): $(GOSRC)
|
|||||||
go get
|
go get
|
||||||
go build -o $(APP) $(GOSRC_APP)
|
go build -o $(APP) $(GOSRC_APP)
|
||||||
|
|
||||||
|
install: $(APP)
|
||||||
|
@WORKSPACE=$(PREFIX)
|
||||||
|
@if [ -z "$${WORKSPACE}" ]; then exit 1; fi
|
||||||
|
@mkdir --parents --verbose $${WORKSPACE}/usr/$(BINDIR)
|
||||||
|
@install -Dpm 755 $(APP) $${WORKSPACE}/usr/$(BINDIR)/$(APP)
|
||||||
|
@mkdir --parents --verbose $${WORKSPACE}/etc/cc-metric-collector $${WORKSPACE}/etc/default $${WORKSPACE}/etc/systemd/system $${WORKSPACE}/etc/init.d
|
||||||
|
@install -Dpm 600 config.json $${WORKSPACE}/etc/cc-metric-collector/cc-metric-collector.json
|
||||||
|
@sed -i -e s+"\"./"+"\"/etc/cc-metric-collector/"+g $${WORKSPACE}/etc/cc-metric-collector/cc-metric-collector.json
|
||||||
|
@install -Dpm 600 sinks.json $${WORKSPACE}/etc/cc-metric-collector/sinks.json
|
||||||
|
@install -Dpm 600 collectors.json $${WORKSPACE}/etc/cc-metric-collector/collectors.json
|
||||||
|
@install -Dpm 600 router.json $${WORKSPACE}/etc/cc-metric-collector/router.json
|
||||||
|
@install -Dpm 600 receivers.json $${WORKSPACE}/etc/cc-metric-collector/receivers.json
|
||||||
|
@install -Dpm 600 scripts/cc-metric-collector.config $${WORKSPACE}/etc/default/cc-metric-collector
|
||||||
|
@install -Dpm 644 scripts/cc-metric-collector.service $${WORKSPACE}/etc/systemd/system/cc-metric-collector.service
|
||||||
|
@install -Dpm 644 scripts/cc-metric-collector.init $${WORKSPACE}/etc/init.d/cc-metric-collector
|
||||||
|
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
clean:
|
clean:
|
||||||
@for COMP in $(COMPONENT_DIRS)
|
@for COMP in $(COMPONENT_DIRS); do if [ -e $$COMP/Makefile ]; then make -C $$COMP clean; fi; done
|
||||||
do
|
|
||||||
if [[ -e $$COMP/Makefile ]]; then
|
|
||||||
make -C $$COMP clean
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
rm -f $(APP)
|
rm -f $(APP)
|
||||||
|
|
||||||
.PHONY: fmt
|
.PHONY: fmt
|
||||||
@ -69,7 +83,7 @@ RPM: scripts/cc-metric-collector.spec
|
|||||||
@COMMITISH="HEAD"
|
@COMMITISH="HEAD"
|
||||||
@VERS=$$(git describe --tags $${COMMITISH})
|
@VERS=$$(git describe --tags $${COMMITISH})
|
||||||
@VERS=$${VERS#v}
|
@VERS=$${VERS#v}
|
||||||
@VERS=$${VERS//-/_}
|
@VERS=$$(echo $$VERS | sed -e s+'-'+'_'+g)
|
||||||
@eval $$(rpmspec --query --queryformat "NAME='%{name}' VERSION='%{version}' RELEASE='%{release}' NVR='%{NVR}' NVRA='%{NVRA}'" --define="VERS $${VERS}" "$${SPECFILE}")
|
@eval $$(rpmspec --query --queryformat "NAME='%{name}' VERSION='%{version}' RELEASE='%{release}' NVR='%{NVR}' NVRA='%{NVRA}'" --define="VERS $${VERS}" "$${SPECFILE}")
|
||||||
@PREFIX="$${NAME}-$${VERSION}"
|
@PREFIX="$${NAME}-$${VERSION}"
|
||||||
@FORMAT="tar.gz"
|
@FORMAT="tar.gz"
|
||||||
@ -86,3 +100,28 @@ RPM: scripts/cc-metric-collector.spec
|
|||||||
@ echo "::set-output name=SRPM::$${SRPMFILE}"
|
@ echo "::set-output name=SRPM::$${SRPMFILE}"
|
||||||
@ echo "::set-output name=RPM::$${RPMFILE}"
|
@ echo "::set-output name=RPM::$${RPMFILE}"
|
||||||
@fi
|
@fi
|
||||||
|
|
||||||
|
.PHONY: DEB
|
||||||
|
DEB: scripts/cc-metric-collector.deb.control $(APP)
|
||||||
|
@BASEDIR=$${PWD}
|
||||||
|
@WORKSPACE=$${PWD}/.dpkgbuild
|
||||||
|
@DEBIANDIR=$${WORKSPACE}/debian
|
||||||
|
@DEBIANBINDIR=$${WORKSPACE}/DEBIAN
|
||||||
|
@mkdir --parents --verbose $$WORKSPACE $$DEBIANBINDIR
|
||||||
|
#@mkdir --parents --verbose $$DEBIANDIR
|
||||||
|
@CONTROLFILE="$${BASEDIR}/scripts/cc-metric-collector.deb.control"
|
||||||
|
@COMMITISH="HEAD"
|
||||||
|
@VERS=$$(git describe --tags --abbrev=0 $${COMMITISH})
|
||||||
|
@VERS=$${VERS#v}
|
||||||
|
@VERS=$$(echo $$VERS | sed -e s+'-'+'_'+g)
|
||||||
|
@ARCH=$$(uname -m)
|
||||||
|
@ARCH=$$(echo $$ARCH | sed -e s+'_'+'-'+g)
|
||||||
|
@PREFIX="$${NAME}-$${VERSION}_$${ARCH}"
|
||||||
|
@SIZE_BYTES=$$(du -bcs --exclude=.dpkgbuild "$$WORKSPACE"/ | awk '{print $$1}' | head -1 | sed -e 's/^0\+//')
|
||||||
|
@SIZE="$$(awk -v size="$$SIZE_BYTES" 'BEGIN {print (size/1024)+1}' | awk '{print int($$0)}')"
|
||||||
|
#@sed -e s+"{VERSION}"+"$$VERS"+g -e s+"{INSTALLED_SIZE}"+"$$SIZE"+g -e s+"{ARCH}"+"$$ARCH"+g $$CONTROLFILE > $${DEBIANDIR}/control
|
||||||
|
@sed -e s+"{VERSION}"+"$$VERS"+g -e s+"{INSTALLED_SIZE}"+"$$SIZE"+g -e s+"{ARCH}"+"$$ARCH"+g $$CONTROLFILE > $${DEBIANBINDIR}/control
|
||||||
|
@make PREFIX=$${WORKSPACE} install
|
||||||
|
@DEB_FILE="cc-metric-collector_$${VERS}_$${ARCH}.deb"
|
||||||
|
@dpkg-deb -b $${WORKSPACE} "$$DEB_FILE"
|
||||||
|
@rm -r "$${WORKSPACE}"
|
||||||
|
@ -12,6 +12,12 @@
|
|||||||
"proc_total"
|
"proc_total"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"netstat": {
|
||||||
|
"include_devices": [
|
||||||
|
"enp5s0"
|
||||||
|
],
|
||||||
|
"send_derived_values": true
|
||||||
|
},
|
||||||
"numastats": {},
|
"numastats": {},
|
||||||
"nvidia": {},
|
"nvidia": {},
|
||||||
"tempstat": {
|
"tempstat": {
|
||||||
|
@ -1,79 +1,25 @@
|
|||||||
# Use central installation
|
|
||||||
CENTRAL_INSTALL = false
|
|
||||||
# How to access hardware performance counters through LIKWID.
|
|
||||||
# Recommended is 'direct' mode
|
|
||||||
ACCESSMODE = direct
|
|
||||||
|
|
||||||
#######################################################################
|
all: likwid
|
||||||
# if CENTRAL_INSTALL == true
|
|
||||||
#######################################################################
|
|
||||||
# Path to central installation (if CENTRAL_INSTALL=true)
|
# LIKWID version
|
||||||
LIKWID_BASE=/apps/likwid/5.2.1
|
|
||||||
# LIKWID version (should be same major version as central installation, 5.2.x)
|
|
||||||
LIKWID_VERSION = 5.2.1
|
LIKWID_VERSION = 5.2.1
|
||||||
|
|
||||||
#######################################################################
|
.ONESHELL:
|
||||||
# if CENTRAL_INSTALL == false and ACCESSMODE == accessdaemon
|
.PHONY: likwid
|
||||||
#######################################################################
|
likwid:
|
||||||
# Where to install the accessdaemon
|
INSTALL_FOLDER="$${PWD}/likwid"
|
||||||
DAEMON_INSTALLDIR = /usr/local
|
BUILD_FOLDER="$${PWD}/likwidbuild"
|
||||||
# Which user to use for the accessdaemon
|
if [ -d $${INSTALL_FOLDER} ]; then rm -r $${INSTALL_FOLDER}; fi
|
||||||
DAEMON_USER = root
|
mkdir --parents --verbose $${INSTALL_FOLDER} $${BUILD_FOLDER}
|
||||||
# Which group to use for the accessdaemon
|
wget -P "$${BUILD_FOLDER}" ftp://ftp.rrze.uni-erlangen.de/mirrors/likwid/likwid-$(LIKWID_VERSION).tar.gz
|
||||||
DAEMON_GROUP = root
|
tar -C $${BUILD_FOLDER} -xf $${BUILD_FOLDER}/likwid-$(LIKWID_VERSION).tar.gz
|
||||||
|
install -Dpm 0644 $${BUILD_FOLDER}/likwid-$(LIKWID_VERSION)/src/includes/likwid*.h $${INSTALL_FOLDER}/
|
||||||
|
install -Dpm 0644 $${BUILD_FOLDER}/likwid-$(LIKWID_VERSION)/src/includes/bstrlib.h $${INSTALL_FOLDER}/
|
||||||
|
rm -r $${BUILD_FOLDER}
|
||||||
|
|
||||||
|
|
||||||
|
clean:
|
||||||
#################################################
|
|
||||||
# No need to change anything below this line
|
|
||||||
#################################################
|
|
||||||
INSTALL_FOLDER = ./likwid
|
|
||||||
BUILD_FOLDER = ./likwid/build
|
|
||||||
|
|
||||||
ifneq ($(strip $(CENTRAL_INSTALL)),true)
|
|
||||||
LIKWID_BASE := $(shell pwd)/$(INSTALL_FOLDER)
|
|
||||||
DAEMON_BASE := $(LIKWID_BASE)
|
|
||||||
GROUPS_BASE := $(LIKWID_BASE)/groups
|
|
||||||
all: $(INSTALL_FOLDER)/liblikwid.a cleanup
|
|
||||||
else
|
|
||||||
DAEMON_BASE= $(LIKWID_BASE)/sbin
|
|
||||||
all: $(INSTALL_FOLDER)/liblikwid.a cleanup
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$(BUILD_FOLDER)/likwid-$(LIKWID_VERSION).tar.gz: $(BUILD_FOLDER)
|
|
||||||
wget -P $(BUILD_FOLDER) ftp://ftp.rrze.uni-erlangen.de/mirrors/likwid/likwid-$(LIKWID_VERSION).tar.gz
|
|
||||||
|
|
||||||
$(BUILD_FOLDER):
|
|
||||||
mkdir -p $(BUILD_FOLDER)
|
|
||||||
|
|
||||||
$(INSTALL_FOLDER):
|
|
||||||
mkdir -p $(INSTALL_FOLDER)
|
|
||||||
|
|
||||||
$(BUILD_FOLDER)/likwid-$(LIKWID_VERSION): $(BUILD_FOLDER)/likwid-$(LIKWID_VERSION).tar.gz
|
|
||||||
tar -C $(BUILD_FOLDER) -xf $(BUILD_FOLDER)/likwid-$(LIKWID_VERSION).tar.gz
|
|
||||||
|
|
||||||
$(INSTALL_FOLDER)/liblikwid.a: $(BUILD_FOLDER)/likwid-$(LIKWID_VERSION) $(INSTALL_FOLDER)
|
|
||||||
cd "$(BUILD_FOLDER)/likwid-$(LIKWID_VERSION)" && make "PREFIX=$(LIKWID_BASE)" "SHARED_LIBRARY=false" "ACCESSMODE=$(ACCESSMODE)" "INSTALLED_ACCESSDAEMON=$(DAEMON_INSTALLDIR)/likwid-accessD"
|
|
||||||
cp \
|
|
||||||
$(BUILD_FOLDER)/likwid-$(LIKWID_VERSION)/liblikwid.a \
|
|
||||||
$(BUILD_FOLDER)/likwid-$(LIKWID_VERSION)/ext/hwloc/liblikwid-hwloc.a \
|
|
||||||
$(BUILD_FOLDER)/likwid-$(LIKWID_VERSION)/src/includes/likwid*.h \
|
|
||||||
$(BUILD_FOLDER)/likwid-$(LIKWID_VERSION)/src/includes/bstrlib.h \
|
|
||||||
$(INSTALL_FOLDER)
|
|
||||||
|
|
||||||
$(DAEMON_INSTALLDIR)/likwid-accessD: $(BUILD_FOLDER)/likwid-$(LIKWID_VERSION)/likwid-accessD
|
|
||||||
sudo -u $(DAEMON_USER) -g $(DAEMON_GROUP) install -m 4775 $(BUILD_FOLDER)/likwid-$(LIKWID_VERSION)/likwid-accessD $(DAEMON_INSTALLDIR)/likwid-accessD
|
|
||||||
|
|
||||||
prepare_collector: likwidMetric.go
|
|
||||||
cp likwidMetric.go likwidMetric.go.orig
|
|
||||||
sed -i -e s+"const GROUPPATH =.*"+"const GROUPPATH = \`$(GROUPS_BASE)\`"+g likwidMetric.go
|
|
||||||
|
|
||||||
cleanup:
|
|
||||||
rm -rf $(BUILD_FOLDER)
|
|
||||||
|
|
||||||
clean: cleanup
|
|
||||||
rm -rf likwid
|
rm -rf likwid
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
@ -57,7 +57,7 @@ func (m *CPUFreqCpuInfoCollector) Init(config json.RawMessage) error {
|
|||||||
const cpuInfoFile = "/proc/cpuinfo"
|
const cpuInfoFile = "/proc/cpuinfo"
|
||||||
file, err := os.Open(cpuInfoFile)
|
file, err := os.Open(cpuInfoFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Failed to open file '%s': %v", cpuInfoFile, err)
|
return fmt.Errorf("failed to open file '%s': %v", cpuInfoFile, err)
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
|
||||||
@ -106,14 +106,14 @@ func (m *CPUFreqCpuInfoCollector) Init(config json.RawMessage) error {
|
|||||||
topology.coreID = coreID
|
topology.coreID = coreID
|
||||||
topology.coreID_int, err = strconv.ParseInt(coreID, 10, 64)
|
topology.coreID_int, err = strconv.ParseInt(coreID, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to convert coreID '%s' to int64: %v", coreID, err)
|
return fmt.Errorf("unable to convert coreID '%s' to int64: %v", coreID, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Physical package ID
|
// Physical package ID
|
||||||
topology.physicalPackageID = physicalPackageID
|
topology.physicalPackageID = physicalPackageID
|
||||||
topology.physicalPackageID_int, err = strconv.ParseInt(physicalPackageID, 10, 64)
|
topology.physicalPackageID_int, err = strconv.ParseInt(physicalPackageID, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to convert physicalPackageID '%s' to int64: %v", physicalPackageID, err)
|
return fmt.Errorf("unable to convert physicalPackageID '%s' to int64: %v", physicalPackageID, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// increase maximun socket / package ID, when required
|
// increase maximun socket / package ID, when required
|
||||||
|
@ -70,10 +70,10 @@ func (m *CPUFreqCollector) Init(config json.RawMessage) error {
|
|||||||
globPattern := filepath.Join(baseDir, "cpu[0-9]*")
|
globPattern := filepath.Join(baseDir, "cpu[0-9]*")
|
||||||
cpuDirs, err := filepath.Glob(globPattern)
|
cpuDirs, err := filepath.Glob(globPattern)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to glob files with pattern '%s': %v", globPattern, err)
|
return fmt.Errorf("unable to glob files with pattern '%s': %v", globPattern, err)
|
||||||
}
|
}
|
||||||
if cpuDirs == nil {
|
if cpuDirs == nil {
|
||||||
return fmt.Errorf("Unable to find any files with pattern '%s'", globPattern)
|
return fmt.Errorf("unable to find any files with pattern '%s'", globPattern)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize CPU topology
|
// Initialize CPU topology
|
||||||
@ -82,38 +82,38 @@ func (m *CPUFreqCollector) Init(config json.RawMessage) error {
|
|||||||
processor := strings.TrimPrefix(cpuDir, "/sys/devices/system/cpu/cpu")
|
processor := strings.TrimPrefix(cpuDir, "/sys/devices/system/cpu/cpu")
|
||||||
processor_int, err := strconv.ParseInt(processor, 10, 64)
|
processor_int, err := strconv.ParseInt(processor, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to convert cpuID '%s' to int64: %v", processor, err)
|
return fmt.Errorf("unable to convert cpuID '%s' to int64: %v", processor, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read package ID
|
// Read package ID
|
||||||
physicalPackageIDFile := filepath.Join(cpuDir, "topology", "physical_package_id")
|
physicalPackageIDFile := filepath.Join(cpuDir, "topology", "physical_package_id")
|
||||||
line, err := ioutil.ReadFile(physicalPackageIDFile)
|
line, err := ioutil.ReadFile(physicalPackageIDFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to read physical package ID from file '%s': %v", physicalPackageIDFile, err)
|
return fmt.Errorf("unable to read physical package ID from file '%s': %v", physicalPackageIDFile, err)
|
||||||
}
|
}
|
||||||
physicalPackageID := strings.TrimSpace(string(line))
|
physicalPackageID := strings.TrimSpace(string(line))
|
||||||
physicalPackageID_int, err := strconv.ParseInt(physicalPackageID, 10, 64)
|
physicalPackageID_int, err := strconv.ParseInt(physicalPackageID, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to convert packageID '%s' to int64: %v", physicalPackageID, err)
|
return fmt.Errorf("unable to convert packageID '%s' to int64: %v", physicalPackageID, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read core ID
|
// Read core ID
|
||||||
coreIDFile := filepath.Join(cpuDir, "topology", "core_id")
|
coreIDFile := filepath.Join(cpuDir, "topology", "core_id")
|
||||||
line, err = ioutil.ReadFile(coreIDFile)
|
line, err = ioutil.ReadFile(coreIDFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to read core ID from file '%s': %v", coreIDFile, err)
|
return fmt.Errorf("unable to read core ID from file '%s': %v", coreIDFile, err)
|
||||||
}
|
}
|
||||||
coreID := strings.TrimSpace(string(line))
|
coreID := strings.TrimSpace(string(line))
|
||||||
coreID_int, err := strconv.ParseInt(coreID, 10, 64)
|
coreID_int, err := strconv.ParseInt(coreID, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to convert coreID '%s' to int64: %v", coreID, err)
|
return fmt.Errorf("unable to convert coreID '%s' to int64: %v", coreID, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check access to current frequency file
|
// Check access to current frequency file
|
||||||
scalingCurFreqFile := filepath.Join(cpuDir, "cpufreq", "scaling_cur_freq")
|
scalingCurFreqFile := filepath.Join(cpuDir, "cpufreq", "scaling_cur_freq")
|
||||||
err = unix.Access(scalingCurFreqFile, unix.R_OK)
|
err = unix.Access(scalingCurFreqFile, unix.R_OK)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to access file '%s': %v", scalingCurFreqFile, err)
|
return fmt.Errorf("unable to access file '%s': %v", scalingCurFreqFile, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
t := &m.topology[processor_int]
|
t := &m.topology[processor_int]
|
||||||
|
@ -25,7 +25,6 @@ type CpustatCollector struct {
|
|||||||
matches map[string]int
|
matches map[string]int
|
||||||
cputags map[string]map[string]string
|
cputags map[string]map[string]string
|
||||||
nodetags map[string]string
|
nodetags map[string]string
|
||||||
num_cpus_metric lp.CCMetric
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *CpustatCollector) Init(config json.RawMessage) error {
|
func (m *CpustatCollector) Init(config json.RawMessage) error {
|
||||||
|
@ -61,7 +61,7 @@ func (m *CustomCmdCollector) Init(config json.RawMessage) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(m.files) == 0 && len(m.commands) == 0 {
|
if len(m.files) == 0 && len(m.commands) == 0 {
|
||||||
return errors.New("No metrics to collect")
|
return errors.New("no metrics to collect")
|
||||||
}
|
}
|
||||||
m.handler = influx.NewMetricHandler()
|
m.handler = influx.NewMetricHandler()
|
||||||
m.parser = influx.NewParser(m.handler)
|
m.parser = influx.NewParser(m.handler)
|
||||||
|
@ -17,14 +17,24 @@ import (
|
|||||||
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const DEFAULT_GPFS_CMD = "mmpmon"
|
||||||
|
|
||||||
|
type GpfsCollectorLastState struct {
|
||||||
|
bytesRead int64
|
||||||
|
bytesWritten int64
|
||||||
|
}
|
||||||
|
|
||||||
type GpfsCollector struct {
|
type GpfsCollector struct {
|
||||||
metricCollector
|
metricCollector
|
||||||
tags map[string]string
|
tags map[string]string
|
||||||
config struct {
|
config struct {
|
||||||
Mmpmon string `json:"mmpmon_path,omitempty"`
|
Mmpmon string `json:"mmpmon_path,omitempty"`
|
||||||
ExcludeFilesystem []string `json:"exclude_filesystem,omitempty"`
|
ExcludeFilesystem []string `json:"exclude_filesystem,omitempty"`
|
||||||
|
SendBandwidths bool `json:"send_bandwidths"`
|
||||||
}
|
}
|
||||||
skipFS map[string]struct{}
|
skipFS map[string]struct{}
|
||||||
|
lastTimestamp time.Time // Store time stamp of last tick to derive bandwidths
|
||||||
|
lastState map[string]GpfsCollectorLastState
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *GpfsCollector) Init(config json.RawMessage) error {
|
func (m *GpfsCollector) Init(config json.RawMessage) error {
|
||||||
@ -38,7 +48,7 @@ func (m *GpfsCollector) Init(config json.RawMessage) error {
|
|||||||
m.setup()
|
m.setup()
|
||||||
|
|
||||||
// Set default mmpmon binary
|
// Set default mmpmon binary
|
||||||
m.config.Mmpmon = "/usr/lpp/mmfs/bin/mmpmon"
|
m.config.Mmpmon = DEFAULT_GPFS_CMD
|
||||||
|
|
||||||
// Read JSON configuration
|
// Read JSON configuration
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
@ -64,17 +74,18 @@ func (m *GpfsCollector) Init(config json.RawMessage) error {
|
|||||||
// GPFS / IBM Spectrum Scale file system statistics can only be queried by user root
|
// GPFS / IBM Spectrum Scale file system statistics can only be queried by user root
|
||||||
user, err := user.Current()
|
user, err := user.Current()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Failed to get current user: %v", err)
|
return fmt.Errorf("failed to get current user: %v", err)
|
||||||
}
|
}
|
||||||
if user.Uid != "0" {
|
if user.Uid != "0" {
|
||||||
return fmt.Errorf("GPFS file system statistics can only be queried by user root")
|
return fmt.Errorf("GPFS file system statistics can only be queried by user root")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if mmpmon is in executable search path
|
// Check if mmpmon is in executable search path
|
||||||
_, err = exec.LookPath(m.config.Mmpmon)
|
p, err := exec.LookPath(m.config.Mmpmon)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Failed to find mmpmon binary '%s': %v", m.config.Mmpmon, err)
|
return fmt.Errorf("failed to find mmpmon binary '%s': %v", m.config.Mmpmon, err)
|
||||||
}
|
}
|
||||||
|
m.config.Mmpmon = p
|
||||||
|
|
||||||
m.init = true
|
m.init = true
|
||||||
return nil
|
return nil
|
||||||
@ -86,6 +97,13 @@ func (m *GpfsCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Current time stamp
|
||||||
|
now := time.Now()
|
||||||
|
// time difference to last time stamp
|
||||||
|
timeDiff := now.Sub(m.lastTimestamp).Seconds()
|
||||||
|
// Save current timestamp
|
||||||
|
m.lastTimestamp = now
|
||||||
|
|
||||||
// mmpmon:
|
// mmpmon:
|
||||||
// -p: generate output that can be parsed
|
// -p: generate output that can be parsed
|
||||||
// -s: suppress the prompt on input
|
// -s: suppress the prompt on input
|
||||||
@ -145,6 +163,12 @@ func (m *GpfsCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
m.tags["filesystem"] = filesystem
|
m.tags["filesystem"] = filesystem
|
||||||
|
if _, ok := m.lastState[filesystem]; !ok {
|
||||||
|
m.lastState[filesystem] = GpfsCollectorLastState{
|
||||||
|
bytesRead: -1,
|
||||||
|
bytesWritten: -1,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// return code
|
// return code
|
||||||
rc, err := strconv.Atoi(key_value["_rc_"])
|
rc, err := strconv.Atoi(key_value["_rc_"])
|
||||||
@ -188,6 +212,14 @@ func (m *GpfsCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
|||||||
if y, err := lp.New("gpfs_bytes_read", m.tags, m.meta, map[string]interface{}{"value": bytesRead}, timestamp); err == nil {
|
if y, err := lp.New("gpfs_bytes_read", m.tags, m.meta, map[string]interface{}{"value": bytesRead}, timestamp); err == nil {
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
|
if m.config.SendBandwidths {
|
||||||
|
if lastBytesRead := m.lastState[filesystem].bytesRead; lastBytesRead >= 0 {
|
||||||
|
bwRead := float64(bytesRead-lastBytesRead) / timeDiff
|
||||||
|
if y, err := lp.New("gpfs_bw_read", m.tags, m.meta, map[string]interface{}{"value": bwRead}, timestamp); err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// bytes written
|
// bytes written
|
||||||
bytesWritten, err := strconv.ParseInt(key_value["_bw_"], 10, 64)
|
bytesWritten, err := strconv.ParseInt(key_value["_bw_"], 10, 64)
|
||||||
@ -200,6 +232,21 @@ func (m *GpfsCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
|||||||
if y, err := lp.New("gpfs_bytes_written", m.tags, m.meta, map[string]interface{}{"value": bytesWritten}, timestamp); err == nil {
|
if y, err := lp.New("gpfs_bytes_written", m.tags, m.meta, map[string]interface{}{"value": bytesWritten}, timestamp); err == nil {
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
|
if m.config.SendBandwidths {
|
||||||
|
if lastBytesWritten := m.lastState[filesystem].bytesRead; lastBytesWritten >= 0 {
|
||||||
|
bwWrite := float64(bytesWritten-lastBytesWritten) / timeDiff
|
||||||
|
if y, err := lp.New("gpfs_bw_write", m.tags, m.meta, map[string]interface{}{"value": bwWrite}, timestamp); err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if m.config.SendBandwidths {
|
||||||
|
m.lastState[filesystem] = GpfsCollectorLastState{
|
||||||
|
bytesRead: bytesRead,
|
||||||
|
bytesWritten: bytesWritten,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// number of opens
|
// number of opens
|
||||||
numOpens, err := strconv.ParseInt(key_value["_oc_"], 10, 64)
|
numOpens, err := strconv.ParseInt(key_value["_oc_"], 10, 64)
|
||||||
|
@ -5,7 +5,8 @@
|
|||||||
"mmpmon_path": "/path/to/mmpmon",
|
"mmpmon_path": "/path/to/mmpmon",
|
||||||
"exclude_filesystem": [
|
"exclude_filesystem": [
|
||||||
"fs1"
|
"fs1"
|
||||||
]
|
],
|
||||||
|
"send_bandwidths" : true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -16,15 +17,18 @@ The reported filesystems can be filtered with the `exclude_filesystem` option
|
|||||||
in the configuration.
|
in the configuration.
|
||||||
|
|
||||||
The path to the `mmpmon` command can be configured with the `mmpmon_path` option
|
The path to the `mmpmon` command can be configured with the `mmpmon_path` option
|
||||||
in the configuration.
|
in the configuration. If nothing is set, the collector searches in `$PATH` for `mmpmon`.
|
||||||
|
|
||||||
|
|
||||||
Metrics:
|
Metrics:
|
||||||
* `bytes_read`
|
* `gpfs_bytes_read`
|
||||||
* `gpfs_bytes_written`
|
* `gpfs_bytes_written`
|
||||||
* `gpfs_num_opens`
|
* `gpfs_num_opens`
|
||||||
* `gpfs_num_closes`
|
* `gpfs_num_closes`
|
||||||
* `gpfs_num_reads`
|
* `gpfs_num_reads`
|
||||||
* `gpfs_num_readdirs`
|
* `gpfs_num_readdirs`
|
||||||
* `gpfs_num_inode_updates`
|
* `gpfs_num_inode_updates`
|
||||||
|
* `gpfs_bw_read` (if `send_bandwidths == true`)
|
||||||
|
* `gpfs_bw_write` (if `send_bandwidths == true`)
|
||||||
|
|
||||||
The collector adds a `filesystem` tag to all metrics
|
The collector adds a `filesystem` tag to all metrics
|
||||||
|
@ -16,7 +16,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
const IB_BASEPATH = `/sys/class/infiniband/`
|
const IB_BASEPATH = "/sys/class/infiniband/"
|
||||||
|
|
||||||
type InfinibandCollectorInfo struct {
|
type InfinibandCollectorInfo struct {
|
||||||
LID string // IB local Identifier (LID)
|
LID string // IB local Identifier (LID)
|
||||||
@ -24,14 +24,18 @@ type InfinibandCollectorInfo struct {
|
|||||||
port string // IB device port
|
port string // IB device port
|
||||||
portCounterFiles map[string]string // mapping counter name -> sysfs file
|
portCounterFiles map[string]string // mapping counter name -> sysfs file
|
||||||
tagSet map[string]string // corresponding tag list
|
tagSet map[string]string // corresponding tag list
|
||||||
|
lastState map[string]int64 // State from last measurement
|
||||||
}
|
}
|
||||||
|
|
||||||
type InfinibandCollector struct {
|
type InfinibandCollector struct {
|
||||||
metricCollector
|
metricCollector
|
||||||
config struct {
|
config struct {
|
||||||
ExcludeDevices []string `json:"exclude_devices,omitempty"` // IB device to exclude e.g. mlx5_0
|
ExcludeDevices []string `json:"exclude_devices,omitempty"` // IB device to exclude e.g. mlx5_0
|
||||||
|
SendAbsoluteValues bool `json:"send_abs_values"` // Send absolut values as read from sys filesystem
|
||||||
|
SendDerivedValues bool `json:"send_derived_values"` // Send derived values e.g. rates
|
||||||
}
|
}
|
||||||
info []*InfinibandCollectorInfo
|
info []*InfinibandCollectorInfo
|
||||||
|
lastTimestamp time.Time // Store time stamp of last tick to derive bandwidths
|
||||||
}
|
}
|
||||||
|
|
||||||
// Init initializes the Infiniband collector by walking through files below IB_BASEPATH
|
// Init initializes the Infiniband collector by walking through files below IB_BASEPATH
|
||||||
@ -49,6 +53,11 @@ func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
|||||||
"source": m.name,
|
"source": m.name,
|
||||||
"group": "Network",
|
"group": "Network",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set default configuration,
|
||||||
|
m.config.SendAbsoluteValues = true
|
||||||
|
m.config.SendDerivedValues = false
|
||||||
|
// Read configuration file, allow overwriting default config
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err = json.Unmarshal(config, &m.config)
|
err = json.Unmarshal(config, &m.config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -60,10 +69,10 @@ func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
|||||||
globPattern := filepath.Join(IB_BASEPATH, "*", "ports", "*")
|
globPattern := filepath.Join(IB_BASEPATH, "*", "ports", "*")
|
||||||
ibDirs, err := filepath.Glob(globPattern)
|
ibDirs, err := filepath.Glob(globPattern)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to glob files with pattern %s: %v", globPattern, err)
|
return fmt.Errorf("unable to glob files with pattern %s: %v", globPattern, err)
|
||||||
}
|
}
|
||||||
if ibDirs == nil {
|
if ibDirs == nil {
|
||||||
return fmt.Errorf("Unable to find any directories with pattern %s", globPattern)
|
return fmt.Errorf("unable to find any directories with pattern %s", globPattern)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, path := range ibDirs {
|
for _, path := range ibDirs {
|
||||||
@ -106,10 +115,16 @@ func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
|||||||
for _, counterFile := range portCounterFiles {
|
for _, counterFile := range portCounterFiles {
|
||||||
err := unix.Access(counterFile, unix.R_OK)
|
err := unix.Access(counterFile, unix.R_OK)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to access %s: %v", counterFile, err)
|
return fmt.Errorf("unable to access %s: %v", counterFile, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Initialize last state
|
||||||
|
lastState := make(map[string]int64)
|
||||||
|
for counter := range portCounterFiles {
|
||||||
|
lastState[counter] = -1
|
||||||
|
}
|
||||||
|
|
||||||
m.info = append(m.info,
|
m.info = append(m.info,
|
||||||
&InfinibandCollectorInfo{
|
&InfinibandCollectorInfo{
|
||||||
LID: LID,
|
LID: LID,
|
||||||
@ -122,11 +137,12 @@ func (m *InfinibandCollector) Init(config json.RawMessage) error {
|
|||||||
"port": port,
|
"port": port,
|
||||||
"lid": LID,
|
"lid": LID,
|
||||||
},
|
},
|
||||||
|
lastState: lastState,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(m.info) == 0 {
|
if len(m.info) == 0 {
|
||||||
return fmt.Errorf("Found no IB devices")
|
return fmt.Errorf("found no IB devices")
|
||||||
}
|
}
|
||||||
|
|
||||||
m.init = true
|
m.init = true
|
||||||
@ -141,9 +157,17 @@ func (m *InfinibandCollector) Read(interval time.Duration, output chan lp.CCMetr
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Current time stamp
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
|
// time difference to last time stamp
|
||||||
|
timeDiff := now.Sub(m.lastTimestamp).Seconds()
|
||||||
|
// Save current timestamp
|
||||||
|
m.lastTimestamp = now
|
||||||
|
|
||||||
for _, info := range m.info {
|
for _, info := range m.info {
|
||||||
for counterName, counterFile := range info.portCounterFiles {
|
for counterName, counterFile := range info.portCounterFiles {
|
||||||
|
|
||||||
|
// Read counter file
|
||||||
line, err := ioutil.ReadFile(counterFile)
|
line, err := ioutil.ReadFile(counterFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(
|
cclog.ComponentError(
|
||||||
@ -152,6 +176,8 @@ func (m *InfinibandCollector) Read(interval time.Duration, output chan lp.CCMetr
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
data := strings.TrimSpace(string(line))
|
data := strings.TrimSpace(string(line))
|
||||||
|
|
||||||
|
// convert counter to int64
|
||||||
v, err := strconv.ParseInt(data, 10, 64)
|
v, err := strconv.ParseInt(data, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(
|
cclog.ComponentError(
|
||||||
@ -159,11 +185,27 @@ func (m *InfinibandCollector) Read(interval time.Duration, output chan lp.CCMetr
|
|||||||
fmt.Sprintf("Read(): Failed to convert Infininiband metrice %s='%s' to int64: %v", counterName, data, err))
|
fmt.Sprintf("Read(): Failed to convert Infininiband metrice %s='%s' to int64: %v", counterName, data, err))
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Send absolut values
|
||||||
|
if m.config.SendAbsoluteValues {
|
||||||
if y, err := lp.New(counterName, info.tagSet, m.meta, map[string]interface{}{"value": v}, now); err == nil {
|
if y, err := lp.New(counterName, info.tagSet, m.meta, map[string]interface{}{"value": v}, now); err == nil {
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Send derived values
|
||||||
|
if m.config.SendDerivedValues {
|
||||||
|
if info.lastState[counterName] >= 0 {
|
||||||
|
rate := float64((v - info.lastState[counterName])) / timeDiff
|
||||||
|
if y, err := lp.New(counterName+"_bw", info.tagSet, m.meta, map[string]interface{}{"value": rate}, now); err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Save current state
|
||||||
|
info.lastState[counterName] = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,9 @@
|
|||||||
"ibstat": {
|
"ibstat": {
|
||||||
"exclude_devices": [
|
"exclude_devices": [
|
||||||
"mlx4"
|
"mlx4"
|
||||||
]
|
],
|
||||||
|
"send_abs_values": true,
|
||||||
|
"send_derived_values": true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -22,5 +24,9 @@ Metrics:
|
|||||||
* `ib_xmit`
|
* `ib_xmit`
|
||||||
* `ib_recv_pkts`
|
* `ib_recv_pkts`
|
||||||
* `ib_xmit_pkts`
|
* `ib_xmit_pkts`
|
||||||
|
* `ib_recv_bw` (if `send_derived_values == true`)
|
||||||
|
* `ib_xmit_bw` (if `send_derived_values == true`)
|
||||||
|
* `ib_recv_pkts_bw` (if `send_derived_values == true`)
|
||||||
|
* `ib_xmit_pkts_bw` (if `send_derived_values == true`)
|
||||||
|
|
||||||
The collector adds a `device` tag to all metrics
|
The collector adds a `device` tag to all metrics
|
||||||
|
@ -54,7 +54,7 @@ func (m *IpmiCollector) Init(config json.RawMessage) error {
|
|||||||
m.ipmisensors = p
|
m.ipmisensors = p
|
||||||
}
|
}
|
||||||
if len(m.ipmitool) == 0 && len(m.ipmisensors) == 0 {
|
if len(m.ipmitool) == 0 && len(m.ipmisensors) == 0 {
|
||||||
return errors.New("No IPMI reader found")
|
return errors.New("no IPMI reader found")
|
||||||
}
|
}
|
||||||
m.init = true
|
m.init = true
|
||||||
return nil
|
return nil
|
||||||
|
@ -15,7 +15,6 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"math"
|
"math"
|
||||||
"os"
|
"os"
|
||||||
"regexp"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
@ -28,48 +27,6 @@ import (
|
|||||||
"github.com/NVIDIA/go-nvml/pkg/dl"
|
"github.com/NVIDIA/go-nvml/pkg/dl"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MetricScope string
|
|
||||||
|
|
||||||
const (
|
|
||||||
METRIC_SCOPE_HWTHREAD = iota
|
|
||||||
METRIC_SCOPE_CORE
|
|
||||||
METRIC_SCOPE_LLC
|
|
||||||
METRIC_SCOPE_NUMA
|
|
||||||
METRIC_SCOPE_DIE
|
|
||||||
METRIC_SCOPE_SOCKET
|
|
||||||
METRIC_SCOPE_NODE
|
|
||||||
)
|
|
||||||
|
|
||||||
func (ms MetricScope) String() string {
|
|
||||||
return string(ms)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ms MetricScope) Likwid() string {
|
|
||||||
LikwidDomains := map[string]string{
|
|
||||||
"cpu": "",
|
|
||||||
"core": "",
|
|
||||||
"llc": "C",
|
|
||||||
"numadomain": "M",
|
|
||||||
"die": "D",
|
|
||||||
"socket": "S",
|
|
||||||
"node": "N",
|
|
||||||
}
|
|
||||||
return LikwidDomains[string(ms)]
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ms MetricScope) Granularity() int {
|
|
||||||
for i, g := range GetAllMetricScopes() {
|
|
||||||
if ms == g {
|
|
||||||
return i
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetAllMetricScopes() []MetricScope {
|
|
||||||
return []MetricScope{"cpu" /*, "core", "llc", "numadomain", "die",*/, "socket", "node"}
|
|
||||||
}
|
|
||||||
|
|
||||||
const (
|
const (
|
||||||
LIKWID_LIB_NAME = "liblikwid.so"
|
LIKWID_LIB_NAME = "liblikwid.so"
|
||||||
LIKWID_LIB_DL_FLAGS = dl.RTLD_LAZY | dl.RTLD_GLOBAL
|
LIKWID_LIB_DL_FLAGS = dl.RTLD_LAZY | dl.RTLD_GLOBAL
|
||||||
@ -79,15 +36,13 @@ const (
|
|||||||
type LikwidCollectorMetricConfig struct {
|
type LikwidCollectorMetricConfig struct {
|
||||||
Name string `json:"name"` // Name of the metric
|
Name string `json:"name"` // Name of the metric
|
||||||
Calc string `json:"calc"` // Calculation for the metric using
|
Calc string `json:"calc"` // Calculation for the metric using
|
||||||
//Aggr string `json:"aggregation"` // if scope unequal to LIKWID metric scope, the values are combined (sum, min, max, mean or avg, median)
|
Type string `json:"type"` // Metric type (aka node, socket, cpu, ...)
|
||||||
Scope MetricScope `json:"scope"` // scope for calculation. subscopes are aggregated using the 'aggregation' function
|
|
||||||
Publish bool `json:"publish"`
|
Publish bool `json:"publish"`
|
||||||
granulatity MetricScope
|
Unit string `json:"unit"` // Unit of metric if any
|
||||||
}
|
}
|
||||||
|
|
||||||
type LikwidCollectorEventsetConfig struct {
|
type LikwidCollectorEventsetConfig struct {
|
||||||
Events map[string]string `json:"events"`
|
Events map[string]string `json:"events"`
|
||||||
granulatity map[string]MetricScope
|
|
||||||
Metrics []LikwidCollectorMetricConfig `json:"metrics"`
|
Metrics []LikwidCollectorMetricConfig `json:"metrics"`
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -98,6 +53,7 @@ type LikwidCollectorConfig struct {
|
|||||||
InvalidToZero bool `json:"invalid_to_zero,omitempty"`
|
InvalidToZero bool `json:"invalid_to_zero,omitempty"`
|
||||||
AccessMode string `json:"access_mode,omitempty"`
|
AccessMode string `json:"access_mode,omitempty"`
|
||||||
DaemonPath string `json:"accessdaemon_path,omitempty"`
|
DaemonPath string `json:"accessdaemon_path,omitempty"`
|
||||||
|
LibraryPath string `json:"liblikwid_path,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type LikwidCollector struct {
|
type LikwidCollector struct {
|
||||||
@ -105,7 +61,6 @@ type LikwidCollector struct {
|
|||||||
cpulist []C.int
|
cpulist []C.int
|
||||||
cpu2tid map[int]int
|
cpu2tid map[int]int
|
||||||
sock2tid map[int]int
|
sock2tid map[int]int
|
||||||
scopeRespTids map[MetricScope]map[int]int
|
|
||||||
metrics map[C.int]map[string]int
|
metrics map[C.int]map[string]int
|
||||||
groups []C.int
|
groups []C.int
|
||||||
config LikwidCollectorConfig
|
config LikwidCollectorConfig
|
||||||
@ -119,7 +74,7 @@ type LikwidCollector struct {
|
|||||||
type LikwidMetric struct {
|
type LikwidMetric struct {
|
||||||
name string
|
name string
|
||||||
search string
|
search string
|
||||||
scope MetricScope
|
scope string
|
||||||
group_idx int
|
group_idx int
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -131,152 +86,43 @@ func eventsToEventStr(events map[string]string) string {
|
|||||||
return strings.Join(elist, ",")
|
return strings.Join(elist, ",")
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGranularity(counter, event string) MetricScope {
|
|
||||||
if strings.HasPrefix(counter, "PMC") || strings.HasPrefix(counter, "FIXC") {
|
|
||||||
return "cpu"
|
|
||||||
} else if strings.Contains(counter, "BOX") || strings.Contains(counter, "DEV") {
|
|
||||||
return "socket"
|
|
||||||
} else if strings.HasPrefix(counter, "PWR") {
|
|
||||||
if event == "RAPL_CORE_ENERGY" {
|
|
||||||
return "cpu"
|
|
||||||
} else {
|
|
||||||
return "socket"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return "unknown"
|
|
||||||
}
|
|
||||||
|
|
||||||
func getBaseFreq() float64 {
|
func getBaseFreq() float64 {
|
||||||
var freq float64 = math.NaN()
|
var freq float64 = math.NaN()
|
||||||
C.power_init(0)
|
C.power_init(0)
|
||||||
info := C.get_powerInfo()
|
info := C.get_powerInfo()
|
||||||
if float64(info.baseFrequency) != 0 {
|
if float64(info.baseFrequency) != 0 {
|
||||||
freq = float64(info.baseFrequency) * 1e3
|
freq = float64(info.baseFrequency) * 1e6
|
||||||
} else {
|
} else {
|
||||||
buffer, err := ioutil.ReadFile("/sys/devices/system/cpu/cpu0/cpufreq/bios_limit")
|
buffer, err := ioutil.ReadFile("/sys/devices/system/cpu/cpu0/cpufreq/bios_limit")
|
||||||
if err == nil {
|
if err == nil {
|
||||||
data := strings.Replace(string(buffer), "\n", "", -1)
|
data := strings.Replace(string(buffer), "\n", "", -1)
|
||||||
x, err := strconv.ParseInt(data, 0, 64)
|
x, err := strconv.ParseInt(data, 0, 64)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
freq = float64(x) * 1e3
|
freq = float64(x) * 1e6
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return freq
|
return freq
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *LikwidCollector) initGranularity() {
|
|
||||||
splitRegex := regexp.MustCompile("[+-/*()]")
|
|
||||||
for _, evset := range m.config.Eventsets {
|
|
||||||
evset.granulatity = make(map[string]MetricScope)
|
|
||||||
for counter, event := range evset.Events {
|
|
||||||
gran := getGranularity(counter, event)
|
|
||||||
if gran.Granularity() >= 0 {
|
|
||||||
evset.granulatity[counter] = gran
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for i, metric := range evset.Metrics {
|
|
||||||
s := splitRegex.Split(metric.Calc, -1)
|
|
||||||
gran := MetricScope("cpu")
|
|
||||||
evset.Metrics[i].granulatity = gran
|
|
||||||
for _, x := range s {
|
|
||||||
if _, ok := evset.Events[x]; ok {
|
|
||||||
if evset.granulatity[x].Granularity() > gran.Granularity() {
|
|
||||||
gran = evset.granulatity[x]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
evset.Metrics[i].granulatity = gran
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for i, metric := range m.config.Metrics {
|
|
||||||
s := splitRegex.Split(metric.Calc, -1)
|
|
||||||
gran := MetricScope("cpu")
|
|
||||||
m.config.Metrics[i].granulatity = gran
|
|
||||||
for _, x := range s {
|
|
||||||
for _, evset := range m.config.Eventsets {
|
|
||||||
for _, m := range evset.Metrics {
|
|
||||||
if m.Name == x && m.granulatity.Granularity() > gran.Granularity() {
|
|
||||||
gran = m.granulatity
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
m.config.Metrics[i].granulatity = gran
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
type TopoResolveFunc func(cpuid int) int
|
|
||||||
|
|
||||||
func (m *LikwidCollector) getResponsiblities() map[MetricScope]map[int]int {
|
|
||||||
get_cpus := func(scope MetricScope) map[int]int {
|
|
||||||
var slist []int
|
|
||||||
var cpu C.int
|
|
||||||
var input func(index int) string
|
|
||||||
switch scope {
|
|
||||||
case "node":
|
|
||||||
slist = []int{0}
|
|
||||||
input = func(index int) string { return "N:0" }
|
|
||||||
case "socket":
|
|
||||||
input = func(index int) string { return fmt.Sprintf("%s%d:0", scope.Likwid(), index) }
|
|
||||||
slist = topo.SocketList()
|
|
||||||
// case "numadomain":
|
|
||||||
// input = func(index int) string { return fmt.Sprintf("%s%d:0", scope.Likwid(), index) }
|
|
||||||
// slist = topo.NumaNodeList()
|
|
||||||
// cclog.Debug(scope, " ", input(0), " ", slist)
|
|
||||||
// case "die":
|
|
||||||
// input = func(index int) string { return fmt.Sprintf("%s%d:0", scope.Likwid(), index) }
|
|
||||||
// slist = topo.DieList()
|
|
||||||
// case "llc":
|
|
||||||
// input = fmt.Sprintf("%s%d:0", scope.Likwid(), s)
|
|
||||||
// slist = topo.LLCacheList()
|
|
||||||
case "cpu":
|
|
||||||
input = func(index int) string { return fmt.Sprintf("%d", index) }
|
|
||||||
slist = topo.CpuList()
|
|
||||||
case "hwthread":
|
|
||||||
input = func(index int) string { return fmt.Sprintf("%d", index) }
|
|
||||||
slist = topo.CpuList()
|
|
||||||
}
|
|
||||||
outmap := make(map[int]int)
|
|
||||||
for _, s := range slist {
|
|
||||||
t := C.CString(input(s))
|
|
||||||
clen := C.cpustr_to_cpulist(t, &cpu, 1)
|
|
||||||
if int(clen) == 1 {
|
|
||||||
outmap[s] = m.cpu2tid[int(cpu)]
|
|
||||||
} else {
|
|
||||||
cclog.Error(fmt.Sprintf("Cannot determine responsible CPU for %s", input(s)))
|
|
||||||
outmap[s] = -1
|
|
||||||
}
|
|
||||||
C.free(unsafe.Pointer(t))
|
|
||||||
}
|
|
||||||
return outmap
|
|
||||||
}
|
|
||||||
|
|
||||||
scopes := GetAllMetricScopes()
|
|
||||||
complete := make(map[MetricScope]map[int]int)
|
|
||||||
for _, s := range scopes {
|
|
||||||
complete[s] = get_cpus(s)
|
|
||||||
}
|
|
||||||
return complete
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *LikwidCollector) Init(config json.RawMessage) error {
|
func (m *LikwidCollector) Init(config json.RawMessage) error {
|
||||||
var ret C.int
|
var ret C.int
|
||||||
m.name = "LikwidCollector"
|
m.name = "LikwidCollector"
|
||||||
m.config.AccessMode = LIKWID_DEF_ACCESSMODE
|
m.config.AccessMode = LIKWID_DEF_ACCESSMODE
|
||||||
|
m.config.LibraryPath = LIKWID_LIB_NAME
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &m.config)
|
err := json.Unmarshal(config, &m.config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
lib := dl.New(LIKWID_LIB_NAME, LIKWID_LIB_DL_FLAGS)
|
lib := dl.New(m.config.LibraryPath, LIKWID_LIB_DL_FLAGS)
|
||||||
if lib == nil {
|
if lib == nil {
|
||||||
return fmt.Errorf("error instantiating DynamicLibrary for %s", LIKWID_LIB_NAME)
|
return fmt.Errorf("error instantiating DynamicLibrary for %s", m.config.LibraryPath)
|
||||||
}
|
}
|
||||||
err := lib.Open()
|
err := lib.Open()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("error opening %s: %v", LIKWID_LIB_NAME, err)
|
return fmt.Errorf("error opening %s: %v", m.config.LibraryPath, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if m.config.ForceOverwrite {
|
if m.config.ForceOverwrite {
|
||||||
@ -306,10 +152,6 @@ func (m *LikwidCollector) Init(config json.RawMessage) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determine which counter works at which level. PMC*: cpu, *BOX*: socket, ...
|
|
||||||
m.initGranularity()
|
|
||||||
// Generate map for MetricScope -> scope_id (like socket id) -> responsible id (offset in cpulist)
|
|
||||||
m.scopeRespTids = m.getResponsiblities()
|
|
||||||
switch m.config.AccessMode {
|
switch m.config.AccessMode {
|
||||||
case "direct":
|
case "direct":
|
||||||
C.HPMmode(0)
|
C.HPMmode(0)
|
||||||
@ -336,6 +178,9 @@ func (m *LikwidCollector) Init(config json.RawMessage) error {
|
|||||||
globalParams["inverseClock"] = float64(1.0)
|
globalParams["inverseClock"] = float64(1.0)
|
||||||
// While adding the events, we test the metrics whether they can be computed at all
|
// While adding the events, we test the metrics whether they can be computed at all
|
||||||
for i, evset := range m.config.Eventsets {
|
for i, evset := range m.config.Eventsets {
|
||||||
|
var gid C.int
|
||||||
|
var cstr *C.char
|
||||||
|
if len(evset.Events) > 0 {
|
||||||
estr := eventsToEventStr(evset.Events)
|
estr := eventsToEventStr(evset.Events)
|
||||||
// Generate parameter list for the metric computing test
|
// Generate parameter list for the metric computing test
|
||||||
params := make(map[string]interface{})
|
params := make(map[string]interface{})
|
||||||
@ -357,8 +202,12 @@ func (m *LikwidCollector) Init(config json.RawMessage) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Now we add the list of events to likwid
|
// Now we add the list of events to likwid
|
||||||
cstr := C.CString(estr)
|
cstr = C.CString(estr)
|
||||||
gid := C.perfmon_addEventSet(cstr)
|
gid = C.perfmon_addEventSet(cstr)
|
||||||
|
} else {
|
||||||
|
cclog.ComponentError(m.name, "Invalid Likwid eventset config, no events given")
|
||||||
|
continue
|
||||||
|
}
|
||||||
if gid >= 0 {
|
if gid >= 0 {
|
||||||
m.groups = append(m.groups, gid)
|
m.groups = append(m.groups, gid)
|
||||||
}
|
}
|
||||||
@ -434,15 +283,9 @@ func (m *LikwidCollector) calcEventsetMetrics(group int, interval time.Duration,
|
|||||||
// Go over events and get the results
|
// Go over events and get the results
|
||||||
for eidx = 0; int(eidx) < len(evset.Events); eidx++ {
|
for eidx = 0; int(eidx) < len(evset.Events); eidx++ {
|
||||||
ctr := C.perfmon_getCounterName(gid, eidx)
|
ctr := C.perfmon_getCounterName(gid, eidx)
|
||||||
ev := C.perfmon_getEventName(gid, eidx)
|
|
||||||
gctr := C.GoString(ctr)
|
gctr := C.GoString(ctr)
|
||||||
gev := C.GoString(ev)
|
|
||||||
// MetricScope for the counter (and if needed the event)
|
for _, tid := range m.cpu2tid {
|
||||||
scope := getGranularity(gctr, gev)
|
|
||||||
// Get the map scope-id -> tids
|
|
||||||
// This way we read less counters like only the responsible hardware thread for a socket
|
|
||||||
scopemap := m.scopeRespTids[scope]
|
|
||||||
for _, tid := range scopemap {
|
|
||||||
if tid >= 0 {
|
if tid >= 0 {
|
||||||
m.results[group][tid]["time"] = interval.Seconds()
|
m.results[group][tid]["time"] = interval.Seconds()
|
||||||
m.results[group][tid]["inverseClock"] = invClock
|
m.results[group][tid]["inverseClock"] = invClock
|
||||||
@ -456,7 +299,10 @@ func (m *LikwidCollector) calcEventsetMetrics(group int, interval time.Duration,
|
|||||||
for _, metric := range evset.Metrics {
|
for _, metric := range evset.Metrics {
|
||||||
// The metric scope is determined in the Init() function
|
// The metric scope is determined in the Init() function
|
||||||
// Get the map scope-id -> tids
|
// Get the map scope-id -> tids
|
||||||
scopemap := m.scopeRespTids[metric.Scope]
|
scopemap := m.cpu2tid
|
||||||
|
if metric.Type == "socket" {
|
||||||
|
scopemap = m.sock2tid
|
||||||
|
}
|
||||||
for domain, tid := range scopemap {
|
for domain, tid := range scopemap {
|
||||||
if tid >= 0 {
|
if tid >= 0 {
|
||||||
value, err := agg.EvalFloat64Condition(metric.Calc, m.results[group][tid])
|
value, err := agg.EvalFloat64Condition(metric.Calc, m.results[group][tid])
|
||||||
@ -474,13 +320,15 @@ func (m *LikwidCollector) calcEventsetMetrics(group int, interval time.Duration,
|
|||||||
// Now we have the result, send it with the proper tags
|
// Now we have the result, send it with the proper tags
|
||||||
if !math.IsNaN(value) {
|
if !math.IsNaN(value) {
|
||||||
if metric.Publish {
|
if metric.Publish {
|
||||||
tags := map[string]string{"type": metric.Scope.String()}
|
|
||||||
if metric.Scope != "node" {
|
|
||||||
tags["type-id"] = fmt.Sprintf("%d", domain)
|
|
||||||
}
|
|
||||||
fields := map[string]interface{}{"value": value}
|
fields := map[string]interface{}{"value": value}
|
||||||
y, err := lp.New(metric.Name, tags, m.meta, fields, time.Now())
|
y, err := lp.New(metric.Name, map[string]string{"type": metric.Type}, m.meta, fields, time.Now())
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
if metric.Type != "node" {
|
||||||
|
y.AddTag("type-id", fmt.Sprintf("%d", domain))
|
||||||
|
}
|
||||||
|
if len(metric.Unit) > 0 {
|
||||||
|
y.AddMeta("unit", metric.Unit)
|
||||||
|
}
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -495,7 +343,10 @@ func (m *LikwidCollector) calcEventsetMetrics(group int, interval time.Duration,
|
|||||||
// Go over the global metrics, derive the value out of the event sets' metric values and send it
|
// Go over the global metrics, derive the value out of the event sets' metric values and send it
|
||||||
func (m *LikwidCollector) calcGlobalMetrics(interval time.Duration, output chan lp.CCMetric) error {
|
func (m *LikwidCollector) calcGlobalMetrics(interval time.Duration, output chan lp.CCMetric) error {
|
||||||
for _, metric := range m.config.Metrics {
|
for _, metric := range m.config.Metrics {
|
||||||
scopemap := m.scopeRespTids[metric.Scope]
|
scopemap := m.cpu2tid
|
||||||
|
if metric.Type == "socket" {
|
||||||
|
scopemap = m.sock2tid
|
||||||
|
}
|
||||||
for domain, tid := range scopemap {
|
for domain, tid := range scopemap {
|
||||||
if tid >= 0 {
|
if tid >= 0 {
|
||||||
// Here we generate parameter list
|
// Here we generate parameter list
|
||||||
@ -521,13 +372,16 @@ func (m *LikwidCollector) calcGlobalMetrics(interval time.Duration, output chan
|
|||||||
// Now we have the result, send it with the proper tags
|
// Now we have the result, send it with the proper tags
|
||||||
if !math.IsNaN(value) {
|
if !math.IsNaN(value) {
|
||||||
if metric.Publish {
|
if metric.Publish {
|
||||||
tags := map[string]string{"type": metric.Scope.String()}
|
tags := map[string]string{"type": metric.Type}
|
||||||
if metric.Scope != "node" {
|
|
||||||
tags["type-id"] = fmt.Sprintf("%d", domain)
|
|
||||||
}
|
|
||||||
fields := map[string]interface{}{"value": value}
|
fields := map[string]interface{}{"value": value}
|
||||||
y, err := lp.New(metric.Name, tags, m.meta, fields, time.Now())
|
y, err := lp.New(metric.Name, tags, m.meta, fields, time.Now())
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
if metric.Type != "node" {
|
||||||
|
y.AddTag("type-id", fmt.Sprintf("%d", domain))
|
||||||
|
}
|
||||||
|
if len(metric.Unit) > 0 {
|
||||||
|
y.AddMeta("unit", metric.Unit)
|
||||||
|
}
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,14 +4,17 @@
|
|||||||
The `likwid` collector is probably the most complicated collector. The LIKWID library is included as static library with *direct* access mode. The *direct* access mode is suitable if the daemon is executed by a root user. The static library does not contain the performance groups, so all information needs to be provided in the configuration.
|
The `likwid` collector is probably the most complicated collector. The LIKWID library is included as static library with *direct* access mode. The *direct* access mode is suitable if the daemon is executed by a root user. The static library does not contain the performance groups, so all information needs to be provided in the configuration.
|
||||||
|
|
||||||
The `likwid` configuration consists of two parts, the "eventsets" and "globalmetrics":
|
The `likwid` configuration consists of two parts, the "eventsets" and "globalmetrics":
|
||||||
- An event set list itself has two parts, the "events" and a set of derivable "metrics". Each of the "events" is a counter:event pair in LIKWID's syntax. The "metrics" are a list of formulas to derive the metric value from the measurements of the "events". Each metric has a name, the formula, a scope and a publish flag. Counter names can be used like variables in the formulas, so `PMC0+PMC1` sums the measurements for the both events configured in the counters `PMC0` and `PMC1`. The scope tells the Collector whether it is a metric for each hardware thread (`cpu`) or each CPU socket (`socket`). The last one is the publishing flag. It tells the collector whether a metric should be sent to the router.
|
- An event set list itself has two parts, the "events" and a set of derivable "metrics". Each of the "events" is a counter:event pair in LIKWID's syntax. The "metrics" are a list of formulas to derive the metric value from the measurements of the "events". Each metric has a name, the formula, a scope and a publish flag. Counter names can be used like variables in the formulas, so `PMC0+PMC1` sums the measurements for the both events configured in the counters `PMC0` and `PMC1`. The scope tells the Collector whether it is a metric for each hardware thread (`cpu`) or each CPU socket (`socket`). You may specify a unit for the metric with `unit`. The last one is the publishing flag. It tells the collector whether a metric should be sent to the router.
|
||||||
- The global metrics are metrics which require data from all event set measurements to be derived. The inputs are the metrics in the event sets. Similar to the metrics in the event sets, the global metrics are defined by a name, a formula, a scope and a publish flag. See event set metrics for details. The only difference is that there is no access to the raw event measurements anymore but only to the metrics. So, the idea is to derive a metric in the "eventsets" section and reuse it in the "globalmetrics" part. If you need a metric only for deriving the global metrics, disable forwarding of the event set metrics. **Be aware** that the combination might be misleading because the "behavior" of a metric changes over time and the multiple measurements might count different computing phases.
|
- The global metrics are metrics which require data from all event set measurements to be derived. The inputs are the metrics in the event sets. Similar to the metrics in the event sets, the global metrics are defined by a name, a formula, a scope and a publish flag. See event set metrics for details. The only difference is that there is no access to the raw event measurements anymore but only to the metrics. So, the idea is to derive a metric in the "eventsets" section and reuse it in the "globalmetrics" part. If you need a metric only for deriving the global metrics, disable forwarding of the event set metrics (`publish=false`). **Be aware** that the combination might be misleading because the "behavior" of a metric changes over time and the multiple measurements might count different computing phases. Similar to the metrics in the eventset, you can specify a metric unit with the `unit` field.
|
||||||
|
|
||||||
Additional options:
|
Additional options:
|
||||||
- `access_mode` : Method to use for hardware performance monitoring (`direct` access as root user, `accessdaemon` for the daemon mode)
|
- `access_mode` : Method to use for hardware performance monitoring (`direct` access as root user, `accessdaemon` for the daemon mode)
|
||||||
- `accessdaemon_path`: Folder with the access daemon `likwid-accessD`, commonly `$LIKWID_INSTALL_LOC/sbin`
|
- `accessdaemon_path`: Folder with the access daemon `likwid-accessD`, commonly `$LIKWID_INSTALL_LOC/sbin`
|
||||||
- `force_overwrite`: Same as setting `LIKWID_FORCE=1`. In case counters are already in-use, LIKWID overwrites their configuration to do its measurements
|
- `force_overwrite`: Same as setting `LIKWID_FORCE=1`. In case counters are already in-use, LIKWID overwrites their configuration to do its measurements
|
||||||
- `invalid_to_zero`: In some cases, the calculations result in `NaN` or `Inf`. With this option, all `NaN` and `Inf` values are replaces with `0.0`.
|
- `invalid_to_zero`: In some cases, the calculations result in `NaN` or `Inf`. With this option, all `NaN` and `Inf` values are replaces with `0.0`.
|
||||||
|
- `access_mode`: Specify LIKWID access mode: `direct` for direct register access as root user or `accessdaemon`
|
||||||
|
- `accessdaemon_path`: Folder of the accessDaemon `likwid-accessD`
|
||||||
|
- `liblikwid_path`: Location of `liblikwid.so`
|
||||||
|
|
||||||
### Available metric scopes
|
### Available metric scopes
|
||||||
|
|
||||||
@ -54,7 +57,8 @@ $ scripts/likwid_perfgroup_to_cc_config.py ICX MEM_DP
|
|||||||
"calc": "time",
|
"calc": "time",
|
||||||
"name": "Runtime (RDTSC) [s]",
|
"name": "Runtime (RDTSC) [s]",
|
||||||
"publish": true,
|
"publish": true,
|
||||||
"scope": "hwthread"
|
"unit": "seconds"
|
||||||
|
"scope": "cpu"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"..." : "..."
|
"..." : "..."
|
||||||
@ -104,25 +108,28 @@ $ chwon $CCUSER /var/run/likwid.lock
|
|||||||
{
|
{
|
||||||
"name": "ipc",
|
"name": "ipc",
|
||||||
"calc": "PMC0/PMC1",
|
"calc": "PMC0/PMC1",
|
||||||
"scope": "cpu",
|
"type": "cpu",
|
||||||
"publish": true
|
"publish": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "flops_any",
|
"name": "flops_any",
|
||||||
"calc": "0.000001*PMC2/time",
|
"calc": "0.000001*PMC2/time",
|
||||||
"scope": "cpu",
|
"unit": "MFlops/s",
|
||||||
|
"type": "cpu",
|
||||||
"publish": true
|
"publish": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "clock_mhz",
|
"name": "clock",
|
||||||
"calc": "0.000001*(FIXC1/FIXC2)/inverseClock",
|
"calc": "0.000001*(FIXC1/FIXC2)/inverseClock",
|
||||||
"scope": "cpu",
|
"type": "cpu",
|
||||||
|
"unit": "MHz",
|
||||||
"publish": true
|
"publish": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mem1",
|
"name": "mem1",
|
||||||
"calc": "0.000001*(DFC0+DFC1+DFC2+DFC3)*64.0/time",
|
"calc": "0.000001*(DFC0+DFC1+DFC2+DFC3)*64.0/time",
|
||||||
"scope": "socket",
|
"unit": "Mbyte/s",
|
||||||
|
"type": "socket",
|
||||||
"publish": false
|
"publish": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -140,19 +147,22 @@ $ chwon $CCUSER /var/run/likwid.lock
|
|||||||
{
|
{
|
||||||
"name": "pwr_core",
|
"name": "pwr_core",
|
||||||
"calc": "PWR0/time",
|
"calc": "PWR0/time",
|
||||||
"scope": "socket",
|
"unit": "Watt"
|
||||||
|
"type": "socket",
|
||||||
"publish": true
|
"publish": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "pwr_pkg",
|
"name": "pwr_pkg",
|
||||||
"calc": "PWR1/time",
|
"calc": "PWR1/time",
|
||||||
"scope": "socket",
|
"type": "socket",
|
||||||
|
"unit": "Watt"
|
||||||
"publish": true
|
"publish": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mem2",
|
"name": "mem2",
|
||||||
"calc": "0.000001*(DFC0+DFC1+DFC2+DFC3)*64.0/time",
|
"calc": "0.000001*(DFC0+DFC1+DFC2+DFC3)*64.0/time",
|
||||||
"scope": "socket",
|
"unit": "Mbyte/s",
|
||||||
|
"type": "socket",
|
||||||
"publish": false
|
"publish": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -162,7 +172,8 @@ $ chwon $CCUSER /var/run/likwid.lock
|
|||||||
{
|
{
|
||||||
"name": "mem_bw",
|
"name": "mem_bw",
|
||||||
"calc": "mem1+mem2",
|
"calc": "mem1+mem2",
|
||||||
"scope": "socket",
|
"type": "socket",
|
||||||
|
"unit": "Mbyte/s",
|
||||||
"publish": true
|
"publish": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -198,3 +209,4 @@ IPC PMC0/PMC1 -> {
|
|||||||
-> ]
|
-> ]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The script `scripts/likwid_perfgroup_to_cc_config.py` might help you.
|
@ -19,20 +19,31 @@ const LCTL_CMD = `lctl`
|
|||||||
const LCTL_OPTION = `get_param`
|
const LCTL_OPTION = `get_param`
|
||||||
|
|
||||||
type LustreCollectorConfig struct {
|
type LustreCollectorConfig struct {
|
||||||
LCtlCommand string `json:"lctl_command"`
|
LCtlCommand string `json:"lctl_command,omitempty"`
|
||||||
ExcludeMetrics []string `json:"exclude_metrics"`
|
ExcludeMetrics []string `json:"exclude_metrics,omitempty"`
|
||||||
SendAllMetrics bool `json:"send_all_metrics"`
|
Sudo bool `json:"use_sudo,omitempty"`
|
||||||
Sudo bool `json:"use_sudo"`
|
SendAbsoluteValues bool `json:"send_abs_values,omitempty"`
|
||||||
|
SendDerivedValues bool `json:"send_derived_values,omitempty"`
|
||||||
|
SendDiffValues bool `json:"send_diff_values,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type LustreMetricDefinition struct {
|
||||||
|
name string
|
||||||
|
lineprefix string
|
||||||
|
lineoffset int
|
||||||
|
unit string
|
||||||
|
calc string
|
||||||
}
|
}
|
||||||
|
|
||||||
type LustreCollector struct {
|
type LustreCollector struct {
|
||||||
metricCollector
|
metricCollector
|
||||||
tags map[string]string
|
tags map[string]string
|
||||||
matches map[string]map[string]int
|
|
||||||
stats map[string]map[string]int64
|
|
||||||
config LustreCollectorConfig
|
config LustreCollectorConfig
|
||||||
lctl string
|
lctl string
|
||||||
sudoCmd string
|
sudoCmd string
|
||||||
|
lastTimestamp time.Time // Store time stamp of last tick to derive bandwidths
|
||||||
|
definitions []LustreMetricDefinition // Combined list without excluded metrics
|
||||||
|
stats map[string]map[string]int64 // Data for last value per device and metric
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *LustreCollector) getDeviceDataCommand(device string) []string {
|
func (m *LustreCollector) getDeviceDataCommand(device string) []string {
|
||||||
@ -75,6 +86,16 @@ func (m *LustreCollector) getDevices() []string {
|
|||||||
return devices
|
return devices
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getMetricData(lines []string, prefix string, offset int) (int64, error) {
|
||||||
|
for _, line := range lines {
|
||||||
|
if strings.HasPrefix(line, prefix) {
|
||||||
|
lf := strings.Fields(line)
|
||||||
|
return strconv.ParseInt(lf[offset], 0, 64)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0, errors.New("no such line in data")
|
||||||
|
}
|
||||||
|
|
||||||
// //Version reading the stats data of a device from sysfs
|
// //Version reading the stats data of a device from sysfs
|
||||||
// func (m *LustreCollector) getDeviceDataSysfs(device string) []string {
|
// func (m *LustreCollector) getDeviceDataSysfs(device string) []string {
|
||||||
// llitedir := filepath.Join(LUSTRE_SYSFS, "llite")
|
// llitedir := filepath.Join(LUSTRE_SYSFS, "llite")
|
||||||
@ -87,6 +108,183 @@ func (m *LustreCollector) getDevices() []string {
|
|||||||
// return strings.Split(string(buffer), "\n")
|
// return strings.Split(string(buffer), "\n")
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
var LustreAbsMetrics = []LustreMetricDefinition{
|
||||||
|
{
|
||||||
|
name: "lustre_read_requests",
|
||||||
|
lineprefix: "read_bytes",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "requests",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_write_requests",
|
||||||
|
lineprefix: "write_bytes",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "requests",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_read_bytes",
|
||||||
|
lineprefix: "read_bytes",
|
||||||
|
lineoffset: 6,
|
||||||
|
unit: "bytes",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_write_bytes",
|
||||||
|
lineprefix: "write_bytes",
|
||||||
|
lineoffset: 6,
|
||||||
|
unit: "bytes",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_open",
|
||||||
|
lineprefix: "open",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_close",
|
||||||
|
lineprefix: "close",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_setattr",
|
||||||
|
lineprefix: "setattr",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_getattr",
|
||||||
|
lineprefix: "getattr",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_statfs",
|
||||||
|
lineprefix: "statfs",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_inode_permission",
|
||||||
|
lineprefix: "inode_permission",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "none",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
var LustreDiffMetrics = []LustreMetricDefinition{
|
||||||
|
{
|
||||||
|
name: "lustre_read_requests_diff",
|
||||||
|
lineprefix: "read_bytes",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "requests",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_write_requests_diff",
|
||||||
|
lineprefix: "write_bytes",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "requests",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_read_bytes_diff",
|
||||||
|
lineprefix: "read_bytes",
|
||||||
|
lineoffset: 6,
|
||||||
|
unit: "bytes",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_write_bytes_diff",
|
||||||
|
lineprefix: "write_bytes",
|
||||||
|
lineoffset: 6,
|
||||||
|
unit: "bytes",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_open_diff",
|
||||||
|
lineprefix: "open",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_close_diff",
|
||||||
|
lineprefix: "close",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_setattr_diff",
|
||||||
|
lineprefix: "setattr",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_getattr_diff",
|
||||||
|
lineprefix: "getattr",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_statfs_diff",
|
||||||
|
lineprefix: "statfs",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_inode_permission_diff",
|
||||||
|
lineprefix: "inode_permission",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "",
|
||||||
|
calc: "difference",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
var LustreDeriveMetrics = []LustreMetricDefinition{
|
||||||
|
{
|
||||||
|
name: "lustre_read_requests_rate",
|
||||||
|
lineprefix: "read_bytes",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "requests/sec",
|
||||||
|
calc: "derivative",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_write_requests_rate",
|
||||||
|
lineprefix: "write_bytes",
|
||||||
|
lineoffset: 1,
|
||||||
|
unit: "requests/sec",
|
||||||
|
calc: "derivative",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_read_bw",
|
||||||
|
lineprefix: "read_bytes",
|
||||||
|
lineoffset: 6,
|
||||||
|
unit: "bytes/sec",
|
||||||
|
calc: "derivative",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "lustre_write_bw",
|
||||||
|
lineprefix: "write_bytes",
|
||||||
|
lineoffset: 6,
|
||||||
|
unit: "bytes/sec",
|
||||||
|
calc: "derivative",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
func (m *LustreCollector) Init(config json.RawMessage) error {
|
func (m *LustreCollector) Init(config json.RawMessage) error {
|
||||||
var err error
|
var err error
|
||||||
m.name = "LustreCollector"
|
m.name = "LustreCollector"
|
||||||
@ -99,17 +297,9 @@ func (m *LustreCollector) Init(config json.RawMessage) error {
|
|||||||
m.setup()
|
m.setup()
|
||||||
m.tags = map[string]string{"type": "node"}
|
m.tags = map[string]string{"type": "node"}
|
||||||
m.meta = map[string]string{"source": m.name, "group": "Lustre"}
|
m.meta = map[string]string{"source": m.name, "group": "Lustre"}
|
||||||
defmatches := map[string]map[string]int{
|
|
||||||
"read_bytes": {"lustre_read_bytes": 6, "lustre_read_requests": 1},
|
|
||||||
"write_bytes": {"lustre_write_bytes": 6, "lustre_write_requests": 1},
|
|
||||||
"open": {"lustre_open": 1},
|
|
||||||
"close": {"lustre_close": 1},
|
|
||||||
"setattr": {"lustre_setattr": 1},
|
|
||||||
"getattr": {"lustre_getattr": 1},
|
|
||||||
"statfs": {"lustre_statfs": 1},
|
|
||||||
"inode_permission": {"lustre_inode_permission": 1}}
|
|
||||||
|
|
||||||
// Lustre file system statistics can only be queried by user root
|
// Lustre file system statistics can only be queried by user root
|
||||||
|
// or with password-less sudo
|
||||||
if !m.config.Sudo {
|
if !m.config.Sudo {
|
||||||
user, err := user.Current()
|
user, err := user.Current()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -120,23 +310,15 @@ func (m *LustreCollector) Init(config json.RawMessage) error {
|
|||||||
cclog.ComponentError(m.name, "Lustre file system statistics can only be queried by user root")
|
cclog.ComponentError(m.name, "Lustre file system statistics can only be queried by user root")
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
p, err := exec.LookPath("sudo")
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(m.name, "Cannot find 'sudo'")
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m.sudoCmd = p
|
||||||
}
|
}
|
||||||
|
|
||||||
m.matches = make(map[string]map[string]int)
|
|
||||||
for lineprefix, names := range defmatches {
|
|
||||||
for metricname, offset := range names {
|
|
||||||
_, skip := stringArrayContains(m.config.ExcludeMetrics, metricname)
|
|
||||||
if skip {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if _, prefixExist := m.matches[lineprefix]; !prefixExist {
|
|
||||||
m.matches[lineprefix] = make(map[string]int)
|
|
||||||
}
|
|
||||||
if _, metricExist := m.matches[lineprefix][metricname]; !metricExist {
|
|
||||||
m.matches[lineprefix][metricname] = offset
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
p, err := exec.LookPath(m.config.LCtlCommand)
|
p, err := exec.LookPath(m.config.LCtlCommand)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
p, err = exec.LookPath(LCTL_CMD)
|
p, err = exec.LookPath(LCTL_CMD)
|
||||||
@ -145,26 +327,51 @@ func (m *LustreCollector) Init(config json.RawMessage) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
m.lctl = p
|
m.lctl = p
|
||||||
if m.config.Sudo {
|
|
||||||
p, err := exec.LookPath("sudo")
|
m.definitions = []LustreMetricDefinition{}
|
||||||
if err != nil {
|
if m.config.SendAbsoluteValues {
|
||||||
m.sudoCmd = p
|
for _, def := range LustreAbsMetrics {
|
||||||
|
if _, skip := stringArrayContains(m.config.ExcludeMetrics, def.name); !skip {
|
||||||
|
m.definitions = append(m.definitions, def)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
if m.config.SendDiffValues {
|
||||||
|
for _, def := range LustreDiffMetrics {
|
||||||
|
if _, skip := stringArrayContains(m.config.ExcludeMetrics, def.name); !skip {
|
||||||
|
m.definitions = append(m.definitions, def)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if m.config.SendDerivedValues {
|
||||||
|
for _, def := range LustreDeriveMetrics {
|
||||||
|
if _, skip := stringArrayContains(m.config.ExcludeMetrics, def.name); !skip {
|
||||||
|
m.definitions = append(m.definitions, def)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(m.definitions) == 0 {
|
||||||
|
return errors.New("no metrics to collect")
|
||||||
|
}
|
||||||
|
|
||||||
devices := m.getDevices()
|
devices := m.getDevices()
|
||||||
if len(devices) == 0 {
|
if len(devices) == 0 {
|
||||||
return errors.New("no metrics to collect")
|
return errors.New("no Lustre devices found")
|
||||||
}
|
}
|
||||||
m.stats = make(map[string]map[string]int64)
|
m.stats = make(map[string]map[string]int64)
|
||||||
for _, d := range devices {
|
for _, d := range devices {
|
||||||
m.stats[d] = make(map[string]int64)
|
m.stats[d] = make(map[string]int64)
|
||||||
for _, names := range m.matches {
|
data := m.getDeviceDataCommand(d)
|
||||||
for metricname := range names {
|
for _, def := range m.definitions {
|
||||||
m.stats[d][metricname] = 0
|
x, err := getMetricData(data, def.lineprefix, def.lineoffset)
|
||||||
|
if err == nil {
|
||||||
|
m.stats[d][def.name] = x
|
||||||
|
} else {
|
||||||
|
m.stats[d][def.name] = 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
m.lastTimestamp = time.Now()
|
||||||
m.init = true
|
m.init = true
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -173,54 +380,49 @@ func (m *LustreCollector) Read(interval time.Duration, output chan lp.CCMetric)
|
|||||||
if !m.init {
|
if !m.init {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
now := time.Now()
|
||||||
|
tdiff := now.Sub(m.lastTimestamp)
|
||||||
for device, devData := range m.stats {
|
for device, devData := range m.stats {
|
||||||
stats := m.getDeviceDataCommand(device)
|
data := m.getDeviceDataCommand(device)
|
||||||
processed := []string{}
|
for _, def := range m.definitions {
|
||||||
|
var use_x int64
|
||||||
for _, line := range stats {
|
var err error
|
||||||
lf := strings.Fields(line)
|
var y lp.CCMetric
|
||||||
if len(lf) > 1 {
|
x, err := getMetricData(data, def.lineprefix, def.lineoffset)
|
||||||
if fields, ok := m.matches[lf[0]]; ok {
|
if err == nil {
|
||||||
for name, idx := range fields {
|
use_x = x
|
||||||
x, err := strconv.ParseInt(lf[idx], 0, 64)
|
} else {
|
||||||
if err != nil {
|
use_x = devData[def.name]
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
value := x - devData[name]
|
var value interface{}
|
||||||
devData[name] = x
|
switch def.calc {
|
||||||
if value < 0 {
|
case "none":
|
||||||
|
value = use_x
|
||||||
|
y, err = lp.New(def.name, m.tags, m.meta, map[string]interface{}{"value": value}, time.Now())
|
||||||
|
case "difference":
|
||||||
|
value = use_x - devData[def.name]
|
||||||
|
if value.(int64) < 0 {
|
||||||
value = 0
|
value = 0
|
||||||
}
|
}
|
||||||
y, err := lp.New(name, m.tags, m.meta, map[string]interface{}{"value": value}, time.Now())
|
y, err = lp.New(def.name, m.tags, m.meta, map[string]interface{}{"value": value}, time.Now())
|
||||||
|
case "derivative":
|
||||||
|
value = float64(use_x-devData[def.name]) / tdiff.Seconds()
|
||||||
|
if value.(float64) < 0 {
|
||||||
|
value = 0
|
||||||
|
}
|
||||||
|
y, err = lp.New(def.name, m.tags, m.meta, map[string]interface{}{"value": value}, time.Now())
|
||||||
|
}
|
||||||
if err == nil {
|
if err == nil {
|
||||||
y.AddTag("device", device)
|
y.AddTag("device", device)
|
||||||
if strings.Contains(name, "byte") {
|
if len(def.unit) > 0 {
|
||||||
y.AddMeta("unit", "Byte")
|
y.AddMeta("unit", def.unit)
|
||||||
}
|
|
||||||
output <- y
|
|
||||||
if m.config.SendAllMetrics {
|
|
||||||
processed = append(processed, name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if m.config.SendAllMetrics {
|
|
||||||
for name := range devData {
|
|
||||||
if _, done := stringArrayContains(processed, name); !done {
|
|
||||||
y, err := lp.New(name, m.tags, m.meta, map[string]interface{}{"value": 0}, time.Now())
|
|
||||||
if err == nil {
|
|
||||||
y.AddTag("device", device)
|
|
||||||
if strings.Contains(name, "byte") {
|
|
||||||
y.AddMeta("unit", "Byte")
|
|
||||||
}
|
}
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
|
devData[def.name] = use_x
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
m.lastTimestamp = now
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *LustreCollector) Close() {
|
func (m *LustreCollector) Close() {
|
||||||
|
@ -3,27 +3,44 @@
|
|||||||
|
|
||||||
```json
|
```json
|
||||||
"lustrestat": {
|
"lustrestat": {
|
||||||
"procfiles" : [
|
"lctl_command": "/path/to/lctl",
|
||||||
"/proc/fs/lustre/llite/lnec-XXXXXX/stats"
|
|
||||||
],
|
|
||||||
"exclude_metrics": [
|
"exclude_metrics": [
|
||||||
"setattr",
|
"setattr",
|
||||||
"getattr"
|
"getattr"
|
||||||
]
|
],
|
||||||
|
"send_abs_values" : true,
|
||||||
|
"send_derived_values" : true,
|
||||||
|
"send_diff_values": true,
|
||||||
|
"use_sudo": false
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The `lustrestat` collector reads from the procfs stat files for Lustre like `/proc/fs/lustre/llite/lnec-XXXXXX/stats`.
|
The `lustrestat` collector uses the `lctl` application with the `get_param` option to get all `llite` metrics (Lustre client). The `llite` metrics are only available for root users. If password-less sudo is configured, you can enable `sudo` in the configuration.
|
||||||
|
|
||||||
Metrics:
|
Metrics:
|
||||||
* `read_bytes`
|
* `lustre_read_bytes` (unit `bytes`)
|
||||||
* `read_requests`
|
* `lustre_read_requests` (unit `requests`)
|
||||||
* `write_bytes`
|
* `lustre_write_bytes` (unit `bytes`)
|
||||||
* `write_requests`
|
* `lustre_write_requests` (unit `requests`)
|
||||||
* `open`
|
* `lustre_open`
|
||||||
* `close`
|
* `lustre_close`
|
||||||
* `getattr`
|
* `lustre_getattr`
|
||||||
* `setattr`
|
* `lustre_setattr`
|
||||||
* `statfs`
|
* `lustre_statfs`
|
||||||
* `inode_permission`
|
* `lustre_inode_permission`
|
||||||
|
* `lustre_read_bw` (if `send_derived_values == true`, unit `bytes/sec`)
|
||||||
|
* `lustre_write_bw` (if `send_derived_values == true`, unit `bytes/sec`)
|
||||||
|
* `lustre_read_requests_rate` (if `send_derived_values == true`, unit `requests/sec`)
|
||||||
|
* `lustre_write_requests_rate` (if `send_derived_values == true`, unit `requests/sec`)
|
||||||
|
* `lustre_read_bytes_diff` (if `send_diff_values == true`, unit `bytes`)
|
||||||
|
* `lustre_read_requests_diff` (if `send_diff_values == true`, unit `requests`)
|
||||||
|
* `lustre_write_bytes_diff` (if `send_diff_values == true`, unit `bytes`)
|
||||||
|
* `lustre_write_requests_diff` (if `send_diff_values == true`, unit `requests`)
|
||||||
|
* `lustre_open_diff` (if `send_diff_values == true`)
|
||||||
|
* `lustre_close_diff` (if `send_diff_values == true`)
|
||||||
|
* `lustre_getattr_diff` (if `send_diff_values == true`)
|
||||||
|
* `lustre_setattr_diff` (if `send_diff_values == true`)
|
||||||
|
* `lustre_statfs_diff` (if `send_diff_values == true`)
|
||||||
|
* `lustre_inode_permission_diff` (if `send_diff_values == true`)
|
||||||
|
|
||||||
|
This collector adds an `device` tag.
|
@ -37,6 +37,7 @@ type MemstatCollector struct {
|
|||||||
matches map[string]string
|
matches map[string]string
|
||||||
config MemstatCollectorConfig
|
config MemstatCollectorConfig
|
||||||
nodefiles map[int]MemstatCollectorNode
|
nodefiles map[int]MemstatCollectorNode
|
||||||
|
sendMemUsed bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func getStats(filename string) map[string]float64 {
|
func getStats(filename string) map[string]float64 {
|
||||||
@ -77,7 +78,7 @@ func (m *MemstatCollector) Init(config json.RawMessage) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m.meta = map[string]string{"source": m.name, "group": "Memory", "unit": "kByte"}
|
m.meta = map[string]string{"source": m.name, "group": "Memory", "unit": "GByte"}
|
||||||
m.stats = make(map[string]int64)
|
m.stats = make(map[string]int64)
|
||||||
m.matches = make(map[string]string)
|
m.matches = make(map[string]string)
|
||||||
m.tags = map[string]string{"type": "node"}
|
m.tags = map[string]string{"type": "node"}
|
||||||
@ -99,6 +100,10 @@ func (m *MemstatCollector) Init(config json.RawMessage) error {
|
|||||||
m.matches[k] = v
|
m.matches[k] = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
m.sendMemUsed = false
|
||||||
|
if _, skip := stringArrayContains(m.config.ExcludeMetrics, "mem_used"); !skip {
|
||||||
|
m.sendMemUsed = true
|
||||||
|
}
|
||||||
if len(m.matches) == 0 {
|
if len(m.matches) == 0 {
|
||||||
return errors.New("no metrics to collect")
|
return errors.New("no metrics to collect")
|
||||||
}
|
}
|
||||||
@ -152,25 +157,28 @@ func (m *MemstatCollector) Read(interval time.Duration, output chan lp.CCMetric)
|
|||||||
if v, ok := stats[match]; ok {
|
if v, ok := stats[match]; ok {
|
||||||
value = v
|
value = v
|
||||||
}
|
}
|
||||||
y, err := lp.New(name, tags, m.meta, map[string]interface{}{"value": value}, time.Now())
|
y, err := lp.New(name, tags, m.meta, map[string]interface{}{"value": value * 1e-6}, time.Now())
|
||||||
if err == nil {
|
if err == nil {
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if _, skip := stringArrayContains(m.config.ExcludeMetrics, "mem_used"); !skip {
|
if m.sendMemUsed {
|
||||||
|
memUsed := 0.0
|
||||||
|
if totalVal, total := stats["MemTotal"]; total {
|
||||||
if freeVal, free := stats["MemFree"]; free {
|
if freeVal, free := stats["MemFree"]; free {
|
||||||
if bufVal, buffers := stats["Buffers"]; buffers {
|
if bufVal, buffers := stats["Buffers"]; buffers {
|
||||||
if cacheVal, cached := stats["Cached"]; cached {
|
if cacheVal, cached := stats["Cached"]; cached {
|
||||||
memUsed := stats["MemTotal"] - (freeVal + bufVal + cacheVal)
|
memUsed = totalVal - (freeVal + bufVal + cacheVal)
|
||||||
y, err := lp.New("mem_used", tags, m.meta, map[string]interface{}{"value": memUsed}, time.Now())
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
y, err := lp.New("mem_used", tags, m.meta, map[string]interface{}{"value": memUsed * 1e-6}, time.Now())
|
||||||
if err == nil {
|
if err == nil {
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if m.config.NodeStats {
|
if m.config.NodeStats {
|
||||||
nodestats := getStats(MEMSTATFILE)
|
nodestats := getStats(MEMSTATFILE)
|
||||||
|
@ -125,5 +125,5 @@ func RemoveFromStringList(s []string, r string) ([]string, error) {
|
|||||||
return append(s[:i], s[i+1:]...), nil
|
return append(s[:i], s[i+1:]...), nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return s, fmt.Errorf("No such string in list")
|
return s, fmt.Errorf("no such string in list")
|
||||||
}
|
}
|
||||||
|
@ -13,22 +13,27 @@ import (
|
|||||||
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||||
)
|
)
|
||||||
|
|
||||||
const NETSTATFILE = `/proc/net/dev`
|
const NETSTATFILE = "/proc/net/dev"
|
||||||
|
|
||||||
type NetstatCollectorConfig struct {
|
type NetstatCollectorConfig struct {
|
||||||
IncludeDevices []string `json:"include_devices"`
|
IncludeDevices []string `json:"include_devices"`
|
||||||
|
SendAbsoluteValues bool `json:"send_abs_values"`
|
||||||
|
SendDerivedValues bool `json:"send_derived_values"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type NetstatCollectorMetric struct {
|
type NetstatCollectorMetric struct {
|
||||||
|
name string
|
||||||
index int
|
index int
|
||||||
lastValue float64
|
tags map[string]string
|
||||||
|
meta map[string]string
|
||||||
|
meta_rates map[string]string
|
||||||
|
lastValue int64
|
||||||
}
|
}
|
||||||
|
|
||||||
type NetstatCollector struct {
|
type NetstatCollector struct {
|
||||||
metricCollector
|
metricCollector
|
||||||
config NetstatCollectorConfig
|
config NetstatCollectorConfig
|
||||||
matches map[string]map[string]NetstatCollectorMetric
|
matches map[string][]NetstatCollectorMetric
|
||||||
devtags map[string]map[string]string
|
|
||||||
lastTimestamp time.Time
|
lastTimestamp time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,15 +41,33 @@ func (m *NetstatCollector) Init(config json.RawMessage) error {
|
|||||||
m.name = "NetstatCollector"
|
m.name = "NetstatCollector"
|
||||||
m.setup()
|
m.setup()
|
||||||
m.lastTimestamp = time.Now()
|
m.lastTimestamp = time.Now()
|
||||||
m.meta = map[string]string{"source": m.name, "group": "Network"}
|
|
||||||
m.devtags = make(map[string]map[string]string)
|
const (
|
||||||
nameIndexMap := map[string]int{
|
fieldInterface = iota
|
||||||
"net_bytes_in": 1,
|
fieldReceiveBytes
|
||||||
"net_pkts_in": 2,
|
fieldReceivePackets
|
||||||
"net_bytes_out": 9,
|
fieldReceiveErrs
|
||||||
"net_pkts_out": 10,
|
fieldReceiveDrop
|
||||||
}
|
fieldReceiveFifo
|
||||||
m.matches = make(map[string]map[string]NetstatCollectorMetric)
|
fieldReceiveFrame
|
||||||
|
fieldReceiveCompressed
|
||||||
|
fieldReceiveMulticast
|
||||||
|
fieldTransmitBytes
|
||||||
|
fieldTransmitPackets
|
||||||
|
fieldTransmitErrs
|
||||||
|
fieldTransmitDrop
|
||||||
|
fieldTransmitFifo
|
||||||
|
fieldTransmitColls
|
||||||
|
fieldTransmitCarrier
|
||||||
|
fieldTransmitCompressed
|
||||||
|
)
|
||||||
|
|
||||||
|
m.matches = make(map[string][]NetstatCollectorMetric)
|
||||||
|
|
||||||
|
// Set default configuration,
|
||||||
|
m.config.SendAbsoluteValues = true
|
||||||
|
m.config.SendDerivedValues = false
|
||||||
|
// Read configuration file, allow overwriting default config
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &m.config)
|
err := json.Unmarshal(config, &m.config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -52,7 +75,9 @@ func (m *NetstatCollector) Init(config json.RawMessage) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file, err := os.Open(string(NETSTATFILE))
|
|
||||||
|
// Check access to net statistic file
|
||||||
|
file, err := os.Open(NETSTATFILE)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(m.name, err.Error())
|
cclog.ComponentError(m.name, err.Error())
|
||||||
return err
|
return err
|
||||||
@ -62,23 +87,65 @@ func (m *NetstatCollector) Init(config json.RawMessage) error {
|
|||||||
scanner := bufio.NewScanner(file)
|
scanner := bufio.NewScanner(file)
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
l := scanner.Text()
|
l := scanner.Text()
|
||||||
|
|
||||||
|
// Skip lines with no net device entry
|
||||||
if !strings.Contains(l, ":") {
|
if !strings.Contains(l, ":") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Split line into fields
|
||||||
f := strings.Fields(l)
|
f := strings.Fields(l)
|
||||||
|
|
||||||
|
// Get net device entry
|
||||||
dev := strings.Trim(f[0], ": ")
|
dev := strings.Trim(f[0], ": ")
|
||||||
|
|
||||||
|
// Check if device is a included device
|
||||||
if _, ok := stringArrayContains(m.config.IncludeDevices, dev); ok {
|
if _, ok := stringArrayContains(m.config.IncludeDevices, dev); ok {
|
||||||
m.matches[dev] = make(map[string]NetstatCollectorMetric)
|
tags := map[string]string{"device": dev, "type": "node"}
|
||||||
for name, idx := range nameIndexMap {
|
meta_unit_byte := map[string]string{"source": m.name, "group": "Network", "unit": "bytes"}
|
||||||
m.matches[dev][name] = NetstatCollectorMetric{
|
meta_unit_byte_per_sec := map[string]string{"source": m.name, "group": "Network", "unit": "bytes/sec"}
|
||||||
index: idx,
|
meta_unit_pkts := map[string]string{"source": m.name, "group": "Network", "unit": "packets"}
|
||||||
lastValue: 0,
|
meta_unit_pkts_per_sec := map[string]string{"source": m.name, "group": "Network", "unit": "packets/sec"}
|
||||||
|
|
||||||
|
m.matches[dev] = []NetstatCollectorMetric{
|
||||||
|
{
|
||||||
|
name: "net_bytes_in",
|
||||||
|
index: fieldReceiveBytes,
|
||||||
|
lastValue: -1,
|
||||||
|
tags: tags,
|
||||||
|
meta: meta_unit_byte,
|
||||||
|
meta_rates: meta_unit_byte_per_sec,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "net_pkts_in",
|
||||||
|
index: fieldReceivePackets,
|
||||||
|
lastValue: -1,
|
||||||
|
tags: tags,
|
||||||
|
meta: meta_unit_pkts,
|
||||||
|
meta_rates: meta_unit_pkts_per_sec,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "net_bytes_out",
|
||||||
|
index: fieldTransmitBytes,
|
||||||
|
lastValue: -1,
|
||||||
|
tags: tags,
|
||||||
|
meta: meta_unit_byte,
|
||||||
|
meta_rates: meta_unit_byte_per_sec,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "net_pkts_out",
|
||||||
|
index: fieldTransmitPackets,
|
||||||
|
lastValue: -1,
|
||||||
|
tags: tags,
|
||||||
|
meta: meta_unit_pkts,
|
||||||
|
meta_rates: meta_unit_pkts_per_sec,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m.devtags[dev] = map[string]string{"device": dev, "type": "node"}
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if len(m.devtags) == 0 {
|
if len(m.matches) == 0 {
|
||||||
return errors.New("no devices to collector metrics found")
|
return errors.New("no devices to collector metrics found")
|
||||||
}
|
}
|
||||||
m.init = true
|
m.init = true
|
||||||
@ -89,50 +156,62 @@ func (m *NetstatCollector) Read(interval time.Duration, output chan lp.CCMetric)
|
|||||||
if !m.init {
|
if !m.init {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
// Current time stamp
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
|
// time difference to last time stamp
|
||||||
|
timeDiff := now.Sub(m.lastTimestamp).Seconds()
|
||||||
|
// Save current timestamp
|
||||||
|
m.lastTimestamp = now
|
||||||
|
|
||||||
file, err := os.Open(string(NETSTATFILE))
|
file, err := os.Open(string(NETSTATFILE))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(m.name, err.Error())
|
cclog.ComponentError(m.name, err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
tdiff := now.Sub(m.lastTimestamp)
|
|
||||||
|
|
||||||
scanner := bufio.NewScanner(file)
|
scanner := bufio.NewScanner(file)
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
l := scanner.Text()
|
l := scanner.Text()
|
||||||
|
|
||||||
|
// Skip lines with no net device entry
|
||||||
if !strings.Contains(l, ":") {
|
if !strings.Contains(l, ":") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Split line into fields
|
||||||
f := strings.Fields(l)
|
f := strings.Fields(l)
|
||||||
|
|
||||||
|
// Get net device entry
|
||||||
dev := strings.Trim(f[0], ":")
|
dev := strings.Trim(f[0], ":")
|
||||||
|
|
||||||
|
// Check if device is a included device
|
||||||
if devmetrics, ok := m.matches[dev]; ok {
|
if devmetrics, ok := m.matches[dev]; ok {
|
||||||
for name, data := range devmetrics {
|
for i := range devmetrics {
|
||||||
v, err := strconv.ParseFloat(f[data.index], 64)
|
metric := &devmetrics[i]
|
||||||
if err == nil {
|
|
||||||
vdiff := v - data.lastValue
|
// Read value
|
||||||
value := vdiff / tdiff.Seconds()
|
v, err := strconv.ParseInt(f[metric.index], 10, 64)
|
||||||
if data.lastValue == 0 {
|
if err != nil {
|
||||||
value = 0
|
continue
|
||||||
}
|
|
||||||
data.lastValue = v
|
|
||||||
y, err := lp.New(name, m.devtags[dev], m.meta, map[string]interface{}{"value": value}, now)
|
|
||||||
if err == nil {
|
|
||||||
switch {
|
|
||||||
case strings.Contains(name, "byte"):
|
|
||||||
y.AddMeta("unit", "bytes/sec")
|
|
||||||
case strings.Contains(name, "pkt"):
|
|
||||||
y.AddMeta("unit", "packets/sec")
|
|
||||||
}
|
}
|
||||||
|
if m.config.SendAbsoluteValues {
|
||||||
|
if y, err := lp.New(metric.name, metric.tags, metric.meta, map[string]interface{}{"value": v}, now); err == nil {
|
||||||
output <- y
|
output <- y
|
||||||
}
|
}
|
||||||
devmetrics[name] = data
|
}
|
||||||
|
if m.config.SendDerivedValues {
|
||||||
|
if metric.lastValue >= 0 {
|
||||||
|
rate := float64(v-metric.lastValue) / timeDiff
|
||||||
|
if y, err := lp.New(metric.name+"_bw", metric.tags, metric.meta_rates, map[string]interface{}{"value": rate}, now); err == nil {
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
metric.lastValue = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m.lastTimestamp = time.Now()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *NetstatCollector) Close() {
|
func (m *NetstatCollector) Close() {
|
||||||
|
@ -5,17 +5,23 @@
|
|||||||
"netstat": {
|
"netstat": {
|
||||||
"include_devices": [
|
"include_devices": [
|
||||||
"eth0"
|
"eth0"
|
||||||
]
|
],
|
||||||
|
"send_abs_values" : true,
|
||||||
|
"send_derived_values" : true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The `netstat` collector reads data from `/proc/net/dev` and outputs a handful **node** metrics. With the `include_devices` list you can specify which network devices should be measured. **Note**: Most other collectors use an _exclude_ list instead of an include list.
|
The `netstat` collector reads data from `/proc/net/dev` and outputs a handful **node** metrics. With the `include_devices` list you can specify which network devices should be measured. **Note**: Most other collectors use an _exclude_ list instead of an include list.
|
||||||
|
|
||||||
Metrics:
|
Metrics:
|
||||||
* `net_bytes_in` (`unit=bytes/sec`)
|
* `net_bytes_in` (`unit=bytes`)
|
||||||
* `net_bytes_out` (`unit=bytes/sec`)
|
* `net_bytes_out` (`unit=bytes`)
|
||||||
* `net_pkts_in` (`unit=packets/sec`)
|
* `net_pkts_in` (`unit=packets`)
|
||||||
* `net_pkts_out` (`unit=packets/sec`)
|
* `net_pkts_out` (`unit=packets`)
|
||||||
|
* `net_bytes_in_bw` (`unit=bytes/sec` if `send_derived_values == true`)
|
||||||
|
* `net_bytes_out_bw` (`unit=bytes/sec` if `send_derived_values == true`)
|
||||||
|
* `net_pkts_in_bw` (`unit=packets/sec` if `send_derived_values == true`)
|
||||||
|
* `net_pkts_out_bw` (`unit=packets/sec` if `send_derived_values == true`)
|
||||||
|
|
||||||
The device name is added as tag `device`.
|
The device name is added as tag `device`.
|
||||||
|
|
||||||
|
@ -70,10 +70,10 @@ func (m *TempCollector) Init(config json.RawMessage) error {
|
|||||||
globPattern := filepath.Join("/sys/class/hwmon", "*", "temp*_input")
|
globPattern := filepath.Join("/sys/class/hwmon", "*", "temp*_input")
|
||||||
inputFiles, err := filepath.Glob(globPattern)
|
inputFiles, err := filepath.Glob(globPattern)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Unable to glob files with pattern '%s': %v", globPattern, err)
|
return fmt.Errorf("unable to glob files with pattern '%s': %v", globPattern, err)
|
||||||
}
|
}
|
||||||
if inputFiles == nil {
|
if inputFiles == nil {
|
||||||
return fmt.Errorf("Unable to find any files with pattern '%s'", globPattern)
|
return fmt.Errorf("unable to find any files with pattern '%s'", globPattern)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get sensor name for each temperature sensor file
|
// Get sensor name for each temperature sensor file
|
||||||
@ -158,7 +158,7 @@ func (m *TempCollector) Init(config json.RawMessage) error {
|
|||||||
|
|
||||||
// Empty sensors map
|
// Empty sensors map
|
||||||
if len(m.sensors) == 0 {
|
if len(m.sensors) == 0 {
|
||||||
return fmt.Errorf("No temperature sensors found")
|
return fmt.Errorf("no temperature sensors found")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Finished initialization
|
// Finished initialization
|
||||||
|
@ -39,14 +39,14 @@ func (m *TopProcsCollector) Init(config json.RawMessage) error {
|
|||||||
m.config.Num_procs = int(DEFAULT_NUM_PROCS)
|
m.config.Num_procs = int(DEFAULT_NUM_PROCS)
|
||||||
}
|
}
|
||||||
if m.config.Num_procs <= 0 || m.config.Num_procs > MAX_NUM_PROCS {
|
if m.config.Num_procs <= 0 || m.config.Num_procs > MAX_NUM_PROCS {
|
||||||
return errors.New(fmt.Sprintf("num_procs option must be set in 'topprocs' config (range: 1-%d)", MAX_NUM_PROCS))
|
return fmt.Errorf("num_procs option must be set in 'topprocs' config (range: 1-%d)", MAX_NUM_PROCS)
|
||||||
}
|
}
|
||||||
m.setup()
|
m.setup()
|
||||||
command := exec.Command("ps", "-Ao", "comm", "--sort=-pcpu")
|
command := exec.Command("ps", "-Ao", "comm", "--sort=-pcpu")
|
||||||
command.Wait()
|
command.Wait()
|
||||||
_, err = command.Output()
|
_, err = command.Output()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.New("Failed to execute command")
|
return errors.New("failed to execute command")
|
||||||
}
|
}
|
||||||
m.init = true
|
m.init = true
|
||||||
return nil
|
return nil
|
||||||
|
@ -37,11 +37,12 @@ flowchart LR
|
|||||||
subgraph Receivers ["Receivers"]
|
subgraph Receivers ["Receivers"]
|
||||||
direction TB
|
direction TB
|
||||||
nats["NATS"]
|
nats["NATS"]
|
||||||
|
httprecv["HTTP"]
|
||||||
miscrecv[...]
|
miscrecv[...]
|
||||||
end
|
end
|
||||||
|
|
||||||
subgraph calc["Aggregator"]
|
subgraph calc["Aggregator"]
|
||||||
direction TB
|
direction LR
|
||||||
cache["Cache"]
|
cache["Cache"]
|
||||||
agg["Calculator"]
|
agg["Calculator"]
|
||||||
end
|
end
|
||||||
@ -60,6 +61,7 @@ flowchart LR
|
|||||||
misc --> CollectorManager
|
misc --> CollectorManager
|
||||||
|
|
||||||
nats --> ReceiverManager["ReceiverManager"]
|
nats --> ReceiverManager["ReceiverManager"]
|
||||||
|
httprecv --> ReceiverManager
|
||||||
miscrecv --> ReceiverManager
|
miscrecv --> ReceiverManager
|
||||||
|
|
||||||
CollectorManager --> newrouter["Router"]
|
CollectorManager --> newrouter["Router"]
|
||||||
|
@ -24,8 +24,8 @@ type ccMetric struct {
|
|||||||
|
|
||||||
// ccMetric access functions
|
// ccMetric access functions
|
||||||
type CCMetric interface {
|
type CCMetric interface {
|
||||||
ToPoint(metaAsTags bool) *write.Point // Generate influxDB point for data type ccMetric
|
ToPoint(metaAsTags map[string]bool) *write.Point // Generate influxDB point for data type ccMetric
|
||||||
ToLineProtocol(metaAsTags bool) string // Generate influxDB line protocol for data type ccMetric
|
ToLineProtocol(metaAsTags map[string]bool) string // Generate influxDB line protocol for data type ccMetric
|
||||||
|
|
||||||
Name() string // Get metric name
|
Name() string // Get metric name
|
||||||
SetName(name string) // Set metric name
|
SetName(name string) // Set metric name
|
||||||
@ -61,25 +61,18 @@ func (m *ccMetric) String() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ToLineProtocol generates influxDB line protocol for data type ccMetric
|
// ToLineProtocol generates influxDB line protocol for data type ccMetric
|
||||||
func (m *ccMetric) ToPoint(metaAsTags bool) (p *write.Point) {
|
func (m *ccMetric) ToPoint(metaAsTags map[string]bool) (p *write.Point) {
|
||||||
|
|
||||||
if !metaAsTags {
|
|
||||||
p = influxdb2.NewPoint(m.name, m.tags, m.fields, m.tm)
|
p = influxdb2.NewPoint(m.name, m.tags, m.fields, m.tm)
|
||||||
} else {
|
for key, ok1 := range metaAsTags {
|
||||||
tags := make(map[string]string, len(m.tags)+len(m.meta))
|
if val, ok2 := m.GetMeta(key); ok1 && ok2 {
|
||||||
for key, value := range m.tags {
|
p.AddTag(key, val)
|
||||||
tags[key] = value
|
|
||||||
}
|
}
|
||||||
for key, value := range m.meta {
|
|
||||||
tags[key] = value
|
|
||||||
}
|
}
|
||||||
p = influxdb2.NewPoint(m.name, tags, m.fields, m.tm)
|
return p
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ToLineProtocol generates influxDB line protocol for data type ccMetric
|
// ToLineProtocol generates influxDB line protocol for data type ccMetric
|
||||||
func (m *ccMetric) ToLineProtocol(metaAsTags bool) string {
|
func (m *ccMetric) ToLineProtocol(metaAsTags map[string]bool) string {
|
||||||
|
|
||||||
return write.PointToLineProtocol(
|
return write.PointToLineProtocol(
|
||||||
m.ToPoint(metaAsTags),
|
m.ToPoint(metaAsTags),
|
||||||
|
@ -25,6 +25,7 @@ type metricRouterTagConfig struct {
|
|||||||
|
|
||||||
// Metric router configuration
|
// Metric router configuration
|
||||||
type metricRouterConfig struct {
|
type metricRouterConfig struct {
|
||||||
|
HostnameTagName string `json:"hostname_tag"` // Key name used when adding the hostname to a metric (default 'hostname')
|
||||||
AddTags []metricRouterTagConfig `json:"add_tags"` // List of tags that are added when the condition is met
|
AddTags []metricRouterTagConfig `json:"add_tags"` // List of tags that are added when the condition is met
|
||||||
DelTags []metricRouterTagConfig `json:"delete_tags"` // List of tags that are removed when the condition is met
|
DelTags []metricRouterTagConfig `json:"delete_tags"` // List of tags that are removed when the condition is met
|
||||||
IntervalAgg []agg.MetricAggregatorIntervalConfig `json:"interval_aggregates"` // List of aggregation function processed at the end of an interval
|
IntervalAgg []agg.MetricAggregatorIntervalConfig `json:"interval_aggregates"` // List of aggregation function processed at the end of an interval
|
||||||
@ -33,6 +34,7 @@ type metricRouterConfig struct {
|
|||||||
RenameMetrics map[string]string `json:"rename_metrics"` // Map to rename metric name from key to value
|
RenameMetrics map[string]string `json:"rename_metrics"` // Map to rename metric name from key to value
|
||||||
IntervalStamp bool `json:"interval_timestamp"` // Update timestamp periodically by ticker each interval?
|
IntervalStamp bool `json:"interval_timestamp"` // Update timestamp periodically by ticker each interval?
|
||||||
NumCacheIntervals int `json:"num_cache_intervals"` // Number of intervals of cached metrics for evaluation
|
NumCacheIntervals int `json:"num_cache_intervals"` // Number of intervals of cached metrics for evaluation
|
||||||
|
MaxForward int `json:"max_forward"` // Number of maximal forwarded metrics at one select
|
||||||
dropMetrics map[string]bool // Internal map for O(1) lookup
|
dropMetrics map[string]bool // Internal map for O(1) lookup
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,7 +78,8 @@ func (r *metricRouter) Init(ticker mct.MultiChanTicker, wg *sync.WaitGroup, rout
|
|||||||
r.cache_input = make(chan lp.CCMetric)
|
r.cache_input = make(chan lp.CCMetric)
|
||||||
r.wg = wg
|
r.wg = wg
|
||||||
r.ticker = ticker
|
r.ticker = ticker
|
||||||
r.maxForward = ROUTER_MAX_FORWARD
|
r.config.MaxForward = ROUTER_MAX_FORWARD
|
||||||
|
r.config.HostnameTagName = "hostname"
|
||||||
|
|
||||||
// Set hostname
|
// Set hostname
|
||||||
hostname, err := os.Hostname()
|
hostname, err := os.Hostname()
|
||||||
@ -100,6 +103,7 @@ func (r *metricRouter) Init(ticker mct.MultiChanTicker, wg *sync.WaitGroup, rout
|
|||||||
cclog.ComponentError("MetricRouter", err.Error())
|
cclog.ComponentError("MetricRouter", err.Error())
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
r.maxForward = r.config.MaxForward
|
||||||
if r.config.NumCacheIntervals > 0 {
|
if r.config.NumCacheIntervals > 0 {
|
||||||
r.cache, err = NewCache(r.cache_input, r.ticker, &r.cachewg, r.config.NumCacheIntervals)
|
r.cache, err = NewCache(r.cache_input, r.ticker, &r.cachewg, r.config.NumCacheIntervals)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -244,8 +248,10 @@ func (r *metricRouter) Start() {
|
|||||||
cclog.ComponentDebug("MetricRouter", "FORWARD", point)
|
cclog.ComponentDebug("MetricRouter", "FORWARD", point)
|
||||||
r.DoAddTags(point)
|
r.DoAddTags(point)
|
||||||
r.DoDelTags(point)
|
r.DoDelTags(point)
|
||||||
if new, ok := r.config.RenameMetrics[point.Name()]; ok {
|
name := point.Name()
|
||||||
|
if new, ok := r.config.RenameMetrics[name]; ok {
|
||||||
point.SetName(new)
|
point.SetName(new)
|
||||||
|
point.AddMeta("oldname", name)
|
||||||
}
|
}
|
||||||
r.DoAddTags(point)
|
r.DoAddTags(point)
|
||||||
r.DoDelTags(point)
|
r.DoDelTags(point)
|
||||||
@ -258,7 +264,7 @@ func (r *metricRouter) Start() {
|
|||||||
// Foward message received from collector channel
|
// Foward message received from collector channel
|
||||||
coll_forward := func(p lp.CCMetric) {
|
coll_forward := func(p lp.CCMetric) {
|
||||||
// receive from metric collector
|
// receive from metric collector
|
||||||
p.AddTag("hostname", r.hostname)
|
p.AddTag(r.config.HostnameTagName, r.hostname)
|
||||||
if r.config.IntervalStamp {
|
if r.config.IntervalStamp {
|
||||||
p.SetTime(r.timestamp)
|
p.SetTime(r.timestamp)
|
||||||
}
|
}
|
||||||
@ -287,7 +293,7 @@ func (r *metricRouter) Start() {
|
|||||||
cache_forward := func(p lp.CCMetric) {
|
cache_forward := func(p lp.CCMetric) {
|
||||||
// receive from metric collector
|
// receive from metric collector
|
||||||
if !r.dropMetric(p) {
|
if !r.dropMetric(p) {
|
||||||
p.AddTag("hostname", r.hostname)
|
p.AddTag(r.config.HostnameTagName, r.hostname)
|
||||||
forward(p)
|
forward(p)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -309,19 +315,19 @@ func (r *metricRouter) Start() {
|
|||||||
|
|
||||||
case p := <-r.coll_input:
|
case p := <-r.coll_input:
|
||||||
coll_forward(p)
|
coll_forward(p)
|
||||||
for i := 0; len(r.coll_input) > 0 && i < r.maxForward; i++ {
|
for i := 0; len(r.coll_input) > 0 && i < (r.maxForward-1); i++ {
|
||||||
coll_forward(<-r.coll_input)
|
coll_forward(<-r.coll_input)
|
||||||
}
|
}
|
||||||
|
|
||||||
case p := <-r.recv_input:
|
case p := <-r.recv_input:
|
||||||
recv_forward(p)
|
recv_forward(p)
|
||||||
for i := 0; len(r.recv_input) > 0 && i < r.maxForward; i++ {
|
for i := 0; len(r.recv_input) > 0 && i < (r.maxForward-1); i++ {
|
||||||
recv_forward(<-r.recv_input)
|
recv_forward(<-r.recv_input)
|
||||||
}
|
}
|
||||||
|
|
||||||
case p := <-r.cache_input:
|
case p := <-r.cache_input:
|
||||||
cache_forward(p)
|
cache_forward(p)
|
||||||
for i := 0; len(r.cache_input) > 0 && i < r.maxForward; i++ {
|
for i := 0; len(r.cache_input) > 0 && i < (r.maxForward-1); i++ {
|
||||||
cache_forward(<-r.cache_input)
|
cache_forward(<-r.cache_input)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ This allows to specify
|
|||||||
|
|
||||||
- [`nats`](./natsReceiver.md): Receive metrics from the NATS network
|
- [`nats`](./natsReceiver.md): Receive metrics from the NATS network
|
||||||
- [`prometheus`](./prometheusReceiver.md): Scrape data from a Prometheus client
|
- [`prometheus`](./prometheusReceiver.md): Scrape data from a Prometheus client
|
||||||
|
- [`http`](./httpReceiver.md): Listen for HTTP Post requests transporting metrics in InfluxDB line protocol
|
||||||
|
|
||||||
# Contributing own receivers
|
# Contributing own receivers
|
||||||
A receiver contains a few functions and is derived from the type `Receiver` (in `metricReceiver.go`):
|
A receiver contains a few functions and is derived from the type `Receiver` (in `metricReceiver.go`):
|
||||||
|
118
receivers/httpReceiver.go
Normal file
118
receivers/httpReceiver.go
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
package receivers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
||||||
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||||
|
"github.com/gorilla/mux"
|
||||||
|
influx "github.com/influxdata/line-protocol"
|
||||||
|
)
|
||||||
|
|
||||||
|
const HTTP_RECEIVER_PORT = "8080"
|
||||||
|
|
||||||
|
type HttpReceiverConfig struct {
|
||||||
|
Type string `json:"type"`
|
||||||
|
Addr string `json:"address"`
|
||||||
|
Port string `json:"port"`
|
||||||
|
Path string `json:"path"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type HttpReceiver struct {
|
||||||
|
receiver
|
||||||
|
handler *influx.MetricHandler
|
||||||
|
parser *influx.Parser
|
||||||
|
meta map[string]string
|
||||||
|
config HttpReceiverConfig
|
||||||
|
router *mux.Router
|
||||||
|
server *http.Server
|
||||||
|
wg sync.WaitGroup
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *HttpReceiver) Init(name string, config json.RawMessage) error {
|
||||||
|
r.name = fmt.Sprintf("HttpReceiver(%s)", name)
|
||||||
|
r.config.Port = HTTP_RECEIVER_PORT
|
||||||
|
if len(config) > 0 {
|
||||||
|
err := json.Unmarshal(config, &r.config)
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(r.name, "Error reading config:", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(r.config.Port) == 0 {
|
||||||
|
return errors.New("not all configuration variables set required by HttpReceiver")
|
||||||
|
}
|
||||||
|
r.meta = map[string]string{"source": r.name}
|
||||||
|
p := r.config.Path
|
||||||
|
if !strings.HasPrefix(p, "/") {
|
||||||
|
p = "/" + p
|
||||||
|
}
|
||||||
|
uri := fmt.Sprintf("%s:%s%s", r.config.Addr, r.config.Port, p)
|
||||||
|
cclog.ComponentDebug(r.name, "INIT", uri)
|
||||||
|
r.handler = influx.NewMetricHandler()
|
||||||
|
r.parser = influx.NewParser(r.handler)
|
||||||
|
r.parser.SetTimeFunc(DefaultTime)
|
||||||
|
|
||||||
|
r.router = mux.NewRouter()
|
||||||
|
r.router.Path(p).HandlerFunc(r.ServerHttp)
|
||||||
|
r.server = &http.Server{Addr: uri, Handler: r.router}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *HttpReceiver) Start() {
|
||||||
|
cclog.ComponentDebug(r.name, "START")
|
||||||
|
r.wg.Add(1)
|
||||||
|
go func() {
|
||||||
|
err := r.server.ListenAndServe()
|
||||||
|
if err != nil && err.Error() != "http: Server closed" {
|
||||||
|
cclog.ComponentError(r.name, err.Error())
|
||||||
|
}
|
||||||
|
r.wg.Done()
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *HttpReceiver) ServerHttp(w http.ResponseWriter, req *http.Request) {
|
||||||
|
if req.Method != http.MethodPost {
|
||||||
|
http.Error(w, "Method Not Allowed", http.StatusMethodNotAllowed)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
body, err := ioutil.ReadAll(req.Body)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
metrics, err := r.parser.Parse(body)
|
||||||
|
if err != nil {
|
||||||
|
http.Error(w, err.Error(), http.StatusBadRequest)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, m := range metrics {
|
||||||
|
y := lp.FromInfluxMetric(m)
|
||||||
|
for k, v := range r.meta {
|
||||||
|
y.AddMeta(k, v)
|
||||||
|
}
|
||||||
|
if r.sink != nil {
|
||||||
|
r.sink <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *HttpReceiver) Close() {
|
||||||
|
r.server.Shutdown(context.Background())
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewHttpReceiver(name string, config json.RawMessage) (Receiver, error) {
|
||||||
|
r := new(HttpReceiver)
|
||||||
|
err := r.Init(name, config)
|
||||||
|
return r, err
|
||||||
|
}
|
23
receivers/httpReceiver.md
Normal file
23
receivers/httpReceiver.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## `http` receiver
|
||||||
|
|
||||||
|
The `http` receiver can be used receive metrics through HTTP POST requests.
|
||||||
|
|
||||||
|
### Configuration structure
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"<name>": {
|
||||||
|
"type": "http",
|
||||||
|
"address" : "",
|
||||||
|
"port" : "8080",
|
||||||
|
"path" : "/write"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
- `type`: makes the receiver a `http` receiver
|
||||||
|
- `address`: Listen address
|
||||||
|
- `port`: Listen port
|
||||||
|
- `path`: URL path for the write endpoint
|
||||||
|
|
||||||
|
The HTTP endpoint listens to `http://<address>:<port>/<path>`
|
12
scripts/cc-metric-collector.deb.control
Normal file
12
scripts/cc-metric-collector.deb.control
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Package: cc-metric-collector
|
||||||
|
Version: {VERSION}
|
||||||
|
Installed-Size: {INSTALLED_SIZE}
|
||||||
|
Architecture: {ARCH}
|
||||||
|
Maintainer: thomas.gruber@fau.de
|
||||||
|
Depends: libc6 (>= 2.2.1)
|
||||||
|
Build-Depends: debhelper-compat (= 13), git, golang-go
|
||||||
|
Description: Metric collection daemon from the ClusterCockpit suite
|
||||||
|
Homepage: https://github.com/ClusterCockpit/cc-metric-collector
|
||||||
|
Source: cc-metric-collector
|
||||||
|
Rules-Requires-Root: no
|
||||||
|
|
@ -8,8 +8,8 @@ Source0: %{name}-%{version}.tar.gz
|
|||||||
|
|
||||||
BuildRequires: go-toolset
|
BuildRequires: go-toolset
|
||||||
BuildRequires: systemd-rpm-macros
|
BuildRequires: systemd-rpm-macros
|
||||||
# for internal LIKWID installation
|
# for header downloads
|
||||||
BuildRequires: wget perl-Data-Dumper
|
BuildRequires: wget
|
||||||
|
|
||||||
Provides: %{name} = %{version}
|
Provides: %{name} = %{version}
|
||||||
|
|
||||||
|
@ -148,10 +148,14 @@ type GangliaMetricConfig struct {
|
|||||||
Unit string
|
Unit string
|
||||||
Group string
|
Group string
|
||||||
Value string
|
Value string
|
||||||
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetCommonGangliaConfig(point lp.CCMetric) GangliaMetricConfig {
|
func GetCommonGangliaConfig(point lp.CCMetric) GangliaMetricConfig {
|
||||||
mname := GangliaMetricRename(point.Name())
|
mname := GangliaMetricRename(point.Name())
|
||||||
|
if oldname, ok := point.GetMeta("oldname"); ok {
|
||||||
|
mname = GangliaMetricRename(oldname)
|
||||||
|
}
|
||||||
for _, group := range CommonGangliaMetrics {
|
for _, group := range CommonGangliaMetrics {
|
||||||
for _, metric := range group.Metrics {
|
for _, metric := range group.Metrics {
|
||||||
if metric.Name == mname {
|
if metric.Name == mname {
|
||||||
@ -187,6 +191,7 @@ func GetCommonGangliaConfig(point lp.CCMetric) GangliaMetricConfig {
|
|||||||
Tmax: metric.Tmax,
|
Tmax: metric.Tmax,
|
||||||
Unit: metric.Unit,
|
Unit: metric.Unit,
|
||||||
Value: valueStr,
|
Value: valueStr,
|
||||||
|
Name: GangliaMetricRename(mname),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -198,10 +203,15 @@ func GetCommonGangliaConfig(point lp.CCMetric) GangliaMetricConfig {
|
|||||||
Tmax: 0,
|
Tmax: 0,
|
||||||
Unit: "",
|
Unit: "",
|
||||||
Value: "",
|
Value: "",
|
||||||
|
Name: "",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetGangliaConfig(point lp.CCMetric) GangliaMetricConfig {
|
func GetGangliaConfig(point lp.CCMetric) GangliaMetricConfig {
|
||||||
|
mname := GangliaMetricRename(point.Name())
|
||||||
|
if oldname, ok := point.GetMeta("oldname"); ok {
|
||||||
|
mname = GangliaMetricRename(oldname)
|
||||||
|
}
|
||||||
group := ""
|
group := ""
|
||||||
if g, ok := point.GetMeta("group"); ok {
|
if g, ok := point.GetMeta("group"); ok {
|
||||||
group = g
|
group = g
|
||||||
@ -254,5 +264,6 @@ func GetGangliaConfig(point lp.CCMetric) GangliaMetricConfig {
|
|||||||
Tmax: DEFAULT_GANGLIA_METRIC_TMAX,
|
Tmax: DEFAULT_GANGLIA_METRIC_TMAX,
|
||||||
Unit: unit,
|
Unit: unit,
|
||||||
Value: valueStr,
|
Value: valueStr,
|
||||||
|
Name: GangliaMetricRename(mname),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -39,16 +39,13 @@ func (s *GangliaSink) Write(point lp.CCMetric) error {
|
|||||||
//var tagsstr []string
|
//var tagsstr []string
|
||||||
var argstr []string
|
var argstr []string
|
||||||
|
|
||||||
// Get metric name
|
|
||||||
metricname := GangliaMetricRename(point.Name())
|
|
||||||
|
|
||||||
// Get metric config (type, value, ... in suitable format)
|
// Get metric config (type, value, ... in suitable format)
|
||||||
conf := GetCommonGangliaConfig(point)
|
conf := GetCommonGangliaConfig(point)
|
||||||
if len(conf.Type) == 0 {
|
if len(conf.Type) == 0 {
|
||||||
conf = GetGangliaConfig(point)
|
conf = GetGangliaConfig(point)
|
||||||
}
|
}
|
||||||
if len(conf.Type) == 0 {
|
if len(conf.Type) == 0 {
|
||||||
return fmt.Errorf("metric %s has no 'value' field", metricname)
|
return fmt.Errorf("metric %q (Ganglia name %q) has no 'value' field", point.Name(), conf.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.config.AddGangliaGroup {
|
if s.config.AddGangliaGroup {
|
||||||
@ -70,7 +67,7 @@ func (s *GangliaSink) Write(point lp.CCMetric) error {
|
|||||||
if s.config.AddTypeToName {
|
if s.config.AddTypeToName {
|
||||||
argstr = append(argstr, fmt.Sprintf("--name=%s", GangliaMetricName(point)))
|
argstr = append(argstr, fmt.Sprintf("--name=%s", GangliaMetricName(point)))
|
||||||
} else {
|
} else {
|
||||||
argstr = append(argstr, fmt.Sprintf("--name=%s", metricname))
|
argstr = append(argstr, fmt.Sprintf("--name=%s", conf.Name))
|
||||||
}
|
}
|
||||||
argstr = append(argstr, fmt.Sprintf("--slope=%s", conf.Slope))
|
argstr = append(argstr, fmt.Sprintf("--slope=%s", conf.Slope))
|
||||||
argstr = append(argstr, fmt.Sprintf("--value=%s", conf.Value))
|
argstr = append(argstr, fmt.Sprintf("--value=%s", conf.Value))
|
||||||
|
@ -53,7 +53,7 @@ func (s *HttpSink) Write(m lp.CCMetric) error {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
p := m.ToPoint(s.config.MetaAsTags)
|
p := m.ToPoint(s.meta_as_tags)
|
||||||
|
|
||||||
s.lock.Lock()
|
s.lock.Lock()
|
||||||
_, err := s.encoder.Encode(p)
|
_, err := s.encoder.Encode(p)
|
||||||
@ -159,6 +159,11 @@ func NewHttpSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s.flushDelay = t
|
s.flushDelay = t
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Create lookup map to use meta infos as tags in the output metric
|
||||||
|
s.meta_as_tags = make(map[string]bool)
|
||||||
|
for _, k := range s.config.MetaAsTags {
|
||||||
|
s.meta_as_tags[k] = true
|
||||||
|
}
|
||||||
tr := &http.Transport{
|
tr := &http.Transport{
|
||||||
MaxIdleConns: s.maxIdleConns,
|
MaxIdleConns: s.maxIdleConns,
|
||||||
IdleConnTimeout: s.idleConnTimeout,
|
IdleConnTimeout: s.idleConnTimeout,
|
||||||
|
@ -6,6 +6,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"time"
|
||||||
|
|
||||||
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||||
@ -27,6 +28,10 @@ type InfluxAsyncSinkConfig struct {
|
|||||||
BatchSize uint `json:"batch_size,omitempty"`
|
BatchSize uint `json:"batch_size,omitempty"`
|
||||||
// Interval, in ms, in which is buffer flushed if it has not been already written (by reaching batch size) . Default 1000ms
|
// Interval, in ms, in which is buffer flushed if it has not been already written (by reaching batch size) . Default 1000ms
|
||||||
FlushInterval uint `json:"flush_interval,omitempty"`
|
FlushInterval uint `json:"flush_interval,omitempty"`
|
||||||
|
InfluxRetryInterval string `json:"retry_interval"`
|
||||||
|
InfluxExponentialBase uint `json:"retry_exponential_base"`
|
||||||
|
InfluxMaxRetries uint `json:"max_retries"`
|
||||||
|
InfluxMaxRetryTime string `json:"max_retry_time"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type InfluxAsyncSink struct {
|
type InfluxAsyncSink struct {
|
||||||
@ -35,6 +40,8 @@ type InfluxAsyncSink struct {
|
|||||||
writeApi influxdb2Api.WriteAPI
|
writeApi influxdb2Api.WriteAPI
|
||||||
errors <-chan error
|
errors <-chan error
|
||||||
config InfluxAsyncSinkConfig
|
config InfluxAsyncSinkConfig
|
||||||
|
influxRetryInterval uint
|
||||||
|
influxMaxRetryTime uint
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *InfluxAsyncSink) connect() error {
|
func (s *InfluxAsyncSink) connect() error {
|
||||||
@ -63,6 +70,11 @@ func (s *InfluxAsyncSink) connect() error {
|
|||||||
InsecureSkipVerify: true,
|
InsecureSkipVerify: true,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
clientOptions.SetMaxRetryInterval(s.influxRetryInterval)
|
||||||
|
clientOptions.SetMaxRetryTime(s.influxMaxRetryTime)
|
||||||
|
clientOptions.SetExponentialBase(s.config.InfluxExponentialBase)
|
||||||
|
clientOptions.SetMaxRetries(s.config.InfluxMaxRetries)
|
||||||
|
|
||||||
s.client = influxdb2.NewClientWithOptions(uri, auth, clientOptions)
|
s.client = influxdb2.NewClientWithOptions(uri, auth, clientOptions)
|
||||||
s.writeApi = s.client.WriteAPI(s.config.Organization, s.config.Database)
|
s.writeApi = s.client.WriteAPI(s.config.Organization, s.config.Database)
|
||||||
ok, err := s.client.Ping(context.Background())
|
ok, err := s.client.Ping(context.Background())
|
||||||
@ -77,7 +89,7 @@ func (s *InfluxAsyncSink) connect() error {
|
|||||||
|
|
||||||
func (s *InfluxAsyncSink) Write(m lp.CCMetric) error {
|
func (s *InfluxAsyncSink) Write(m lp.CCMetric) error {
|
||||||
s.writeApi.WritePoint(
|
s.writeApi.WritePoint(
|
||||||
m.ToPoint(s.config.MetaAsTags),
|
m.ToPoint(s.meta_as_tags),
|
||||||
)
|
)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -99,6 +111,33 @@ func NewInfluxAsyncSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
|
|
||||||
// Set default for maximum number of points sent to server in single request.
|
// Set default for maximum number of points sent to server in single request.
|
||||||
s.config.BatchSize = 100
|
s.config.BatchSize = 100
|
||||||
|
s.influxRetryInterval = uint(time.Duration(1) * time.Second)
|
||||||
|
s.config.InfluxRetryInterval = "1s"
|
||||||
|
s.influxMaxRetryTime = uint(7 * time.Duration(24) * time.Hour)
|
||||||
|
s.config.InfluxMaxRetryTime = "168h"
|
||||||
|
s.config.InfluxMaxRetries = 20
|
||||||
|
s.config.InfluxExponentialBase = 2
|
||||||
|
|
||||||
|
// Default retry intervals (in seconds)
|
||||||
|
// 1 2
|
||||||
|
// 2 4
|
||||||
|
// 4 8
|
||||||
|
// 8 16
|
||||||
|
// 16 32
|
||||||
|
// 32 64
|
||||||
|
// 64 128
|
||||||
|
// 128 256
|
||||||
|
// 256 512
|
||||||
|
// 512 1024
|
||||||
|
// 1024 2048
|
||||||
|
// 2048 4096
|
||||||
|
// 4096 8192
|
||||||
|
// 8192 16384
|
||||||
|
// 16384 32768
|
||||||
|
// 32768 65536
|
||||||
|
// 65536 131072
|
||||||
|
// 131072 262144
|
||||||
|
// 262144 524288
|
||||||
|
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
err := json.Unmarshal(config, &s.config)
|
||||||
@ -113,6 +152,21 @@ func NewInfluxAsyncSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
len(s.config.Password) == 0 {
|
len(s.config.Password) == 0 {
|
||||||
return nil, errors.New("not all configuration variables set required by InfluxAsyncSink")
|
return nil, errors.New("not all configuration variables set required by InfluxAsyncSink")
|
||||||
}
|
}
|
||||||
|
// Create lookup map to use meta infos as tags in the output metric
|
||||||
|
s.meta_as_tags = make(map[string]bool)
|
||||||
|
for _, k := range s.config.MetaAsTags {
|
||||||
|
s.meta_as_tags[k] = true
|
||||||
|
}
|
||||||
|
|
||||||
|
toUint := func(duration string, def uint) uint {
|
||||||
|
t, err := time.ParseDuration(duration)
|
||||||
|
if err == nil {
|
||||||
|
return uint(t.Milliseconds())
|
||||||
|
}
|
||||||
|
return def
|
||||||
|
}
|
||||||
|
s.influxRetryInterval = toUint(s.config.InfluxRetryInterval, s.influxRetryInterval)
|
||||||
|
s.influxMaxRetryTime = toUint(s.config.InfluxMaxRetryTime, s.influxMaxRetryTime)
|
||||||
|
|
||||||
// Connect to InfluxDB server
|
// Connect to InfluxDB server
|
||||||
if err := s.connect(); err != nil {
|
if err := s.connect(); err != nil {
|
||||||
|
@ -18,6 +18,10 @@ The `influxasync` sink uses the official [InfluxDB golang client](https://pkg.go
|
|||||||
"organization": "myorg",
|
"organization": "myorg",
|
||||||
"ssl": true,
|
"ssl": true,
|
||||||
"batch_size": 200,
|
"batch_size": 200,
|
||||||
|
"retry_interval" : "1s",
|
||||||
|
"retry_exponential_base" : 2,
|
||||||
|
"max_retries": 20,
|
||||||
|
"max_retry_time" : "168h"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@ -32,3 +36,9 @@ The `influxasync` sink uses the official [InfluxDB golang client](https://pkg.go
|
|||||||
- `organization`: Organization in the InfluxDB
|
- `organization`: Organization in the InfluxDB
|
||||||
- `ssl`: Use SSL connection
|
- `ssl`: Use SSL connection
|
||||||
- `batch_size`: batch up metrics internally, default 100
|
- `batch_size`: batch up metrics internally, default 100
|
||||||
|
- `retry_interval`: Base retry interval for failed write requests, default 1s
|
||||||
|
- `retry_exponential_base`: The retry interval is exponentially increased with this base, default 2
|
||||||
|
- `max_retries`: Maximal number of retry attempts
|
||||||
|
- `max_retry_time`: Maximal time to retry failed writes, default 168h (one week)
|
||||||
|
|
||||||
|
For information about the calculation of the retry interval settings, see [offical influxdb-client-go documentation](https://github.com/influxdata/influxdb-client-go#handling-of-failed-async-writes)
|
@ -6,6 +6,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"time"
|
||||||
|
|
||||||
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||||
@ -23,6 +24,11 @@ type InfluxSinkConfig struct {
|
|||||||
Organization string `json:"organization,omitempty"`
|
Organization string `json:"organization,omitempty"`
|
||||||
SSL bool `json:"ssl,omitempty"`
|
SSL bool `json:"ssl,omitempty"`
|
||||||
RetentionPol string `json:"retention_policy,omitempty"`
|
RetentionPol string `json:"retention_policy,omitempty"`
|
||||||
|
InfluxRetryInterval string `json:"retry_interval"`
|
||||||
|
InfluxExponentialBase uint `json:"retry_exponential_base"`
|
||||||
|
InfluxMaxRetries uint `json:"max_retries"`
|
||||||
|
InfluxMaxRetryTime string `json:"max_retry_time"`
|
||||||
|
//InfluxMaxRetryDelay string `json:"max_retry_delay"` // It is mentioned in the docs but there is no way to set it
|
||||||
}
|
}
|
||||||
|
|
||||||
type InfluxSink struct {
|
type InfluxSink struct {
|
||||||
@ -30,6 +36,9 @@ type InfluxSink struct {
|
|||||||
client influxdb2.Client
|
client influxdb2.Client
|
||||||
writeApi influxdb2Api.WriteAPIBlocking
|
writeApi influxdb2Api.WriteAPIBlocking
|
||||||
config InfluxSinkConfig
|
config InfluxSinkConfig
|
||||||
|
influxRetryInterval uint
|
||||||
|
influxMaxRetryTime uint
|
||||||
|
//influxMaxRetryDelay uint
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *InfluxSink) connect() error {
|
func (s *InfluxSink) connect() error {
|
||||||
@ -52,6 +61,12 @@ func (s *InfluxSink) connect() error {
|
|||||||
InsecureSkipVerify: true,
|
InsecureSkipVerify: true,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
clientOptions.SetMaxRetryInterval(s.influxRetryInterval)
|
||||||
|
clientOptions.SetMaxRetryTime(s.influxMaxRetryTime)
|
||||||
|
clientOptions.SetExponentialBase(s.config.InfluxExponentialBase)
|
||||||
|
clientOptions.SetMaxRetries(s.config.InfluxMaxRetries)
|
||||||
|
|
||||||
s.client = influxdb2.NewClientWithOptions(uri, auth, clientOptions)
|
s.client = influxdb2.NewClientWithOptions(uri, auth, clientOptions)
|
||||||
s.writeApi = s.client.WriteAPIBlocking(s.config.Organization, s.config.Database)
|
s.writeApi = s.client.WriteAPIBlocking(s.config.Organization, s.config.Database)
|
||||||
ok, err := s.client.Ping(context.Background())
|
ok, err := s.client.Ping(context.Background())
|
||||||
@ -68,7 +83,7 @@ func (s *InfluxSink) Write(m lp.CCMetric) error {
|
|||||||
err :=
|
err :=
|
||||||
s.writeApi.WritePoint(
|
s.writeApi.WritePoint(
|
||||||
context.Background(),
|
context.Background(),
|
||||||
m.ToPoint(s.config.MetaAsTags),
|
m.ToPoint(s.meta_as_tags),
|
||||||
)
|
)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -91,6 +106,13 @@ func NewInfluxSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
s.influxRetryInterval = uint(time.Duration(1) * time.Second)
|
||||||
|
s.config.InfluxRetryInterval = "1s"
|
||||||
|
s.influxMaxRetryTime = uint(7 * time.Duration(24) * time.Hour)
|
||||||
|
s.config.InfluxMaxRetryTime = "168h"
|
||||||
|
s.config.InfluxMaxRetries = 20
|
||||||
|
s.config.InfluxExponentialBase = 2
|
||||||
|
|
||||||
if len(s.config.Host) == 0 ||
|
if len(s.config.Host) == 0 ||
|
||||||
len(s.config.Port) == 0 ||
|
len(s.config.Port) == 0 ||
|
||||||
len(s.config.Database) == 0 ||
|
len(s.config.Database) == 0 ||
|
||||||
@ -98,6 +120,21 @@ func NewInfluxSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
len(s.config.Password) == 0 {
|
len(s.config.Password) == 0 {
|
||||||
return nil, errors.New("not all configuration variables set required by InfluxSink")
|
return nil, errors.New("not all configuration variables set required by InfluxSink")
|
||||||
}
|
}
|
||||||
|
// Create lookup map to use meta infos as tags in the output metric
|
||||||
|
s.meta_as_tags = make(map[string]bool)
|
||||||
|
for _, k := range s.config.MetaAsTags {
|
||||||
|
s.meta_as_tags[k] = true
|
||||||
|
}
|
||||||
|
|
||||||
|
toUint := func(duration string, def uint) uint {
|
||||||
|
t, err := time.ParseDuration(duration)
|
||||||
|
if err == nil {
|
||||||
|
return uint(t.Milliseconds())
|
||||||
|
}
|
||||||
|
return def
|
||||||
|
}
|
||||||
|
s.influxRetryInterval = toUint(s.config.InfluxRetryInterval, s.influxRetryInterval)
|
||||||
|
s.influxMaxRetryTime = toUint(s.config.InfluxMaxRetryTime, s.influxMaxRetryTime)
|
||||||
|
|
||||||
// Connect to InfluxDB server
|
// Connect to InfluxDB server
|
||||||
if err := s.connect(); err != nil {
|
if err := s.connect(); err != nil {
|
||||||
|
@ -17,6 +17,10 @@ The `influxdb` sink uses the official [InfluxDB golang client](https://pkg.go.de
|
|||||||
"password" : "examplepw",
|
"password" : "examplepw",
|
||||||
"organization": "myorg",
|
"organization": "myorg",
|
||||||
"ssl": true,
|
"ssl": true,
|
||||||
|
"retry_interval" : "1s",
|
||||||
|
"retry_exponential_base" : 2,
|
||||||
|
"max_retries": 20,
|
||||||
|
"max_retry_time" : "168h"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@ -30,3 +34,9 @@ The `influxdb` sink uses the official [InfluxDB golang client](https://pkg.go.de
|
|||||||
- `password`: Password for basic authentification
|
- `password`: Password for basic authentification
|
||||||
- `organization`: Organization in the InfluxDB
|
- `organization`: Organization in the InfluxDB
|
||||||
- `ssl`: Use SSL connection
|
- `ssl`: Use SSL connection
|
||||||
|
- `retry_interval`: Base retry interval for failed write requests, default 1s
|
||||||
|
- `retry_exponential_base`: The retry interval is exponentially increased with this base, default 2
|
||||||
|
- `max_retries`: Maximal number of retry attempts
|
||||||
|
- `max_retry_time`: Maximal time to retry failed writes, default 168h (one week)
|
||||||
|
|
||||||
|
For information about the calculation of the retry interval settings, see [offical influxdb-client-go documentation](https://github.com/influxdata/influxdb-client-go#handling-of-failed-async-writes)
|
@ -124,24 +124,21 @@ func (s *LibgangliaSink) Write(point lp.CCMetric) error {
|
|||||||
return s.cstrCache[key]
|
return s.cstrCache[key]
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get metric name
|
|
||||||
metricname := GangliaMetricRename(point.Name())
|
|
||||||
|
|
||||||
conf := GetCommonGangliaConfig(point)
|
conf := GetCommonGangliaConfig(point)
|
||||||
if len(conf.Type) == 0 {
|
if len(conf.Type) == 0 {
|
||||||
conf = GetGangliaConfig(point)
|
conf = GetGangliaConfig(point)
|
||||||
}
|
}
|
||||||
if len(conf.Type) == 0 {
|
if len(conf.Type) == 0 {
|
||||||
return fmt.Errorf("metric %s has no 'value' field", metricname)
|
return fmt.Errorf("metric %q (Ganglia name %q) has no 'value' field", point.Name(), conf.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.config.AddTypeToName {
|
if s.config.AddTypeToName {
|
||||||
metricname = GangliaMetricName(point)
|
conf.Name = GangliaMetricName(point)
|
||||||
}
|
}
|
||||||
|
|
||||||
c_value = C.CString(conf.Value)
|
c_value = C.CString(conf.Value)
|
||||||
c_type = lookup(conf.Type)
|
c_type = lookup(conf.Type)
|
||||||
c_name = lookup(metricname)
|
c_name = lookup(conf.Name)
|
||||||
|
|
||||||
// Add unit
|
// Add unit
|
||||||
unit := ""
|
unit := ""
|
||||||
|
@ -5,12 +5,12 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type defaultSinkConfig struct {
|
type defaultSinkConfig struct {
|
||||||
MetaAsTags bool `json:"meta_as_tags,omitempty"`
|
MetaAsTags []string `json:"meta_as_tags,omitempty"`
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type sink struct {
|
type sink struct {
|
||||||
meta_as_tags bool // Use meta data tags as tags
|
meta_as_tags map[string]bool // Use meta data tags as tags
|
||||||
name string // Name of the sink
|
name string // Name of the sink
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ func (s *NatsSink) connect() error {
|
|||||||
|
|
||||||
func (s *NatsSink) Write(m lp.CCMetric) error {
|
func (s *NatsSink) Write(m lp.CCMetric) error {
|
||||||
if s.client != nil {
|
if s.client != nil {
|
||||||
_, err := s.encoder.Encode(m.ToPoint(s.config.MetaAsTags))
|
_, err := s.encoder.Encode(m.ToPoint(s.meta_as_tags))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(s.name, "Write:", err.Error())
|
cclog.ComponentError(s.name, "Write:", err.Error())
|
||||||
return err
|
return err
|
||||||
@ -97,6 +97,11 @@ func NewNatsSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
len(s.config.Database) == 0 {
|
len(s.config.Database) == 0 {
|
||||||
return nil, errors.New("not all configuration variables set required by NatsSink")
|
return nil, errors.New("not all configuration variables set required by NatsSink")
|
||||||
}
|
}
|
||||||
|
// Create lookup map to use meta infos as tags in the output metric
|
||||||
|
s.meta_as_tags = make(map[string]bool)
|
||||||
|
for _, k := range s.config.MetaAsTags {
|
||||||
|
s.meta_as_tags[k] = true
|
||||||
|
}
|
||||||
// Setup Influx line protocol
|
// Setup Influx line protocol
|
||||||
s.buffer = &bytes.Buffer{}
|
s.buffer = &bytes.Buffer{}
|
||||||
s.buffer.Grow(1025)
|
s.buffer.Grow(1025)
|
||||||
@ -105,7 +110,7 @@ func NewNatsSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s.encoder.SetMaxLineBytes(1024)
|
s.encoder.SetMaxLineBytes(1024)
|
||||||
// Setup infos for connection
|
// Setup infos for connection
|
||||||
if err := s.connect(); err != nil {
|
if err := s.connect(); err != nil {
|
||||||
return nil, fmt.Errorf("Unable to connect: %v", err)
|
return nil, fmt.Errorf("unable to connect: %v", err)
|
||||||
}
|
}
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
@ -10,14 +10,14 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type SampleSinkConfig struct {
|
type SampleSinkConfig struct {
|
||||||
// defines JSON tags for 'type' and 'meta_as_tags'
|
// defines JSON tags for 'type' and 'meta_as_tags' (string list)
|
||||||
// See: metricSink.go
|
// See: metricSink.go
|
||||||
defaultSinkConfig
|
defaultSinkConfig
|
||||||
// Additional config options, for SampleSink
|
// Additional config options, for SampleSink
|
||||||
}
|
}
|
||||||
|
|
||||||
type SampleSink struct {
|
type SampleSink struct {
|
||||||
// declares elements 'name' and 'meta_as_tags'
|
// declares elements 'name' and 'meta_as_tags' (string to bool map!)
|
||||||
sink
|
sink
|
||||||
config SampleSinkConfig // entry point to the SampleSinkConfig
|
config SampleSinkConfig // entry point to the SampleSinkConfig
|
||||||
}
|
}
|
||||||
@ -28,6 +28,7 @@ type SampleSink struct {
|
|||||||
|
|
||||||
// Code to submit a single CCMetric to the sink
|
// Code to submit a single CCMetric to the sink
|
||||||
func (s *SampleSink) Write(point lp.CCMetric) error {
|
func (s *SampleSink) Write(point lp.CCMetric) error {
|
||||||
|
// based on s.meta_as_tags use meta infos as tags
|
||||||
log.Print(point)
|
log.Print(point)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -62,6 +63,12 @@ func NewSampleSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create lookup map to use meta infos as tags in the output metric
|
||||||
|
s.meta_as_tags = make(map[string]bool)
|
||||||
|
for _, k := range s.config.MetaAsTags {
|
||||||
|
s.meta_as_tags[k] = true
|
||||||
|
}
|
||||||
|
|
||||||
// Check if all required fields in the config are set
|
// Check if all required fields in the config are set
|
||||||
// E.g. use 'len(s.config.Option) > 0' for string settings
|
// E.g. use 'len(s.config.Option) > 0' for string settings
|
||||||
|
|
||||||
|
@ -63,7 +63,11 @@ func NewStdoutSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s.output = f
|
s.output = f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
s.meta_as_tags = s.config.MetaAsTags
|
// Create lookup map to use meta infos as tags in the output metric
|
||||||
|
s.meta_as_tags = make(map[string]bool)
|
||||||
|
for _, k := range s.config.MetaAsTags {
|
||||||
|
s.meta_as_tags[k] = true
|
||||||
|
}
|
||||||
|
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user