mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-07-20 20:01:40 +02:00
Compare commits
17 Commits
v0.6.6
...
slurm_cgro
Author | SHA1 | Date | |
---|---|---|---|
|
a7bf94a52b | ||
|
2e8182adb8 | ||
|
8055d1425c | ||
|
8450bc4342 | ||
|
113ccb3ac5 | ||
|
48335dd872 | ||
|
bace84bad0 | ||
|
9b671ce68f | ||
|
226e8425cb | ||
|
a37f6603c8 | ||
|
78902305e8 | ||
|
6ab45dd3ec | ||
|
9df1054e32 | ||
|
e76eaa86ad | ||
|
262f0c6a86 | ||
|
b488ff76b1 | ||
|
e7b77f7721 |
97
.github/workflows/Release.yml
vendored
97
.github/workflows/Release.yml
vendored
@@ -8,16 +8,17 @@ on:
|
|||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- '**'
|
- '**'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
#
|
#
|
||||||
# Build on AlmaLinux 8.5 using go-toolset
|
# Build on AlmaLinux 8 using go-toolset
|
||||||
#
|
#
|
||||||
AlmaLinux-RPM-build:
|
AlmaLinux-RPM-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# See: https://hub.docker.com/_/almalinux
|
# See: https://hub.docker.com/_/almalinux
|
||||||
container: almalinux:8.5
|
container: almalinux:8
|
||||||
# The job outputs link to the outputs of the 'rpmrename' step
|
# The job outputs link to the outputs of the 'rpmrename' step
|
||||||
# Only job outputs can be used in child jobs
|
# Only job outputs can be used in child jobs
|
||||||
outputs:
|
outputs:
|
||||||
@@ -35,7 +36,7 @@ jobs:
|
|||||||
# fetch-depth must be 0 to use git describe
|
# fetch-depth must be 0 to use git describe
|
||||||
# See: https://github.com/marketplace/actions/checkout
|
# See: https://github.com/marketplace/actions/checkout
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
@@ -43,11 +44,11 @@ jobs:
|
|||||||
# Use dnf to install build dependencies
|
# Use dnf to install build dependencies
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
wget -q http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-1.18.2-1.module_el8.7.0+1173+5d37c0fd.x86_64.rpm \
|
dnf --assumeyes install \
|
||||||
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-bin-1.18.2-1.module_el8.7.0+1173+5d37c0fd.x86_64.rpm \
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-src-1.18.2-1.module_el8.7.0+1173+5d37c0fd.noarch.rpm \
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-bin-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/go-toolset-1.18.2-1.module_el8.7.0+1173+5d37c0fd.x86_64.rpm
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-src-1.20.6-2.module_el8+658+f14b2092.noarch.rpm \
|
||||||
rpm -i go*.rpm
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/go-toolset-1.20.6-1.module_el8+602+8bb8a8d6.x86_64.rpm
|
||||||
|
|
||||||
- name: RPM build MetricCollector
|
- name: RPM build MetricCollector
|
||||||
id: rpmbuild
|
id: rpmbuild
|
||||||
@@ -55,18 +56,18 @@ jobs:
|
|||||||
git config --global --add safe.directory /__w/cc-metric-collector/cc-metric-collector
|
git config --global --add safe.directory /__w/cc-metric-collector/cc-metric-collector
|
||||||
make RPM
|
make RPM
|
||||||
|
|
||||||
# AlmaLinux 8.5 is a derivate of RedHat Enterprise Linux 8 (UBI8),
|
# AlmaLinux 8 is a derivate of RedHat Enterprise Linux 8 (UBI8),
|
||||||
# so the created RPM both contain the substring 'el8' in the RPM file names
|
# 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
|
# This step replaces the substring 'el8' to 'alma8'. It uses the move operation
|
||||||
# because it is unclear whether the default AlmaLinux 8.5 container contains the
|
# because it is unclear whether the default AlmaLinux 8 container contains the
|
||||||
# 'rename' command. This way we also get the new names for output.
|
# 'rename' command. This way we also get the new names for output.
|
||||||
- name: Rename RPMs (s/el8/alma85/)
|
- name: Rename RPMs (s/el8/alma8/)
|
||||||
id: rpmrename
|
id: rpmrename
|
||||||
run: |
|
run: |
|
||||||
OLD_RPM="${{steps.rpmbuild.outputs.RPM}}"
|
OLD_RPM="${{steps.rpmbuild.outputs.RPM}}"
|
||||||
OLD_SRPM="${{steps.rpmbuild.outputs.SRPM}}"
|
OLD_SRPM="${{steps.rpmbuild.outputs.SRPM}}"
|
||||||
NEW_RPM="${OLD_RPM/el8/alma85}"
|
NEW_RPM="${OLD_RPM/el8/alma8}"
|
||||||
NEW_SRPM=${OLD_SRPM/el8/alma85}
|
NEW_SRPM=${OLD_SRPM/el8/alma8}
|
||||||
mv "${OLD_RPM}" "${NEW_RPM}"
|
mv "${OLD_RPM}" "${NEW_RPM}"
|
||||||
mv "${OLD_SRPM}" "${NEW_SRPM}"
|
mv "${OLD_SRPM}" "${NEW_SRPM}"
|
||||||
echo "::set-output name=SRPM::${NEW_SRPM}"
|
echo "::set-output name=SRPM::${NEW_SRPM}"
|
||||||
@@ -76,12 +77,12 @@ jobs:
|
|||||||
- name: Save RPM as artifact
|
- name: Save RPM as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector RPM for AlmaLinux 8.5
|
name: cc-metric-collector RPM for AlmaLinux 8
|
||||||
path: ${{ steps.rpmrename.outputs.RPM }}
|
path: ${{ steps.rpmrename.outputs.RPM }}
|
||||||
- name: Save SRPM as artifact
|
- name: Save SRPM as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector SRPM for AlmaLinux 8.5
|
name: cc-metric-collector SRPM for AlmaLinux 8
|
||||||
path: ${{ steps.rpmrename.outputs.SRPM }}
|
path: ${{ steps.rpmrename.outputs.SRPM }}
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -89,8 +90,8 @@ jobs:
|
|||||||
#
|
#
|
||||||
UBI-8-RPM-build:
|
UBI-8-RPM-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# See: https://catalog.redhat.com/software/containers/ubi8/ubi/5c359854d70cc534b3a3784e?container-tabs=gti
|
# See: https://catalog.redhat.com/software/containers/ubi8/ubi/5c35984d70cc534b3a3784e?container-tabs=gti
|
||||||
container: registry.access.redhat.com/ubi8/ubi:8.5-226.1645809065
|
container: registry.access.redhat.com/ubi8/ubi:8.8-1032.1692772289
|
||||||
# The job outputs link to the outputs of the 'rpmbuild' step
|
# The job outputs link to the outputs of the 'rpmbuild' step
|
||||||
outputs:
|
outputs:
|
||||||
rpm : ${{steps.rpmbuild.outputs.RPM}}
|
rpm : ${{steps.rpmbuild.outputs.RPM}}
|
||||||
@@ -105,7 +106,7 @@ jobs:
|
|||||||
# fetch-depth must be 0 to use git describe
|
# fetch-depth must be 0 to use git describe
|
||||||
# See: https://github.com/marketplace/actions/checkout
|
# See: https://github.com/marketplace/actions/checkout
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
@@ -113,11 +114,11 @@ jobs:
|
|||||||
# Use dnf to install build dependencies
|
# Use dnf to install build dependencies
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
wget -q http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-1.18.2-1.module_el8.7.0+1173+5d37c0fd.x86_64.rpm \
|
dnf --assumeyes --disableplugin=subscription-manager install \
|
||||||
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-bin-1.18.2-1.module_el8.7.0+1173+5d37c0fd.x86_64.rpm \
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-src-1.18.2-1.module_el8.7.0+1173+5d37c0fd.noarch.rpm \
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-bin-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/go-toolset-1.18.2-1.module_el8.7.0+1173+5d37c0fd.x86_64.rpm
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-src-1.20.6-2.module_el8+658+f14b2092.noarch.rpm \
|
||||||
rpm -i go*.rpm
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/go-toolset-1.20.6-1.module_el8+602+8bb8a8d6.x86_64.rpm
|
||||||
|
|
||||||
- name: RPM build MetricCollector
|
- name: RPM build MetricCollector
|
||||||
id: rpmbuild
|
id: rpmbuild
|
||||||
@@ -138,11 +139,11 @@ jobs:
|
|||||||
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Build on Ubuntu 20.04 using official go package
|
# Build on Ubuntu 22.04 using official go package
|
||||||
#
|
#
|
||||||
Ubuntu-focal-build:
|
Ubuntu-jammy-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ubuntu:20.04
|
container: ubuntu:22.04
|
||||||
# The job outputs link to the outputs of the 'debrename' step
|
# The job outputs link to the outputs of the 'debrename' step
|
||||||
# Only job outputs can be used in child jobs
|
# Only job outputs can be used in child jobs
|
||||||
outputs:
|
outputs:
|
||||||
@@ -157,15 +158,15 @@ jobs:
|
|||||||
# fetch-depth must be 0 to use git describe
|
# fetch-depth must be 0 to use git describe
|
||||||
# See: https://github.com/marketplace/actions/checkout
|
# See: https://github.com/marketplace/actions/checkout
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
# Use official golang package
|
# Use official golang package
|
||||||
- name: Install Golang
|
- name: Install Golang
|
||||||
run: |
|
run: |
|
||||||
wget -q https://go.dev/dl/go1.19.1.linux-amd64.tar.gz
|
wget -q https://go.dev/dl/go1.21.1.linux-amd64.tar.gz --output-document=- | \
|
||||||
tar -C /usr/local -xzf go1.19.1.linux-amd64.tar.gz
|
tar --directory=/usr/local --extract --gzip
|
||||||
export PATH=/usr/local/go/bin:/usr/local/go/pkg/tool/linux_amd64:$PATH
|
export PATH=/usr/local/go/bin:/usr/local/go/pkg/tool/linux_amd64:$PATH
|
||||||
go version
|
go version
|
||||||
- name: DEB build MetricCollector
|
- name: DEB build MetricCollector
|
||||||
@@ -174,18 +175,18 @@ jobs:
|
|||||||
export PATH=/usr/local/go/bin:/usr/local/go/pkg/tool/linux_amd64:$PATH
|
export PATH=/usr/local/go/bin:/usr/local/go/pkg/tool/linux_amd64:$PATH
|
||||||
git config --global --add safe.directory /__w/cc-metric-collector/cc-metric-collector
|
git config --global --add safe.directory /__w/cc-metric-collector/cc-metric-collector
|
||||||
make DEB
|
make DEB
|
||||||
- name: Rename DEB (add '_ubuntu20.04')
|
- name: Rename DEB (add '_ubuntu22.04')
|
||||||
id: debrename
|
id: debrename
|
||||||
run: |
|
run: |
|
||||||
OLD_DEB_NAME=$(echo "${{steps.dpkg-build.outputs.DEB}}" | rev | cut -d '.' -f 2- | rev)
|
OLD_DEB_NAME=$(echo "${{steps.dpkg-build.outputs.DEB}}" | rev | cut -d '.' -f 2- | rev)
|
||||||
NEW_DEB_FILE="${OLD_DEB_NAME}_ubuntu20.04.deb"
|
NEW_DEB_FILE="${OLD_DEB_NAME}_ubuntu22.04.deb"
|
||||||
mv "${{steps.dpkg-build.outputs.DEB}}" "${NEW_DEB_FILE}"
|
mv "${{steps.dpkg-build.outputs.DEB}}" "${NEW_DEB_FILE}"
|
||||||
echo "::set-output name=DEB::${NEW_DEB_FILE}"
|
echo "::set-output name=DEB::${NEW_DEB_FILE}"
|
||||||
# See: https://github.com/actions/upload-artifact
|
# See: https://github.com/actions/upload-artifact
|
||||||
- name: Save DEB as artifact
|
- name: Save DEB as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector DEB for Ubuntu 20.04
|
name: cc-metric-collector DEB for Ubuntu 22.04
|
||||||
path: ${{ steps.debrename.outputs.DEB }}
|
path: ${{ steps.debrename.outputs.DEB }}
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -198,15 +199,15 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
# See: https://github.com/actions/download-artifact
|
# See: https://github.com/actions/download-artifact
|
||||||
- name: Download AlmaLinux 8.5 RPM
|
- name: Download AlmaLinux 8 RPM
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector RPM for AlmaLinux 8.5
|
name: cc-metric-collector RPM for AlmaLinux 8
|
||||||
- name: Download AlmaLinux 8.5 SRPM
|
- name: Download AlmaLinux 8 SRPM
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector SRPM for AlmaLinux 8.5
|
name: cc-metric-collector SRPM for AlmaLinux 8
|
||||||
|
|
||||||
- name: Download UBI 8 RPM
|
- name: Download UBI 8 RPM
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
@@ -216,10 +217,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: cc-metric-collector SRPM for UBI 8
|
name: cc-metric-collector SRPM for UBI 8
|
||||||
|
|
||||||
- name: Download Ubuntu 20.04 DEB
|
- name: Download Ubuntu 22.04 DEB
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector DEB for Ubuntu 20.04
|
name: cc-metric-collector DEB for Ubuntu 22.04
|
||||||
|
|
||||||
# The download actions do not publish the name of the downloaded file,
|
# 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
|
# so we re-use the job outputs of the parent jobs. The files are all
|
||||||
@@ -230,18 +231,18 @@ jobs:
|
|||||||
- name: Set RPM variables
|
- name: Set RPM variables
|
||||||
id: files
|
id: files
|
||||||
run: |
|
run: |
|
||||||
ALMA_85_RPM=$(basename "${{ needs.AlmaLinux-RPM-build.outputs.rpm}}")
|
ALMA_8_RPM=$(basename "${{ needs.AlmaLinux-RPM-build.outputs.rpm}}")
|
||||||
ALMA_85_SRPM=$(basename "${{ needs.AlmaLinux-RPM-build.outputs.srpm}}")
|
ALMA_8_SRPM=$(basename "${{ needs.AlmaLinux-RPM-build.outputs.srpm}}")
|
||||||
UBI_8_RPM=$(basename "${{ needs.UBI-8-RPM-build.outputs.rpm}}")
|
UBI_8_RPM=$(basename "${{ needs.UBI-8-RPM-build.outputs.rpm}}")
|
||||||
UBI_8_SRPM=$(basename "${{ needs.UBI-8-RPM-build.outputs.srpm}}")
|
UBI_8_SRPM=$(basename "${{ needs.UBI-8-RPM-build.outputs.srpm}}")
|
||||||
U_2004_DEB=$(basename "${{ needs.Ubuntu-focal-build.outputs.deb}}")
|
U_2004_DEB=$(basename "${{ needs.Ubuntu-focal-build.outputs.deb}}")
|
||||||
echo "ALMA_85_RPM::${ALMA_85_RPM}"
|
echo "ALMA_8_RPM::${ALMA_8_RPM}"
|
||||||
echo "ALMA_85_SRPM::${ALMA_85_SRPM}"
|
echo "ALMA_8_SRPM::${ALMA_8_SRPM}"
|
||||||
echo "UBI_8_RPM::${UBI_8_RPM}"
|
echo "UBI_8_RPM::${UBI_8_RPM}"
|
||||||
echo "UBI_8_SRPM::${UBI_8_SRPM}"
|
echo "UBI_8_SRPM::${UBI_8_SRPM}"
|
||||||
echo "U_2004_DEB::${U_2004_DEB}"
|
echo "U_2004_DEB::${U_2004_DEB}"
|
||||||
echo "::set-output name=ALMA_85_RPM::${ALMA_85_RPM}"
|
echo "::set-output name=ALMA_8_RPM::${ALMA_8_RPM}"
|
||||||
echo "::set-output name=ALMA_85_SRPM::${ALMA_85_SRPM}"
|
echo "::set-output name=ALMA_8_SRPM::${ALMA_8_SRPM}"
|
||||||
echo "::set-output name=UBI_8_RPM::${UBI_8_RPM}"
|
echo "::set-output name=UBI_8_RPM::${UBI_8_RPM}"
|
||||||
echo "::set-output name=UBI_8_SRPM::${UBI_8_SRPM}"
|
echo "::set-output name=UBI_8_SRPM::${UBI_8_SRPM}"
|
||||||
echo "::set-output name=U_2004_DEB::${U_2004_DEB}"
|
echo "::set-output name=U_2004_DEB::${U_2004_DEB}"
|
||||||
@@ -253,8 +254,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: cc-metric-collector-${{github.ref_name}}
|
name: cc-metric-collector-${{github.ref_name}}
|
||||||
files: |
|
files: |
|
||||||
${{ steps.files.outputs.ALMA_85_RPM }}
|
${{ steps.files.outputs.ALMA_8_RPM }}
|
||||||
${{ steps.files.outputs.ALMA_85_SRPM }}
|
${{ steps.files.outputs.ALMA_8_SRPM }}
|
||||||
${{ steps.files.outputs.UBI_8_RPM }}
|
${{ steps.files.outputs.UBI_8_RPM }}
|
||||||
${{ steps.files.outputs.UBI_8_SRPM }}
|
${{ steps.files.outputs.UBI_8_SRPM }}
|
||||||
${{ steps.files.outputs.U_2004_DEB }}
|
${{ steps.files.outputs.U_2004_DEB }}
|
||||||
|
199
.github/workflows/runonce.yml
vendored
199
.github/workflows/runonce.yml
vendored
@@ -4,60 +4,11 @@
|
|||||||
name: Run Test
|
name: Run Test
|
||||||
|
|
||||||
# Run on event push
|
# Run on event push
|
||||||
on: push
|
on:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
#
|
|
||||||
# Job build-1-18
|
|
||||||
# Build on latest Ubuntu using golang version 1.18
|
|
||||||
#
|
|
||||||
build-1-18:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
# See: https://github.com/marketplace/actions/checkout
|
|
||||||
# Checkout git repository and submodules
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
# See: https://github.com/marketplace/actions/setup-go-environment
|
|
||||||
- name: Setup Golang
|
|
||||||
uses: actions/setup-go@v3
|
|
||||||
with:
|
|
||||||
go-version: '1.18.2'
|
|
||||||
|
|
||||||
- name: Build MetricCollector
|
|
||||||
run: make
|
|
||||||
|
|
||||||
- name: Run MetricCollector once
|
|
||||||
run: ./cc-metric-collector --once --config .github/ci-config.json
|
|
||||||
|
|
||||||
#
|
|
||||||
# Job build-1-19
|
|
||||||
# Build on latest Ubuntu using golang version 1.19
|
|
||||||
#
|
|
||||||
build-1-19:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
# See: https://github.com/marketplace/actions/checkout
|
|
||||||
# Checkout git repository and submodules
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
# See: https://github.com/marketplace/actions/setup-go-environment
|
|
||||||
- name: Setup Golang
|
|
||||||
uses: actions/setup-go@v3
|
|
||||||
with:
|
|
||||||
go-version: '1.19'
|
|
||||||
|
|
||||||
- name: Build MetricCollector
|
|
||||||
run: make
|
|
||||||
|
|
||||||
- name: Run MetricCollector once
|
|
||||||
run: ./cc-metric-collector --once --config .github/ci-config.json
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Job build-1-20
|
# Job build-1-20
|
||||||
@@ -69,13 +20,13 @@ jobs:
|
|||||||
# See: https://github.com/marketplace/actions/checkout
|
# See: https://github.com/marketplace/actions/checkout
|
||||||
# Checkout git repository and submodules
|
# Checkout git repository and submodules
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
# See: https://github.com/marketplace/actions/setup-go-environment
|
# See: https://github.com/marketplace/actions/setup-go-environment
|
||||||
- name: Setup Golang
|
- name: Setup Golang
|
||||||
uses: actions/setup-go@v3
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: '1.20'
|
go-version: '1.20'
|
||||||
|
|
||||||
@@ -84,3 +35,143 @@ jobs:
|
|||||||
|
|
||||||
- name: Run MetricCollector once
|
- name: Run MetricCollector once
|
||||||
run: ./cc-metric-collector --once --config .github/ci-config.json
|
run: ./cc-metric-collector --once --config .github/ci-config.json
|
||||||
|
|
||||||
|
#
|
||||||
|
# Job build-1-21
|
||||||
|
# Build on latest Ubuntu using golang version 1.21
|
||||||
|
#
|
||||||
|
build-1-21:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
# See: https://github.com/marketplace/actions/checkout
|
||||||
|
# Checkout git repository and submodules
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
# See: https://github.com/marketplace/actions/setup-go-environment
|
||||||
|
- name: Setup Golang
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '1.21'
|
||||||
|
|
||||||
|
- name: Build MetricCollector
|
||||||
|
run: make
|
||||||
|
|
||||||
|
- name: Run MetricCollector once
|
||||||
|
run: ./cc-metric-collector --once --config .github/ci-config.json
|
||||||
|
|
||||||
|
#
|
||||||
|
# Build on AlmaLinux 8 using go-toolset
|
||||||
|
#
|
||||||
|
AlmaLinux-RPM-build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# See: https://hub.docker.com/_/almalinux
|
||||||
|
container: almalinux:8
|
||||||
|
# The job outputs link to the outputs of the 'rpmrename' step
|
||||||
|
# Only job outputs can be used in child jobs
|
||||||
|
steps:
|
||||||
|
|
||||||
|
# Use dnf to install development packages
|
||||||
|
- name: Install development packages
|
||||||
|
run: |
|
||||||
|
dnf --assumeyes group install "Development Tools" "RPM Development Tools"
|
||||||
|
dnf --assumeyes install wget openssl-devel diffutils delve which
|
||||||
|
|
||||||
|
# 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@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# Use dnf to install build dependencies
|
||||||
|
- name: Install build dependencies
|
||||||
|
run: |
|
||||||
|
dnf --assumeyes install \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-bin-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-src-1.20.6-2.module_el8+658+f14b2092.noarch.rpm \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/go-toolset-1.20.6-1.module_el8+602+8bb8a8d6.x86_64.rpm
|
||||||
|
|
||||||
|
- name: RPM build MetricCollector
|
||||||
|
id: rpmbuild
|
||||||
|
run: |
|
||||||
|
git config --global --add safe.directory /__w/cc-metric-collector/cc-metric-collector
|
||||||
|
make RPM
|
||||||
|
|
||||||
|
#
|
||||||
|
# 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.8-1032.1692772289
|
||||||
|
# The job outputs link to the outputs of the 'rpmbuild' step
|
||||||
|
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 wget openssl-devel diffutils delve which
|
||||||
|
|
||||||
|
# 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@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# Use dnf to install build dependencies
|
||||||
|
- name: Install build dependencies
|
||||||
|
run: |
|
||||||
|
dnf --assumeyes --disableplugin=subscription-manager install \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-bin-1.20.6-2.module_el8+658+f14b2092.x86_64.rpm \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/golang-src-1.20.6-2.module_el8+658+f14b2092.noarch.rpm \
|
||||||
|
http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/go-toolset-1.20.6-1.module_el8+602+8bb8a8d6.x86_64.rpm
|
||||||
|
|
||||||
|
- name: RPM build MetricCollector
|
||||||
|
id: rpmbuild
|
||||||
|
run: |
|
||||||
|
git config --global --add safe.directory /__w/cc-metric-collector/cc-metric-collector
|
||||||
|
make RPM
|
||||||
|
|
||||||
|
#
|
||||||
|
# Build on Ubuntu 22.04 using official go package
|
||||||
|
#
|
||||||
|
Ubuntu-jammy-build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: ubuntu:22.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# Use apt to install development packages
|
||||||
|
- name: Install development packages
|
||||||
|
run: |
|
||||||
|
apt update && apt --assume-yes upgrade
|
||||||
|
apt --assume-yes install build-essential sed git wget bash
|
||||||
|
# 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@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
fetch-depth: 0
|
||||||
|
# Use official golang package
|
||||||
|
- name: Install Golang
|
||||||
|
run: |
|
||||||
|
wget -q https://go.dev/dl/go1.21.1.linux-amd64.tar.gz --output-document=- | \
|
||||||
|
tar --directory=/usr/local --extract --gzip
|
||||||
|
export PATH=/usr/local/go/bin:/usr/local/go/pkg/tool/linux_amd64:$PATH
|
||||||
|
go version
|
||||||
|
- name: DEB build MetricCollector
|
||||||
|
id: dpkg-build
|
||||||
|
run: |
|
||||||
|
export PATH=/usr/local/go/bin:/usr/local/go/pkg/tool/linux_amd64:$PATH
|
||||||
|
git config --global --add safe.directory /__w/cc-metric-collector/cc-metric-collector
|
||||||
|
make DEB
|
@@ -40,6 +40,7 @@ In contrast to the configuration files for sinks and receivers, the collectors c
|
|||||||
* [`beegfs_meta`](./beegfsmetaMetric.md)
|
* [`beegfs_meta`](./beegfsmetaMetric.md)
|
||||||
* [`beegfs_storage`](./beegfsstorageMetric.md)
|
* [`beegfs_storage`](./beegfsstorageMetric.md)
|
||||||
* [`rocm_smi`](./rocmsmiMetric.md)
|
* [`rocm_smi`](./rocmsmiMetric.md)
|
||||||
|
* [`slurm`](./slurmJobDetector.md)
|
||||||
|
|
||||||
## Todos
|
## Todos
|
||||||
|
|
||||||
|
@@ -40,6 +40,8 @@ var AvailableCollectors = map[string]MetricCollector{
|
|||||||
"rocm_smi": new(RocmSmiCollector),
|
"rocm_smi": new(RocmSmiCollector),
|
||||||
"self": new(SelfCollector),
|
"self": new(SelfCollector),
|
||||||
"schedstat": new(SchedstatCollector),
|
"schedstat": new(SchedstatCollector),
|
||||||
|
"slurm": new(SlurmJobDetector),
|
||||||
|
"nfsiostat": new(NfsIOStatCollector),
|
||||||
}
|
}
|
||||||
|
|
||||||
// Metric collector manager data structure
|
// Metric collector manager data structure
|
||||||
|
@@ -14,29 +14,18 @@ import (
|
|||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
)
|
)
|
||||||
|
|
||||||
//
|
|
||||||
// CPUFreqCollector
|
// CPUFreqCollector
|
||||||
// a metric collector to measure the current frequency of the CPUs
|
// a metric collector to measure the current frequency of the CPUs
|
||||||
// as obtained from /proc/cpuinfo
|
// as obtained from /proc/cpuinfo
|
||||||
// Only measure on the first hyperthread
|
// Only measure on the first hyperthread
|
||||||
//
|
|
||||||
type CPUFreqCpuInfoCollectorTopology struct {
|
type CPUFreqCpuInfoCollectorTopology struct {
|
||||||
processor string // logical processor number (continuous, starting at 0)
|
isHT bool
|
||||||
coreID string // socket local core ID
|
tagSet map[string]string
|
||||||
coreID_int int64
|
|
||||||
physicalPackageID string // socket / package ID
|
|
||||||
physicalPackageID_int int64
|
|
||||||
numPhysicalPackages string // number of sockets / packages
|
|
||||||
numPhysicalPackages_int int64
|
|
||||||
isHT bool
|
|
||||||
numNonHT string // number of non hyperthreading processors
|
|
||||||
numNonHT_int int64
|
|
||||||
tagSet map[string]string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type CPUFreqCpuInfoCollector struct {
|
type CPUFreqCpuInfoCollector struct {
|
||||||
metricCollector
|
metricCollector
|
||||||
topology []*CPUFreqCpuInfoCollectorTopology
|
topology []CPUFreqCpuInfoCollectorTopology
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *CPUFreqCpuInfoCollector) Init(config json.RawMessage) error {
|
func (m *CPUFreqCpuInfoCollector) Init(config json.RawMessage) error {
|
||||||
@@ -65,11 +54,9 @@ func (m *CPUFreqCpuInfoCollector) Init(config json.RawMessage) error {
|
|||||||
// Collect topology information from file cpuinfo
|
// Collect topology information from file cpuinfo
|
||||||
foundFreq := false
|
foundFreq := false
|
||||||
processor := ""
|
processor := ""
|
||||||
var numNonHT_int int64 = 0
|
|
||||||
coreID := ""
|
coreID := ""
|
||||||
physicalPackageID := ""
|
physicalPackageID := ""
|
||||||
var maxPhysicalPackageID int64 = 0
|
m.topology = make([]CPUFreqCpuInfoCollectorTopology, 0)
|
||||||
m.topology = make([]*CPUFreqCpuInfoCollectorTopology, 0)
|
|
||||||
coreSeenBefore := make(map[string]bool)
|
coreSeenBefore := make(map[string]bool)
|
||||||
|
|
||||||
// Read cpuinfo file, line by line
|
// Read cpuinfo file, line by line
|
||||||
@@ -98,41 +85,22 @@ func (m *CPUFreqCpuInfoCollector) Init(config json.RawMessage) error {
|
|||||||
len(coreID) > 0 &&
|
len(coreID) > 0 &&
|
||||||
len(physicalPackageID) > 0 {
|
len(physicalPackageID) > 0 {
|
||||||
|
|
||||||
topology := new(CPUFreqCpuInfoCollectorTopology)
|
|
||||||
|
|
||||||
// Processor
|
|
||||||
topology.processor = processor
|
|
||||||
|
|
||||||
// Core ID
|
|
||||||
topology.coreID = coreID
|
|
||||||
topology.coreID_int, err = strconv.ParseInt(coreID, 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("unable to convert coreID '%s' to int64: %v", coreID, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Physical package ID
|
|
||||||
topology.physicalPackageID = physicalPackageID
|
|
||||||
topology.physicalPackageID_int, err = strconv.ParseInt(physicalPackageID, 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("unable to convert physicalPackageID '%s' to int64: %v", physicalPackageID, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// increase maximun socket / package ID, when required
|
|
||||||
if topology.physicalPackageID_int > maxPhysicalPackageID {
|
|
||||||
maxPhysicalPackageID = topology.physicalPackageID_int
|
|
||||||
}
|
|
||||||
|
|
||||||
// is hyperthread?
|
|
||||||
globalID := physicalPackageID + ":" + coreID
|
globalID := physicalPackageID + ":" + coreID
|
||||||
topology.isHT = coreSeenBefore[globalID]
|
|
||||||
coreSeenBefore[globalID] = true
|
|
||||||
if !topology.isHT {
|
|
||||||
// increase number on non hyper thread cores
|
|
||||||
numNonHT_int++
|
|
||||||
}
|
|
||||||
|
|
||||||
// store collected topology information
|
// store collected topology information
|
||||||
m.topology = append(m.topology, topology)
|
m.topology = append(m.topology,
|
||||||
|
CPUFreqCpuInfoCollectorTopology{
|
||||||
|
isHT: coreSeenBefore[globalID],
|
||||||
|
tagSet: map[string]string{
|
||||||
|
"type": "hwthread",
|
||||||
|
"type-id": processor,
|
||||||
|
"package_id": physicalPackageID,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
// mark core as seen before
|
||||||
|
coreSeenBefore[globalID] = true
|
||||||
|
|
||||||
// reset topology information
|
// reset topology information
|
||||||
foundFreq = false
|
foundFreq = false
|
||||||
@@ -142,24 +110,9 @@ func (m *CPUFreqCpuInfoCollector) Init(config json.RawMessage) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if at least one CPU with frequency information was detected
|
// Check if at least one CPU with frequency information was detected
|
||||||
if len(m.topology) == 0 {
|
if len(m.topology) == 0 {
|
||||||
return fmt.Errorf("No CPU frequency info found in %s", cpuInfoFile)
|
return fmt.Errorf("No CPU frequency info found in %s", cpuInfoFile)
|
||||||
}
|
|
||||||
|
|
||||||
numPhysicalPackageID_int := maxPhysicalPackageID + 1
|
|
||||||
numPhysicalPackageID := fmt.Sprint(numPhysicalPackageID_int)
|
|
||||||
numNonHT := fmt.Sprint(numNonHT_int)
|
|
||||||
for _, t := range m.topology {
|
|
||||||
t.numPhysicalPackages = numPhysicalPackageID
|
|
||||||
t.numPhysicalPackages_int = numPhysicalPackageID_int
|
|
||||||
t.numNonHT = numNonHT
|
|
||||||
t.numNonHT_int = numNonHT_int
|
|
||||||
t.tagSet = map[string]string{
|
|
||||||
"type": "hwthread",
|
|
||||||
"type-id": t.processor,
|
|
||||||
"package_id": t.physicalPackageID,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
m.init = true
|
m.init = true
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
## `cpufreq_cpuinfo` collector
|
## `cpufreq_cpuinfo` collector
|
||||||
|
|
||||||
```json
|
```json
|
||||||
"cpufreq_cpuinfo": {}
|
"cpufreq_cpuinfo": {}
|
||||||
```
|
```
|
||||||
@@ -7,4 +7,5 @@
|
|||||||
The `cpufreq_cpuinfo` collector reads the clock frequency from `/proc/cpuinfo` and outputs a handful **hwthread** metrics.
|
The `cpufreq_cpuinfo` collector reads the clock frequency from `/proc/cpuinfo` and outputs a handful **hwthread** metrics.
|
||||||
|
|
||||||
Metrics:
|
Metrics:
|
||||||
|
|
||||||
* `cpufreq`
|
* `cpufreq`
|
||||||
|
@@ -11,22 +11,13 @@ import (
|
|||||||
|
|
||||||
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
|
"github.com/ClusterCockpit/cc-metric-collector/pkg/ccTopology"
|
||||||
"golang.org/x/sys/unix"
|
"golang.org/x/sys/unix"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CPUFreqCollectorTopology struct {
|
type CPUFreqCollectorTopology struct {
|
||||||
processor string // logical processor number (continuous, starting at 0)
|
scalingCurFreqFile string
|
||||||
coreID string // socket local core ID
|
tagSet map[string]string
|
||||||
coreID_int int64
|
|
||||||
physicalPackageID string // socket / package ID
|
|
||||||
physicalPackageID_int int64
|
|
||||||
numPhysicalPackages string // number of sockets / packages
|
|
||||||
numPhysicalPackages_int int64
|
|
||||||
isHT bool
|
|
||||||
numNonHT string // number of non hyper-threading processors
|
|
||||||
numNonHT_int int64
|
|
||||||
scalingCurFreqFile string
|
|
||||||
tagSet map[string]string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// CPUFreqCollector
|
// CPUFreqCollector
|
||||||
@@ -64,112 +55,38 @@ func (m *CPUFreqCollector) Init(config json.RawMessage) error {
|
|||||||
"unit": "Hz",
|
"unit": "Hz",
|
||||||
}
|
}
|
||||||
|
|
||||||
// Loop for all CPU directories
|
m.topology = make([]CPUFreqCollectorTopology, 0)
|
||||||
baseDir := "/sys/devices/system/cpu"
|
for _, c := range ccTopology.CpuData() {
|
||||||
globPattern := filepath.Join(baseDir, "cpu[0-9]*")
|
|
||||||
cpuDirs, err := filepath.Glob(globPattern)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("unable to glob files with pattern '%s': %v", globPattern, err)
|
|
||||||
}
|
|
||||||
if cpuDirs == nil {
|
|
||||||
return fmt.Errorf("unable to find any files with pattern '%s'", globPattern)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Initialize CPU topology
|
// Skip hyper threading CPUs
|
||||||
m.topology = make([]CPUFreqCollectorTopology, len(cpuDirs))
|
if c.CpuID != c.CoreCPUsList[0] {
|
||||||
for _, cpuDir := range cpuDirs {
|
continue
|
||||||
processor := strings.TrimPrefix(cpuDir, "/sys/devices/system/cpu/cpu")
|
|
||||||
processor_int, err := strconv.ParseInt(processor, 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("unable to convert cpuID '%s' to int64: %v", processor, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read package ID
|
|
||||||
physicalPackageIDFile := filepath.Join(cpuDir, "topology", "physical_package_id")
|
|
||||||
line, err := os.ReadFile(physicalPackageIDFile)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("unable to read physical package ID from file '%s': %v", physicalPackageIDFile, err)
|
|
||||||
}
|
|
||||||
physicalPackageID := strings.TrimSpace(string(line))
|
|
||||||
physicalPackageID_int, err := strconv.ParseInt(physicalPackageID, 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("unable to convert packageID '%s' to int64: %v", physicalPackageID, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read core ID
|
|
||||||
coreIDFile := filepath.Join(cpuDir, "topology", "core_id")
|
|
||||||
line, err = os.ReadFile(coreIDFile)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("unable to read core ID from file '%s': %v", coreIDFile, err)
|
|
||||||
}
|
|
||||||
coreID := strings.TrimSpace(string(line))
|
|
||||||
coreID_int, err := strconv.ParseInt(coreID, 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
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("/sys/devices/system/cpu", fmt.Sprintf("cpu%d", c.CpuID), "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]
|
m.topology = append(m.topology,
|
||||||
t.processor = processor
|
CPUFreqCollectorTopology{
|
||||||
t.physicalPackageID = physicalPackageID
|
tagSet: map[string]string{
|
||||||
t.physicalPackageID_int = physicalPackageID_int
|
"type": "hwthread",
|
||||||
t.coreID = coreID
|
"type-id": fmt.Sprint(c.CpuID),
|
||||||
t.coreID_int = coreID_int
|
"package_id": fmt.Sprint(c.Socket),
|
||||||
t.scalingCurFreqFile = scalingCurFreqFile
|
},
|
||||||
}
|
scalingCurFreqFile: scalingCurFreqFile,
|
||||||
|
},
|
||||||
// is processor a hyper-thread?
|
)
|
||||||
coreSeenBefore := make(map[string]bool)
|
|
||||||
for i := range m.topology {
|
|
||||||
t := &m.topology[i]
|
|
||||||
|
|
||||||
globalID := t.physicalPackageID + ":" + t.coreID
|
|
||||||
t.isHT = coreSeenBefore[globalID]
|
|
||||||
coreSeenBefore[globalID] = true
|
|
||||||
}
|
|
||||||
|
|
||||||
// number of non hyper-thread cores and packages / sockets
|
|
||||||
var numNonHT_int int64 = 0
|
|
||||||
PhysicalPackageIDs := make(map[int64]struct{})
|
|
||||||
for i := range m.topology {
|
|
||||||
t := &m.topology[i]
|
|
||||||
|
|
||||||
if !t.isHT {
|
|
||||||
numNonHT_int++
|
|
||||||
}
|
|
||||||
|
|
||||||
PhysicalPackageIDs[t.physicalPackageID_int] = struct{}{}
|
|
||||||
}
|
|
||||||
|
|
||||||
numPhysicalPackageID_int := int64(len(PhysicalPackageIDs))
|
|
||||||
numPhysicalPackageID := fmt.Sprint(numPhysicalPackageID_int)
|
|
||||||
numNonHT := fmt.Sprint(numNonHT_int)
|
|
||||||
for i := range m.topology {
|
|
||||||
t := &m.topology[i]
|
|
||||||
t.numPhysicalPackages = numPhysicalPackageID
|
|
||||||
t.numPhysicalPackages_int = numPhysicalPackageID_int
|
|
||||||
t.numNonHT = numNonHT
|
|
||||||
t.numNonHT_int = numNonHT_int
|
|
||||||
t.tagSet = map[string]string{
|
|
||||||
"type": "hwthread",
|
|
||||||
"type-id": t.processor,
|
|
||||||
"package_id": t.physicalPackageID,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialized
|
// Initialized
|
||||||
cclog.ComponentDebug(
|
cclog.ComponentDebug(
|
||||||
m.name,
|
m.name,
|
||||||
"initialized",
|
"initialized",
|
||||||
numPhysicalPackageID_int, "physical packages,",
|
len(m.topology), "non-hyper-threading CPUs")
|
||||||
len(cpuDirs), "CPUs,",
|
|
||||||
numNonHT, "non-hyper-threading CPUs")
|
|
||||||
m.init = true
|
m.init = true
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@@ -184,11 +101,6 @@ func (m *CPUFreqCollector) Read(interval time.Duration, output chan lp.CCMetric)
|
|||||||
for i := range m.topology {
|
for i := range m.topology {
|
||||||
t := &m.topology[i]
|
t := &m.topology[i]
|
||||||
|
|
||||||
// skip hyper-threads
|
|
||||||
if t.isHT {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read current frequency
|
// Read current frequency
|
||||||
line, err := os.ReadFile(t.scalingCurFreqFile)
|
line, err := os.ReadFile(t.scalingCurFreqFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@@ -29,8 +29,8 @@ import (
|
|||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
topo "github.com/ClusterCockpit/cc-metric-collector/pkg/ccTopology"
|
topo "github.com/ClusterCockpit/cc-metric-collector/pkg/ccTopology"
|
||||||
"github.com/NVIDIA/go-nvml/pkg/dl"
|
"github.com/NVIDIA/go-nvml/pkg/dl"
|
||||||
|
"github.com/fsnotify/fsnotify"
|
||||||
"golang.design/x/thread"
|
"golang.design/x/thread"
|
||||||
fsnotify "gopkg.in/fsnotify.v1"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@@ -41,11 +41,14 @@ 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
|
||||||
Type string `json:"type"` // Metric type (aka node, socket, cpu, ...)
|
Type string `json:"type"` // Metric type (aka node, socket, cpu, ...)
|
||||||
Publish bool `json:"publish"`
|
Publish bool `json:"publish"`
|
||||||
Unit string `json:"unit"` // Unit of metric if any
|
SendCoreTotalVal bool `json:"send_core_total_values,omitempty"`
|
||||||
|
SendSocketTotalVal bool `json:"send_socket_total_values,omitempty"`
|
||||||
|
SendNodeTotalVal bool `json:"send_node_total_values,omitempty"`
|
||||||
|
Unit string `json:"unit"` // Unit of metric if any
|
||||||
}
|
}
|
||||||
|
|
||||||
type LikwidCollectorEventsetConfig struct {
|
type LikwidCollectorEventsetConfig struct {
|
||||||
@@ -59,7 +62,7 @@ type LikwidEventsetConfig struct {
|
|||||||
eorder []*C.char
|
eorder []*C.char
|
||||||
estr *C.char
|
estr *C.char
|
||||||
go_estr string
|
go_estr string
|
||||||
results map[int]map[string]interface{}
|
results map[int]map[string]float64
|
||||||
metrics map[int]map[string]float64
|
metrics map[int]map[string]float64
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,10 +82,11 @@ 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
|
||||||
|
tid2core map[int]int
|
||||||
|
tid2socket 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
|
||||||
gmresults map[int]map[string]float64
|
|
||||||
basefreq float64
|
basefreq float64
|
||||||
running bool
|
running bool
|
||||||
initialized bool
|
initialized bool
|
||||||
@@ -134,10 +138,10 @@ func genLikwidEventSet(input LikwidCollectorEventsetConfig) LikwidEventsetConfig
|
|||||||
elist = append(elist, c_counter)
|
elist = append(elist, c_counter)
|
||||||
}
|
}
|
||||||
estr := strings.Join(tmplist, ",")
|
estr := strings.Join(tmplist, ",")
|
||||||
res := make(map[int]map[string]interface{})
|
res := make(map[int]map[string]float64)
|
||||||
met := make(map[int]map[string]float64)
|
met := make(map[int]map[string]float64)
|
||||||
for _, i := range topo.CpuList() {
|
for _, i := range topo.CpuList() {
|
||||||
res[i] = make(map[string]interface{})
|
res[i] = make(map[string]float64)
|
||||||
for k := range input.Events {
|
for k := range input.Events {
|
||||||
res[i][k] = 0.0
|
res[i][k] = 0.0
|
||||||
}
|
}
|
||||||
@@ -157,7 +161,7 @@ func genLikwidEventSet(input LikwidCollectorEventsetConfig) LikwidEventsetConfig
|
|||||||
}
|
}
|
||||||
|
|
||||||
func testLikwidMetricFormula(formula string, params []string) bool {
|
func testLikwidMetricFormula(formula string, params []string) bool {
|
||||||
myparams := make(map[string]interface{})
|
myparams := make(map[string]float64)
|
||||||
for _, p := range params {
|
for _, p := range params {
|
||||||
myparams[p] = float64(1.0)
|
myparams[p] = float64(1.0)
|
||||||
}
|
}
|
||||||
@@ -236,13 +240,6 @@ func (m *LikwidCollector) Init(config json.RawMessage) error {
|
|||||||
|
|
||||||
m.likwidGroups = make(map[C.int]LikwidEventsetConfig)
|
m.likwidGroups = make(map[C.int]LikwidEventsetConfig)
|
||||||
|
|
||||||
// m.results = make(map[int]map[int]map[string]interface{})
|
|
||||||
// m.mresults = make(map[int]map[int]map[string]float64)
|
|
||||||
m.gmresults = make(map[int]map[string]float64)
|
|
||||||
for _, tid := range m.cpu2tid {
|
|
||||||
m.gmresults[tid] = make(map[string]float64)
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is for the global metrics computation test
|
// This is for the global metrics computation test
|
||||||
totalMetrics := 0
|
totalMetrics := 0
|
||||||
// Generate parameter list for the metric computing test
|
// Generate parameter list for the metric computing test
|
||||||
@@ -309,24 +306,18 @@ func (m *LikwidCollector) Init(config json.RawMessage) error {
|
|||||||
m.measureThread = thread.New()
|
m.measureThread = thread.New()
|
||||||
switch m.config.AccessMode {
|
switch m.config.AccessMode {
|
||||||
case "direct":
|
case "direct":
|
||||||
m.measureThread.Call(
|
C.HPMmode(0)
|
||||||
func() {
|
|
||||||
C.HPMmode(0)
|
|
||||||
})
|
|
||||||
case "accessdaemon":
|
case "accessdaemon":
|
||||||
if len(m.config.DaemonPath) > 0 {
|
if len(m.config.DaemonPath) > 0 {
|
||||||
p := os.Getenv("PATH")
|
p := os.Getenv("PATH")
|
||||||
os.Setenv("PATH", m.config.DaemonPath+":"+p)
|
os.Setenv("PATH", m.config.DaemonPath+":"+p)
|
||||||
}
|
}
|
||||||
m.measureThread.Call(
|
C.HPMmode(1)
|
||||||
func() {
|
retCode := C.HPMinit()
|
||||||
C.HPMmode(1)
|
if retCode != 0 {
|
||||||
retCode := C.HPMinit()
|
err := fmt.Errorf("C.HPMinit() failed with return code %v", retCode)
|
||||||
if retCode != 0 {
|
cclog.ComponentError(m.name, err.Error())
|
||||||
err := fmt.Errorf("C.HPMinit() failed with return code %v", retCode)
|
}
|
||||||
cclog.ComponentError(m.name, err.Error())
|
|
||||||
}
|
|
||||||
})
|
|
||||||
for _, c := range m.cpulist {
|
for _, c := range m.cpulist {
|
||||||
m.measureThread.Call(
|
m.measureThread.Call(
|
||||||
func() {
|
func() {
|
||||||
@@ -349,6 +340,21 @@ func (m *LikwidCollector) Init(config json.RawMessage) error {
|
|||||||
C.free(unsafe.Pointer(cstr))
|
C.free(unsafe.Pointer(cstr))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cpuData := topo.CpuData()
|
||||||
|
m.tid2core = make(map[int]int, len(cpuData))
|
||||||
|
m.tid2socket = make(map[int]int, len(cpuData))
|
||||||
|
for i := range cpuData {
|
||||||
|
c := &cpuData[i]
|
||||||
|
// Hardware thread ID to core ID mapping
|
||||||
|
if len(c.CoreCPUsList) > 0 {
|
||||||
|
m.tid2core[c.CpuID] = c.CoreCPUsList[0]
|
||||||
|
} else {
|
||||||
|
m.tid2core[c.CpuID] = c.CpuID
|
||||||
|
}
|
||||||
|
// Hardware thead ID to socket ID mapping
|
||||||
|
m.tid2socket[c.CpuID] = c.Socket
|
||||||
|
}
|
||||||
|
|
||||||
m.basefreq = getBaseFreq()
|
m.basefreq = getBaseFreq()
|
||||||
m.init = true
|
m.init = true
|
||||||
return nil
|
return nil
|
||||||
@@ -359,6 +365,8 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
var ret C.int
|
var ret C.int
|
||||||
var gid C.int = -1
|
var gid C.int = -1
|
||||||
sigchan := make(chan os.Signal, 1)
|
sigchan := make(chan os.Signal, 1)
|
||||||
|
|
||||||
|
// Watch changes for the lock file ()
|
||||||
watcher, err := fsnotify.NewWatcher()
|
watcher, err := fsnotify.NewWatcher()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(m.name, err.Error())
|
cclog.ComponentError(m.name, err.Error())
|
||||||
@@ -370,13 +378,13 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return true, err
|
return true, err
|
||||||
}
|
}
|
||||||
stat := info.Sys().(*syscall.Stat_t)
|
uid := info.Sys().(*syscall.Stat_t).Uid
|
||||||
if stat.Uid != uint32(os.Getuid()) {
|
if uid != uint32(os.Getuid()) {
|
||||||
usr, err := user.LookupId(strconv.FormatUint(uint64(stat.Uid), 10))
|
usr, err := user.LookupId(fmt.Sprint(uid))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return true, fmt.Errorf("Access to performance counters locked by %s", usr.Username)
|
return true, fmt.Errorf("Access to performance counters locked by %s", usr.Username)
|
||||||
} else {
|
} else {
|
||||||
return true, fmt.Errorf("Access to performance counters locked by %d", stat.Uid)
|
return true, fmt.Errorf("Access to performance counters locked by %d", uid)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err = watcher.Add(m.config.LockfilePath)
|
err = watcher.Add(m.config.LockfilePath)
|
||||||
@@ -386,6 +394,8 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
}
|
}
|
||||||
m.lock.Lock()
|
m.lock.Lock()
|
||||||
defer m.lock.Unlock()
|
defer m.lock.Unlock()
|
||||||
|
|
||||||
|
// Initialize the performance monitoring feature by creating basic data structures
|
||||||
select {
|
select {
|
||||||
case e := <-watcher.Events:
|
case e := <-watcher.Events:
|
||||||
ret = -1
|
ret = -1
|
||||||
@@ -400,6 +410,8 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
}
|
}
|
||||||
signal.Notify(sigchan, os.Interrupt)
|
signal.Notify(sigchan, os.Interrupt)
|
||||||
signal.Notify(sigchan, syscall.SIGCHLD)
|
signal.Notify(sigchan, syscall.SIGCHLD)
|
||||||
|
|
||||||
|
// Add an event string to LIKWID
|
||||||
select {
|
select {
|
||||||
case <-sigchan:
|
case <-sigchan:
|
||||||
gid = -1
|
gid = -1
|
||||||
@@ -415,8 +427,9 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
return true, fmt.Errorf("failed to add events %s, error %d", evset.go_estr, gid)
|
return true, fmt.Errorf("failed to add events %s, error %d", evset.go_estr, gid)
|
||||||
} else {
|
} else {
|
||||||
evset.gid = gid
|
evset.gid = gid
|
||||||
//m.likwidGroups[gid] = evset
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Setup all performance monitoring counters of an eventSet
|
||||||
select {
|
select {
|
||||||
case <-sigchan:
|
case <-sigchan:
|
||||||
ret = -1
|
ret = -1
|
||||||
@@ -430,6 +443,8 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
if ret != 0 {
|
if ret != 0 {
|
||||||
return true, fmt.Errorf("failed to setup events '%s', error %d", evset.go_estr, ret)
|
return true, fmt.Errorf("failed to setup events '%s', error %d", evset.go_estr, ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Start counters
|
||||||
select {
|
select {
|
||||||
case <-sigchan:
|
case <-sigchan:
|
||||||
ret = -1
|
ret = -1
|
||||||
@@ -456,7 +471,11 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
if ret != 0 {
|
if ret != 0 {
|
||||||
return true, fmt.Errorf("failed to read events '%s', error %d", evset.go_estr, ret)
|
return true, fmt.Errorf("failed to read events '%s', error %d", evset.go_estr, ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Wait
|
||||||
time.Sleep(interval)
|
time.Sleep(interval)
|
||||||
|
|
||||||
|
// Read counters
|
||||||
select {
|
select {
|
||||||
case <-sigchan:
|
case <-sigchan:
|
||||||
ret = -1
|
ret = -1
|
||||||
@@ -470,6 +489,8 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
if ret != 0 {
|
if ret != 0 {
|
||||||
return true, fmt.Errorf("failed to read events '%s', error %d", evset.go_estr, ret)
|
return true, fmt.Errorf("failed to read events '%s', error %d", evset.go_estr, ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Store counters
|
||||||
for eidx, counter := range evset.eorder {
|
for eidx, counter := range evset.eorder {
|
||||||
gctr := C.GoString(counter)
|
gctr := C.GoString(counter)
|
||||||
for _, tid := range m.cpu2tid {
|
for _, tid := range m.cpu2tid {
|
||||||
@@ -481,9 +502,13 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
evset.results[tid][gctr] = fres
|
evset.results[tid][gctr] = fres
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Store time in seconds the event group was measured the last time
|
||||||
for _, tid := range m.cpu2tid {
|
for _, tid := range m.cpu2tid {
|
||||||
evset.results[tid]["time"] = float64(C.perfmon_getLastTimeOfGroup(gid))
|
evset.results[tid]["time"] = float64(C.perfmon_getLastTimeOfGroup(gid))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Stop counters
|
||||||
select {
|
select {
|
||||||
case <-sigchan:
|
case <-sigchan:
|
||||||
ret = -1
|
ret = -1
|
||||||
@@ -497,6 +522,8 @@ func (m *LikwidCollector) takeMeasurement(evidx int, evset LikwidEventsetConfig,
|
|||||||
if ret != 0 {
|
if ret != 0 {
|
||||||
return true, fmt.Errorf("failed to stop events '%s', error %d", evset.go_estr, ret)
|
return true, fmt.Errorf("failed to stop events '%s', error %d", evset.go_estr, ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Deallocates all internal data that is used during performance monitoring
|
||||||
signal.Stop(sigchan)
|
signal.Stop(sigchan)
|
||||||
select {
|
select {
|
||||||
case e := <-watcher.Events:
|
case e := <-watcher.Events:
|
||||||
@@ -525,6 +552,9 @@ func (m *LikwidCollector) calcEventsetMetrics(evset LikwidEventsetConfig, interv
|
|||||||
if metric.Type == "socket" {
|
if metric.Type == "socket" {
|
||||||
scopemap = m.sock2tid
|
scopemap = m.sock2tid
|
||||||
}
|
}
|
||||||
|
// Send all metrics with same time stamp
|
||||||
|
// This function does only computiation, counter measurement is done before
|
||||||
|
now := time.Now()
|
||||||
for domain, tid := range scopemap {
|
for domain, tid := range scopemap {
|
||||||
if tid >= 0 && len(metric.Calc) > 0 {
|
if tid >= 0 && len(metric.Calc) > 0 {
|
||||||
value, err := agg.EvalFloat64Condition(metric.Calc, evset.results[tid])
|
value, err := agg.EvalFloat64Condition(metric.Calc, evset.results[tid])
|
||||||
@@ -537,23 +567,137 @@ func (m *LikwidCollector) calcEventsetMetrics(evset LikwidEventsetConfig, interv
|
|||||||
}
|
}
|
||||||
evset.metrics[tid][metric.Name] = value
|
evset.metrics[tid][metric.Name] = value
|
||||||
// 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) && metric.Publish {
|
||||||
if metric.Publish {
|
fields := map[string]interface{}{"value": value}
|
||||||
fields := map[string]interface{}{"value": value}
|
y, err :=
|
||||||
y, err := lp.New(metric.Name, map[string]string{"type": metric.Type}, m.meta, fields, time.Now())
|
lp.New(
|
||||||
if err == nil {
|
metric.Name,
|
||||||
if metric.Type != "node" {
|
map[string]string{
|
||||||
y.AddTag("type-id", fmt.Sprintf("%d", domain))
|
"type": metric.Type,
|
||||||
}
|
},
|
||||||
if len(metric.Unit) > 0 {
|
m.meta,
|
||||||
y.AddMeta("unit", metric.Unit)
|
fields,
|
||||||
}
|
now,
|
||||||
output <- y
|
)
|
||||||
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Send per core aggregated values
|
||||||
|
if metric.SendCoreTotalVal {
|
||||||
|
totalCoreValues := make(map[int]float64)
|
||||||
|
for _, tid := range scopemap {
|
||||||
|
if tid >= 0 && len(metric.Calc) > 0 {
|
||||||
|
coreID := m.tid2core[tid]
|
||||||
|
value := evset.metrics[tid][metric.Name]
|
||||||
|
if !math.IsNaN(value) && metric.Publish {
|
||||||
|
totalCoreValues[coreID] += value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for coreID, value := range totalCoreValues {
|
||||||
|
y, err :=
|
||||||
|
lp.New(
|
||||||
|
metric.Name,
|
||||||
|
map[string]string{
|
||||||
|
"type": "core",
|
||||||
|
"type-id": fmt.Sprintf("%d", coreID),
|
||||||
|
},
|
||||||
|
m.meta,
|
||||||
|
map[string]interface{}{
|
||||||
|
"value": value,
|
||||||
|
},
|
||||||
|
now,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if len(metric.Unit) > 0 {
|
||||||
|
y.AddMeta("unit", metric.Unit)
|
||||||
|
}
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Send per socket aggregated values
|
||||||
|
if metric.SendSocketTotalVal {
|
||||||
|
totalSocketValues := make(map[int]float64)
|
||||||
|
for _, tid := range scopemap {
|
||||||
|
if tid >= 0 && len(metric.Calc) > 0 {
|
||||||
|
socketID := m.tid2socket[tid]
|
||||||
|
value := evset.metrics[tid][metric.Name]
|
||||||
|
if !math.IsNaN(value) && metric.Publish {
|
||||||
|
totalSocketValues[socketID] += value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for socketID, value := range totalSocketValues {
|
||||||
|
y, err :=
|
||||||
|
lp.New(
|
||||||
|
metric.Name,
|
||||||
|
map[string]string{
|
||||||
|
"type": "socket",
|
||||||
|
"type-id": fmt.Sprintf("%d", socketID),
|
||||||
|
},
|
||||||
|
m.meta,
|
||||||
|
map[string]interface{}{
|
||||||
|
"value": value,
|
||||||
|
},
|
||||||
|
now,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if len(metric.Unit) > 0 {
|
||||||
|
y.AddMeta("unit", metric.Unit)
|
||||||
|
}
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Send per node aggregated value
|
||||||
|
if metric.SendNodeTotalVal {
|
||||||
|
var totalNodeValue float64 = 0.0
|
||||||
|
for _, tid := range scopemap {
|
||||||
|
if tid >= 0 && len(metric.Calc) > 0 {
|
||||||
|
value := evset.metrics[tid][metric.Name]
|
||||||
|
if !math.IsNaN(value) && metric.Publish {
|
||||||
|
totalNodeValue += value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
y, err :=
|
||||||
|
lp.New(
|
||||||
|
metric.Name,
|
||||||
|
map[string]string{
|
||||||
|
"type": "node",
|
||||||
|
},
|
||||||
|
m.meta,
|
||||||
|
map[string]interface{}{
|
||||||
|
"value": totalNodeValue,
|
||||||
|
},
|
||||||
|
now,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if len(metric.Unit) > 0 {
|
||||||
|
y.AddMeta("unit", metric.Unit)
|
||||||
|
}
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@@ -561,7 +705,13 @@ func (m *LikwidCollector) calcEventsetMetrics(evset LikwidEventsetConfig, interv
|
|||||||
|
|
||||||
// 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(groups []LikwidEventsetConfig, interval time.Duration, output chan lp.CCMetric) error {
|
func (m *LikwidCollector) calcGlobalMetrics(groups []LikwidEventsetConfig, interval time.Duration, output chan lp.CCMetric) error {
|
||||||
|
// Send all metrics with same time stamp
|
||||||
|
// This function does only computiation, counter measurement is done before
|
||||||
|
now := time.Now()
|
||||||
|
|
||||||
for _, metric := range m.config.Metrics {
|
for _, metric := range m.config.Metrics {
|
||||||
|
// The metric scope is determined in the Init() function
|
||||||
|
// Get the map scope-id -> tids
|
||||||
scopemap := m.cpu2tid
|
scopemap := m.cpu2tid
|
||||||
if metric.Type == "socket" {
|
if metric.Type == "socket" {
|
||||||
scopemap = m.sock2tid
|
scopemap = m.sock2tid
|
||||||
@@ -569,7 +719,7 @@ func (m *LikwidCollector) calcGlobalMetrics(groups []LikwidEventsetConfig, inter
|
|||||||
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
|
||||||
params := make(map[string]interface{})
|
params := make(map[string]float64)
|
||||||
for _, evset := range groups {
|
for _, evset := range groups {
|
||||||
for mname, mres := range evset.metrics[tid] {
|
for mname, mres := range evset.metrics[tid] {
|
||||||
params[mname] = mres
|
params[mname] = mres
|
||||||
@@ -584,13 +734,21 @@ func (m *LikwidCollector) calcGlobalMetrics(groups []LikwidEventsetConfig, inter
|
|||||||
if m.config.InvalidToZero && (math.IsNaN(value) || math.IsInf(value, 0)) {
|
if m.config.InvalidToZero && (math.IsNaN(value) || math.IsInf(value, 0)) {
|
||||||
value = 0.0
|
value = 0.0
|
||||||
}
|
}
|
||||||
//m.gmresults[tid][metric.Name] = value
|
|
||||||
// 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.Type}
|
y, err :=
|
||||||
fields := map[string]interface{}{"value": value}
|
lp.New(
|
||||||
y, err := lp.New(metric.Name, tags, m.meta, fields, time.Now())
|
metric.Name,
|
||||||
|
map[string]string{
|
||||||
|
"type": metric.Type,
|
||||||
|
},
|
||||||
|
m.meta,
|
||||||
|
map[string]interface{}{
|
||||||
|
"value": value,
|
||||||
|
},
|
||||||
|
now,
|
||||||
|
)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
if metric.Type != "node" {
|
if metric.Type != "node" {
|
||||||
y.AddTag("type-id", fmt.Sprintf("%d", domain))
|
y.AddTag("type-id", fmt.Sprintf("%d", domain))
|
||||||
@@ -637,8 +795,6 @@ func (m *LikwidCollector) ReadThread(interval time.Duration, output chan lp.CCMe
|
|||||||
|
|
||||||
// main read function taking multiple measurement rounds, each 'interval' seconds long
|
// main read function taking multiple measurement rounds, each 'interval' seconds long
|
||||||
func (m *LikwidCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
func (m *LikwidCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
||||||
//var skip bool = false
|
|
||||||
//var err error
|
|
||||||
if !m.init {
|
if !m.init {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@@ -41,10 +41,12 @@ The `likwid` collector is probably the most complicated collector. The LIKWID li
|
|||||||
```
|
```
|
||||||
|
|
||||||
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`' values. Each metric has a name, the formula, a type and a publish flag. There is an optional `unit` field. 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`. You can optionally use `time` for the measurement time and `inverseClock` for `1.0/baseCpuFrequency`. The type tells the LikwidCollector 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 LikwidCollector whether a metric should be sent to the router or is only used internally to compute a global metric.
|
- 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`' values. Each metric has a name, the formula, a type and a publish flag. There is an optional `unit` field. 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`. You can optionally use `time` for the measurement time and `inverseClock` for `1.0/baseCpuFrequency`. The type tells the LikwidCollector 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 LikwidCollector whether a metric should be sent to the router or is only used internally to compute a global metric.
|
||||||
- The `globalmetrics` are metrics which require data from multiple 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 type 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. Also `time` and `inverseClock` cannot be used anymore. 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.
|
- The `globalmetrics` are metrics which require data from multiple 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 type 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. Also `time` and `inverseClock` cannot be used anymore. 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:
|
||||||
|
|
||||||
- `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`. See below in [seperate section](./likwidMetric.md#invalid_to_zero-option)
|
- `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`. See below in [seperate section](./likwidMetric.md#invalid_to_zero-option)
|
||||||
- `access_mode`: Specify LIKWID access mode: `direct` for direct register access as root user or `accessdaemon`. The access mode `perf_event` is current untested.
|
- `access_mode`: Specify LIKWID access mode: `direct` for direct register access as root user or `accessdaemon`. The access mode `perf_event` is current untested.
|
||||||
@@ -62,6 +64,7 @@ Hardware performance counters are scattered all over the system nowadays. A coun
|
|||||||
**Note:** You cannot specify `socket` type for a metric that is measured at `hwthread` type, so some kind of expert knowledge or lookup work in the [Likwid Wiki](https://github.com/RRZE-HPC/likwid/wiki) is required. Get the type of each counter from the *Architecture* pages and as soon as one counter in a metric is socket-specific, the whole metric is socket-specific.
|
**Note:** You cannot specify `socket` type for a metric that is measured at `hwthread` type, so some kind of expert knowledge or lookup work in the [Likwid Wiki](https://github.com/RRZE-HPC/likwid/wiki) is required. Get the type of each counter from the *Architecture* pages and as soon as one counter in a metric is socket-specific, the whole metric is socket-specific.
|
||||||
|
|
||||||
As a guideline:
|
As a guideline:
|
||||||
|
|
||||||
- All counters `FIXCx`, `PMCy` and `TMAz` have the type `hwthread`
|
- All counters `FIXCx`, `PMCy` and `TMAz` have the type `hwthread`
|
||||||
- All counters names containing `BOX` have the type `socket`
|
- All counters names containing `BOX` have the type `socket`
|
||||||
- All `PWRx` counters have type `socket`, except `"PWR1" : "RAPL_CORE_ENERGY"` has `hwthread` type
|
- All `PWRx` counters have type `socket`, except `"PWR1" : "RAPL_CORE_ENERGY"` has `hwthread` type
|
||||||
@@ -70,6 +73,7 @@ As a guideline:
|
|||||||
### Help with the configuration
|
### Help with the configuration
|
||||||
|
|
||||||
The configuration for the `likwid` collector is quite complicated. Most users don't use LIKWID with the event:counter notation but rely on the performance groups defined by the LIKWID team for each architecture. In order to help with the `likwid` collector configuration, we included a script `scripts/likwid_perfgroup_to_cc_config.py` that creates the configuration of an `eventset` from a performance group (using a LIKWID installation in `$PATH`):
|
The configuration for the `likwid` collector is quite complicated. Most users don't use LIKWID with the event:counter notation but rely on the performance groups defined by the LIKWID team for each architecture. In order to help with the `likwid` collector configuration, we included a script `scripts/likwid_perfgroup_to_cc_config.py` that creates the configuration of an `eventset` from a performance group (using a LIKWID installation in `$PATH`):
|
||||||
|
|
||||||
```
|
```
|
||||||
$ likwid-perfctr -i
|
$ likwid-perfctr -i
|
||||||
[...]
|
[...]
|
||||||
@@ -111,20 +115,28 @@ You can copy this JSON and add it to the `eventsets` list. If you specify multip
|
|||||||
LIKWID checks the file `/var/run/likwid.lock` before performing any interfering operations. Who is allowed to access the counters is determined by the owner of the file. If it does not exist, it is created for the current user. So, if you want to temporarly allow counter access to a user (e.g. in a job):
|
LIKWID checks the file `/var/run/likwid.lock` before performing any interfering operations. Who is allowed to access the counters is determined by the owner of the file. If it does not exist, it is created for the current user. So, if you want to temporarly allow counter access to a user (e.g. in a job):
|
||||||
|
|
||||||
Before (SLURM prolog, ...)
|
Before (SLURM prolog, ...)
|
||||||
```
|
|
||||||
$ chown $JOBUSER /var/run/likwid.lock
|
```bash
|
||||||
|
chown $JOBUSER /var/run/likwid.lock
|
||||||
```
|
```
|
||||||
|
|
||||||
After (SLURM epilog, ...)
|
After (SLURM epilog, ...)
|
||||||
```
|
|
||||||
$ chown $CCUSER /var/run/likwid.lock
|
```bash
|
||||||
|
chown $CCUSER /var/run/likwid.lock
|
||||||
```
|
```
|
||||||
|
|
||||||
### `invalid_to_zero` option
|
### `invalid_to_zero` option
|
||||||
|
|
||||||
In some cases LIKWID returns `0.0` for some events that are further used in processing and maybe used as divisor in a calculation. After evaluation of a metric, the result might be `NaN` or `+-Inf`. These resulting metrics are commonly not created and forwarded to the router because the [InfluxDB line protocol](https://docs.influxdata.com/influxdb/cloud/reference/syntax/line-protocol/#float) does not support these special floating-point values. If you want to have them sent, this option forces these metric values to be `0.0` instead.
|
In some cases LIKWID returns `0.0` for some events that are further used in processing and maybe used as divisor in a calculation. After evaluation of a metric, the result might be `NaN` or `+-Inf`. These resulting metrics are commonly not created and forwarded to the router because the [InfluxDB line protocol](https://docs.influxdata.com/influxdb/cloud/reference/syntax/line-protocol/#float) does not support these special floating-point values. If you want to have them sent, this option forces these metric values to be `0.0` instead.
|
||||||
|
|
||||||
One might think this does not happen often but often used metrics in the world of performance engineering like Instructions-per-Cycle (IPC) or more frequently the actual CPU clock are derived with events like `CPU_CLK_UNHALTED_CORE` (Intel) which do not increment in halted state (as the name implies). In there are different power management systems in a chip which can cause a hardware thread to go in such a state. Moreover, if no cycles are executed by the core, also many other events are not incremented as well (like `INSTR_RETIRED_ANY` for retired instructions and part of IPC).
|
One might think this does not happen often but often used metrics in the world of performance engineering like Instructions-per-Cycle (IPC) or more frequently the actual CPU clock are derived with events like `CPU_CLK_UNHALTED_CORE` (Intel) which do not increment in halted state (as the name implies). In there are different power management systems in a chip which can cause a hardware thread to go in such a state. Moreover, if no cycles are executed by the core, also many other events are not incremented as well (like `INSTR_RETIRED_ANY` for retired instructions and part of IPC).
|
||||||
|
|
||||||
|
### `send_*_total values` option
|
||||||
|
|
||||||
|
- `send_core_total_values`: Metrics, which are usually collected on a per hardware thread basis, are additionally summed up per CPU core.
|
||||||
|
- `send_socket_total_values` Metrics, which are usually collected on a per hardware thread basis, are additionally summed up per CPU socket.
|
||||||
|
- `send_node_total_values` Metrics, which are usually collected on a per hardware thread basis, are additionally summed up per node.
|
||||||
|
|
||||||
### Example configuration
|
### Example configuration
|
||||||
|
|
||||||
@@ -229,6 +241,7 @@ One might think this does not happen often but often used metrics in the world o
|
|||||||
The `likwid` collector reads hardware performance counters at a **hwthread** and **socket** level. The configuration looks quite complicated but it is basically copy&paste from [LIKWID's performance groups](https://github.com/RRZE-HPC/likwid/tree/master/groups). The collector made multiple iterations and tried to use the performance groups but it lacked flexibility. The current way of configuration provides most flexibility.
|
The `likwid` collector reads hardware performance counters at a **hwthread** and **socket** level. The configuration looks quite complicated but it is basically copy&paste from [LIKWID's performance groups](https://github.com/RRZE-HPC/likwid/tree/master/groups). The collector made multiple iterations and tried to use the performance groups but it lacked flexibility. The current way of configuration provides most flexibility.
|
||||||
|
|
||||||
The logic is as following: There are multiple eventsets, each consisting of a list of counters+events and a list of metrics. If you compare a common performance group with the example setting above, there is not much difference:
|
The logic is as following: There are multiple eventsets, each consisting of a list of counters+events and a list of metrics. If you compare a common performance group with the example setting above, there is not much difference:
|
||||||
|
|
||||||
```
|
```
|
||||||
EVENTSET -> "events": {
|
EVENTSET -> "events": {
|
||||||
FIXC1 ACTUAL_CPU_CLOCK -> "FIXC1": "ACTUAL_CPU_CLOCK",
|
FIXC1 ACTUAL_CPU_CLOCK -> "FIXC1": "ACTUAL_CPU_CLOCK",
|
||||||
|
@@ -101,7 +101,7 @@ func getMetricData(lines []string, prefix string, offset int) (int64, error) {
|
|||||||
// llitedir := filepath.Join(LUSTRE_SYSFS, "llite")
|
// llitedir := filepath.Join(LUSTRE_SYSFS, "llite")
|
||||||
// devdir := filepath.Join(llitedir, device)
|
// devdir := filepath.Join(llitedir, device)
|
||||||
// statsfile := filepath.Join(devdir, "stats")
|
// statsfile := filepath.Join(devdir, "stats")
|
||||||
// buffer, err := ioutil.ReadFile(statsfile)
|
// buffer, err := os.ReadFile(statsfile)
|
||||||
// if err != nil {
|
// if err != nil {
|
||||||
// return make([]string, 0)
|
// return make([]string, 0)
|
||||||
// }
|
// }
|
||||||
|
@@ -102,7 +102,7 @@ func (m *NetstatCollector) Init(config json.RawMessage) error {
|
|||||||
|
|
||||||
// Check if device is a included device
|
// Check if device is a included device
|
||||||
if _, ok := stringArrayContains(m.config.IncludeDevices, dev); ok {
|
if _, ok := stringArrayContains(m.config.IncludeDevices, dev); ok {
|
||||||
tags := map[string]string{"device": dev, "type": "node"}
|
tags := map[string]string{"stype": "network", "stype-id": dev, "type": "node"}
|
||||||
meta_unit_byte := map[string]string{"source": m.name, "group": "Network", "unit": "bytes"}
|
meta_unit_byte := map[string]string{"source": m.name, "group": "Network", "unit": "bytes"}
|
||||||
meta_unit_byte_per_sec := map[string]string{"source": m.name, "group": "Network", "unit": "bytes/sec"}
|
meta_unit_byte_per_sec := map[string]string{"source": m.name, "group": "Network", "unit": "bytes/sec"}
|
||||||
meta_unit_pkts := map[string]string{"source": m.name, "group": "Network", "unit": "packets"}
|
meta_unit_pkts := map[string]string{"source": m.name, "group": "Network", "unit": "packets"}
|
||||||
|
@@ -23,5 +23,5 @@ Metrics:
|
|||||||
* `net_pkts_in_bw` (`unit=packets/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`)
|
* `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 `stype=network,stype-id=<device>`.
|
||||||
|
|
||||||
|
@@ -71,6 +71,14 @@ func (m *NvidiaCollector) Init(config json.RawMessage) error {
|
|||||||
|
|
||||||
// Initialize NVIDIA Management Library (NVML)
|
// Initialize NVIDIA Management Library (NVML)
|
||||||
ret := nvml.Init()
|
ret := nvml.Init()
|
||||||
|
|
||||||
|
// Error: NVML library not found
|
||||||
|
// (nvml.ErrorString can not be used in this case)
|
||||||
|
if ret == nvml.ERROR_LIBRARY_NOT_FOUND {
|
||||||
|
err = fmt.Errorf("NVML library not found")
|
||||||
|
cclog.ComponentError(m.name, err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
if ret != nvml.SUCCESS {
|
if ret != nvml.SUCCESS {
|
||||||
err = errors.New(nvml.ErrorString(ret))
|
err = errors.New(nvml.ErrorString(ret))
|
||||||
cclog.ComponentError(m.name, "Unable to initialize NVML", err.Error())
|
cclog.ComponentError(m.name, "Unable to initialize NVML", err.Error())
|
||||||
|
620
collectors/slurmJobDetector.go
Normal file
620
collectors/slurmJobDetector.go
Normal file
@@ -0,0 +1,620 @@
|
|||||||
|
package collectors
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
osuser "os/user"
|
||||||
|
filepath "path/filepath"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
|
)
|
||||||
|
|
||||||
|
// These are the fields we read from the JSON configuration
|
||||||
|
type SlurmJobDetectorConfig struct {
|
||||||
|
Interval string `json:"interval"`
|
||||||
|
SendJobEvents bool `json:"send_job_events,omitempty"`
|
||||||
|
SendStepEvents bool `json:"send_step_events,omitempty"`
|
||||||
|
SendJobMetrics bool `json:"send_job_metrics,omitempty"`
|
||||||
|
SendStepMetrics bool `json:"send_step_metrics,omitempty"`
|
||||||
|
BaseDirectory string `json:"sysfs_base,omitempty"`
|
||||||
|
CgroupVersion string `json:"cgroup_version"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// This information is sent as JSON when an event occurs
|
||||||
|
type SlurmJobMetadata struct {
|
||||||
|
UID string `json:"uid,omitempty"`
|
||||||
|
JobId string `json:"jobid"`
|
||||||
|
Timestamp uint64 `json:"timestamp"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
Step string `json:"step,omitempty"`
|
||||||
|
Cpus []int `json:"cpus,omitempty"`
|
||||||
|
Memories []int `json:"memories,omitempty"`
|
||||||
|
MemoryLimitHard int64 `json:"memory_limit_hard,omitempty"`
|
||||||
|
MemoryLimitSoft int64 `json:"memory_limit_soft,omitempty"`
|
||||||
|
Devices []string `json:"devices,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type SlurmJobMetrics struct {
|
||||||
|
MemoryUsage int64
|
||||||
|
MaxMemoryUsage int64
|
||||||
|
LimitMemoryUsage int64
|
||||||
|
CpuUsageUser int64
|
||||||
|
CpuUsageSys int64
|
||||||
|
}
|
||||||
|
|
||||||
|
// This contains all variables we need during execution and the variables
|
||||||
|
// defined by metricCollector (name, init, ...)
|
||||||
|
type SlurmJobDetector struct {
|
||||||
|
metricCollector
|
||||||
|
config SlurmJobDetectorConfig // the configuration structure
|
||||||
|
meta map[string]string // default meta information
|
||||||
|
interval time.Duration // the interval parsed from configuration
|
||||||
|
ticker *time.Ticker // own timer for event checking
|
||||||
|
output chan lp.CCMetric // variable to save output channel at Read() for event sending
|
||||||
|
wg sync.WaitGroup // sync group for event checking management
|
||||||
|
done chan bool // channel for event checking management
|
||||||
|
directories map[string]SlurmJobMetadata // directory -> data mapping (data stored to re-send data in end job events)
|
||||||
|
}
|
||||||
|
|
||||||
|
const default_base_dir = "/sys/fs/cgroup"
|
||||||
|
const default_cgroup_version = "v1"
|
||||||
|
|
||||||
|
// not required to pre-initialized. Will be overwritten in Init() based on configuration
|
||||||
|
var cpuacct_base = filepath.Join(default_base_dir, "cpuacct", "slurm")
|
||||||
|
var memory_base = filepath.Join(default_base_dir, "memory", "slurm")
|
||||||
|
var cpuset_base = filepath.Join(default_base_dir, "cpuset", "slurm")
|
||||||
|
var devices_base = filepath.Join(default_base_dir, "devices", "slurm")
|
||||||
|
|
||||||
|
// Filenames for cgroup/v1
|
||||||
|
var limit_in_bytes_file = "memory.limit_in_bytes"
|
||||||
|
var soft_limit_in_bytes_file = "memory.soft_limit_in_bytes"
|
||||||
|
var cpus_effective_file = "cpuset.effective_cpus"
|
||||||
|
var mems_effective_file = "cpuset.effective_mems"
|
||||||
|
var devices_list_file = "devices.list"
|
||||||
|
var usage_in_bytes_file = "memory.usage_in_bytes"
|
||||||
|
var max_usage_in_bytes_file = "memory.max_usage_in_bytes"
|
||||||
|
var cpuacct_usage_file = "cpuacct.usage"
|
||||||
|
var cpuacct_usage_user_file = "cpuacct.usage_user"
|
||||||
|
|
||||||
|
// Filenames for cgroup/v2
|
||||||
|
// In Init() the filenames are set based on configuration
|
||||||
|
const soft_limit_in_bytes_file_v2 = "memory.high"
|
||||||
|
const limit_in_bytes_file_v2 = "memory.max"
|
||||||
|
const cpus_effective_file_v2 = "cpuset.cpus.effective"
|
||||||
|
const mems_effective_file_v2 = "cpuset.mems.effective"
|
||||||
|
const devices_list_file_v2 = "devices.list"
|
||||||
|
const usage_in_bytes_file_v2 = "memory.usage_in_bytes"
|
||||||
|
const max_usage_in_bytes_file_v2 = "memory.max_usage_in_bytes"
|
||||||
|
const cpuacct_usage_file_v2 = "cpuacct.usage"
|
||||||
|
const cpuacct_usage_user_file_v2 = "cpuacct.usage_user"
|
||||||
|
|
||||||
|
func fileToInt64(filename string) (int64, error) {
|
||||||
|
data, err := os.ReadFile(filename)
|
||||||
|
if err == nil {
|
||||||
|
x, err := strconv.ParseInt(string(data), 0, 64)
|
||||||
|
if err == nil {
|
||||||
|
return x, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func ExpandList(strlist string) []int {
|
||||||
|
out := make([]int, 0)
|
||||||
|
level1 := strings.Split(strlist, ",")
|
||||||
|
if len(level1) > 0 {
|
||||||
|
for _, entry := range level1 {
|
||||||
|
var s, e int
|
||||||
|
_, err := fmt.Sscanf(entry, "%d-%d", &s, &e)
|
||||||
|
if err == nil {
|
||||||
|
if s < e {
|
||||||
|
for i := s; i <= e; i++ {
|
||||||
|
out = append(out, i)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for i := e; i <= s; i-- {
|
||||||
|
out = append(out, i)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_, err := fmt.Sscanf(entry, "%d", &s)
|
||||||
|
if err == nil {
|
||||||
|
out = append(out, s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
func ParseDevices(devlist string) []string {
|
||||||
|
out := make([]string, 0)
|
||||||
|
// a *:* rwm
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetPathParts(path string) []string {
|
||||||
|
out := make([]string, 0)
|
||||||
|
uid := ""
|
||||||
|
jobid := ""
|
||||||
|
step := ""
|
||||||
|
parts := strings.Split(path, "/")
|
||||||
|
// the folders of interest are at the end of the list, so traverse
|
||||||
|
// from the back
|
||||||
|
for i := len(parts) - 1; i >= 0; i-- {
|
||||||
|
if strings.HasPrefix(parts[i], "uid_") {
|
||||||
|
uid = parts[i]
|
||||||
|
} else if strings.HasPrefix(parts[i], "job_") {
|
||||||
|
jobid = parts[i]
|
||||||
|
} else if strings.HasPrefix(parts[i], "step_") {
|
||||||
|
step = parts[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// only cgroup/v1 provides a uid but needs to be first entry
|
||||||
|
if len(uid) > 0 {
|
||||||
|
out = append(out, uid)
|
||||||
|
}
|
||||||
|
if len(jobid) > 0 {
|
||||||
|
out = append(out, jobid)
|
||||||
|
}
|
||||||
|
// only if it's a step folder
|
||||||
|
if len(step) > 0 {
|
||||||
|
out = append(out, step)
|
||||||
|
}
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetIdsFromParts(parts []string) (string, string, string) {
|
||||||
|
uid := ""
|
||||||
|
jobid := ""
|
||||||
|
step := ""
|
||||||
|
|
||||||
|
for _, p := range parts {
|
||||||
|
if strings.HasPrefix(p, "job_") {
|
||||||
|
jobid = strings.TrimPrefix(p, "job_")
|
||||||
|
} else if strings.HasPrefix(p, "uid_") {
|
||||||
|
uid = strings.TrimPrefix(p, "uid_")
|
||||||
|
} else if strings.HasPrefix(p, "step_") {
|
||||||
|
step = strings.TrimPrefix(p, "step_")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return uid, jobid, step
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *SlurmJobDetector) CheckEvents(timestamp time.Time) {
|
||||||
|
var err error = nil
|
||||||
|
var dirs []string = nil
|
||||||
|
parts := make([]string, 3)
|
||||||
|
parts = append(parts, cpuacct_base)
|
||||||
|
if m.config.CgroupVersion == "v1" {
|
||||||
|
parts = append(parts, "uid_[0-9]*")
|
||||||
|
}
|
||||||
|
parts = append(parts, "job_[0-9]*")
|
||||||
|
|
||||||
|
dirs, err = filepath.Glob(filepath.Join(parts...))
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(m.name, "Cannot get directory list for SLURM jobs")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if m.config.SendStepEvents {
|
||||||
|
parts = append(parts, "step_*")
|
||||||
|
sdirs, err := filepath.Glob(filepath.Join(parts...))
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(m.name, "Cannot get directory list for SLURM steps")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
dirs = append(dirs, sdirs...)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, d := range dirs {
|
||||||
|
// Folder not in known directories map -> New job
|
||||||
|
if _, ok := m.directories[d]; !ok {
|
||||||
|
dirParts := GetPathParts(d)
|
||||||
|
data, err := m.NewJobEvent(dirParts, timestamp, m.output)
|
||||||
|
if err == nil {
|
||||||
|
// Add the directory to the map
|
||||||
|
cclog.ComponentDebug(m.name, "Adding directory ", d, " to known directories")
|
||||||
|
m.directories[d] = data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for d, data := range m.directories {
|
||||||
|
// Known directory but it does not exist anymore -> Vanished/Finished job
|
||||||
|
if _, ok := stringArrayContains(dirs, d); !ok {
|
||||||
|
dirParts := GetPathParts(d)
|
||||||
|
err := m.EndJobEvent(dirParts, data, timestamp, m.output)
|
||||||
|
if err != nil {
|
||||||
|
uid, jobid, step := GetIdsFromParts(dirParts)
|
||||||
|
if len(step) == 0 {
|
||||||
|
cclog.ComponentError(m.name, "Failed to end job for user ", uid, " jobid ", jobid)
|
||||||
|
} else {
|
||||||
|
cclog.ComponentError(m.name, "Failed to end job for user ", uid, " jobid ", jobid, " step ", step)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Remove the directory from the map
|
||||||
|
cclog.ComponentDebug(m.name, "Removing directory ", d, " to known directories")
|
||||||
|
delete(m.directories, d)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *SlurmJobDetector) NewJobEvent(parts []string, timestamp time.Time, output chan lp.CCMetric) (SlurmJobMetadata, error) {
|
||||||
|
uid, jobid, step := GetIdsFromParts(parts)
|
||||||
|
pathstr := filepath.Join(parts...)
|
||||||
|
if len(jobid) > 0 {
|
||||||
|
cclog.ComponentError(m.name, "No jobid in path ", pathstr)
|
||||||
|
return SlurmJobMetadata{}, fmt.Errorf("no jobid in path %s", pathstr)
|
||||||
|
}
|
||||||
|
jobtags := map[string]string{
|
||||||
|
"type": "job",
|
||||||
|
"type-id": jobid,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fill job JSON with data from cgroup
|
||||||
|
md := SlurmJobMetadata{
|
||||||
|
JobId: jobid,
|
||||||
|
Timestamp: uint64(timestamp.Unix()),
|
||||||
|
Status: "start",
|
||||||
|
}
|
||||||
|
// cgroup/v2 has no uid in parts
|
||||||
|
if len(uid) > 0 {
|
||||||
|
md.UID = uid
|
||||||
|
}
|
||||||
|
if len(step) > 0 {
|
||||||
|
md.Step = step
|
||||||
|
jobtags["stype"] = "step"
|
||||||
|
jobtags["stype-id"] = step
|
||||||
|
}
|
||||||
|
|
||||||
|
job_cpus, err := os.ReadFile(filepath.Join(cpuset_base, pathstr, cpus_effective_file))
|
||||||
|
if err == nil {
|
||||||
|
md.Cpus = ExpandList(string(job_cpus))
|
||||||
|
}
|
||||||
|
job_mems, err := os.ReadFile(filepath.Join(cpuset_base, pathstr, mems_effective_file))
|
||||||
|
if err == nil {
|
||||||
|
md.Memories = ExpandList(string(job_mems))
|
||||||
|
}
|
||||||
|
job_devs, err := os.ReadFile(filepath.Join(devices_base, pathstr, devices_list_file))
|
||||||
|
if err == nil {
|
||||||
|
md.Devices = ParseDevices(string(job_devs))
|
||||||
|
}
|
||||||
|
x, err := fileToInt64(filepath.Join(memory_base, pathstr, limit_in_bytes_file))
|
||||||
|
if err == nil {
|
||||||
|
md.MemoryLimitHard = x
|
||||||
|
}
|
||||||
|
x, err = fileToInt64(filepath.Join(memory_base, pathstr, soft_limit_in_bytes_file))
|
||||||
|
if err == nil {
|
||||||
|
md.MemoryLimitSoft = x
|
||||||
|
}
|
||||||
|
|
||||||
|
jobjson, err := json.Marshal(md)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("slurm", jobtags, m.meta, map[string]interface{}{"value": string(jobjson)}, timestamp)
|
||||||
|
if err == nil {
|
||||||
|
if len(uid) > 0 {
|
||||||
|
y.AddMeta("uid", uid)
|
||||||
|
uname, err := osuser.LookupId(uid)
|
||||||
|
if err == nil {
|
||||||
|
y.AddMeta("username", uname.Username)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
y.AddMeta("metric_type", "event")
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return md, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not sure if it works with steps since the folders commonly do not vanish when a job step is finished
|
||||||
|
func (m *SlurmJobDetector) EndJobEvent(parts []string, data SlurmJobMetadata, timestamp time.Time, output chan lp.CCMetric) error {
|
||||||
|
uid, jobid, step := GetIdsFromParts(parts)
|
||||||
|
pathstr := filepath.Join(parts...)
|
||||||
|
if len(jobid) > 0 {
|
||||||
|
err := fmt.Errorf("no jobid in path %s", pathstr)
|
||||||
|
cclog.ComponentError(m.name, err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
jobtags := map[string]string{
|
||||||
|
"type": "job",
|
||||||
|
"type-id": jobid,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fill job JSON with data from cgroup
|
||||||
|
md := SlurmJobMetadata{
|
||||||
|
JobId: jobid,
|
||||||
|
Timestamp: uint64(timestamp.Unix()),
|
||||||
|
Cpus: data.Cpus,
|
||||||
|
Memories: data.Memories,
|
||||||
|
Devices: data.Devices,
|
||||||
|
MemoryLimitHard: data.MemoryLimitHard,
|
||||||
|
MemoryLimitSoft: data.MemoryLimitSoft,
|
||||||
|
Status: "end",
|
||||||
|
}
|
||||||
|
// cgroup/v2 has no uid in parts
|
||||||
|
if len(uid) > 0 {
|
||||||
|
md.UID = uid
|
||||||
|
}
|
||||||
|
if len(step) > 0 {
|
||||||
|
md.Step = step
|
||||||
|
jobtags["stype"] = "step"
|
||||||
|
jobtags["stype-id"] = step
|
||||||
|
}
|
||||||
|
|
||||||
|
jobjson, err := json.Marshal(md)
|
||||||
|
if err == nil {
|
||||||
|
y, err := lp.New("slurm", jobtags, m.meta, map[string]interface{}{"value": string(jobjson)}, timestamp)
|
||||||
|
if err == nil {
|
||||||
|
if len(uid) > 0 {
|
||||||
|
y.AddMeta("uid", uid)
|
||||||
|
uname, err := osuser.LookupId(uid)
|
||||||
|
if err == nil {
|
||||||
|
y.AddMeta("username", uname.Username)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
y.AddMeta("metric_type", "event")
|
||||||
|
output <- y
|
||||||
|
} else {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *SlurmJobDetector) ReadMetrics(parts []string) (SlurmJobMetrics, error) {
|
||||||
|
jobdata := SlurmJobMetrics{
|
||||||
|
MemoryUsage: 0,
|
||||||
|
MaxMemoryUsage: 0,
|
||||||
|
LimitMemoryUsage: 0,
|
||||||
|
CpuUsageUser: 0,
|
||||||
|
CpuUsageSys: 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
part := filepath.Join(parts...)
|
||||||
|
|
||||||
|
x, err := fileToInt64(filepath.Join(memory_base, part, usage_in_bytes_file))
|
||||||
|
if err == nil {
|
||||||
|
jobdata.MemoryUsage = x
|
||||||
|
}
|
||||||
|
x, err = fileToInt64(filepath.Join(memory_base, part, max_usage_in_bytes_file))
|
||||||
|
if err == nil {
|
||||||
|
jobdata.MaxMemoryUsage = x
|
||||||
|
}
|
||||||
|
tu, err := fileToInt64(filepath.Join(cpuacct_base, part, cpuacct_usage_file))
|
||||||
|
if err == nil {
|
||||||
|
uu, err := fileToInt64(filepath.Join(cpuacct_base, part, cpuacct_usage_user_file))
|
||||||
|
if err == nil {
|
||||||
|
jobdata.CpuUsageUser = int64(uu/tu) * 100
|
||||||
|
jobdata.CpuUsageSys = 100 - jobdata.CpuUsageUser
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return jobdata, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *SlurmJobDetector) SendMetrics(jobtags, jobmeta map[string]string, jobmetrics SlurmJobMetrics, timestamp time.Time, output chan lp.CCMetric) {
|
||||||
|
|
||||||
|
y, err := lp.New("job_mem_used", jobtags, m.meta, map[string]interface{}{"value": jobmetrics.MemoryUsage}, timestamp)
|
||||||
|
if err == nil {
|
||||||
|
y.AddMeta("unit", "Bytes")
|
||||||
|
for k, v := range jobmeta {
|
||||||
|
y.AddMeta(k, v)
|
||||||
|
}
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
y, err = lp.New("job_max_mem_used", jobtags, m.meta, map[string]interface{}{"value": jobmetrics.MaxMemoryUsage}, timestamp)
|
||||||
|
if err == nil {
|
||||||
|
y.AddMeta("unit", "Bytes")
|
||||||
|
for k, v := range jobmeta {
|
||||||
|
y.AddMeta(k, v)
|
||||||
|
}
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
y, err = lp.New("job_cpu_user", jobtags, m.meta, map[string]interface{}{"value": jobmetrics.CpuUsageUser}, timestamp)
|
||||||
|
if err == nil {
|
||||||
|
y.AddMeta("unit", "%")
|
||||||
|
for k, v := range jobmeta {
|
||||||
|
y.AddMeta(k, v)
|
||||||
|
}
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
y, err = lp.New("job_cpu_sys", jobtags, m.meta, map[string]interface{}{"value": jobmetrics.CpuUsageSys}, timestamp)
|
||||||
|
if err == nil {
|
||||||
|
y.AddMeta("unit", "%")
|
||||||
|
for k, v := range jobmeta {
|
||||||
|
y.AddMeta(k, v)
|
||||||
|
}
|
||||||
|
output <- y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Init initializes the sample collector
|
||||||
|
// Called once by the collector manager
|
||||||
|
// All tags, meta data tags and metrics that do not change over the runtime should be set here
|
||||||
|
func (m *SlurmJobDetector) Init(config json.RawMessage) error {
|
||||||
|
var err error = nil
|
||||||
|
m.name = "SlurmJobDetector"
|
||||||
|
// This is for later use, also call it early
|
||||||
|
m.setup()
|
||||||
|
// Can be run in parallel with others
|
||||||
|
m.parallel = true
|
||||||
|
// Define meta information sent with each metric
|
||||||
|
m.meta = map[string]string{"source": m.name, "group": "SLURM"}
|
||||||
|
// Set configuration defaults
|
||||||
|
m.config.SendJobEvents = false
|
||||||
|
m.config.SendJobMetrics = false
|
||||||
|
m.config.SendStepEvents = false
|
||||||
|
m.config.SendStepMetrics = false
|
||||||
|
m.config.CgroupVersion = default_cgroup_version
|
||||||
|
m.config.BaseDirectory = default_base_dir
|
||||||
|
// Read in the JSON configuration
|
||||||
|
if len(config) > 0 {
|
||||||
|
err = json.Unmarshal(config, &m.config)
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(m.name, "Error reading config:", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse the read interval duration
|
||||||
|
m.interval, err = time.ParseDuration(m.config.Interval)
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(m.name, "Error parsing interval:", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if m.config.CgroupVersion != "v1" && m.config.CgroupVersion != "v2" {
|
||||||
|
cclog.ComponentError(m.name, "Invalid cgroup version", m.config.CgroupVersion, ":", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Storage for output channel
|
||||||
|
m.output = nil
|
||||||
|
// Management channel for the timer function.
|
||||||
|
m.done = make(chan bool)
|
||||||
|
// Create the own ticker
|
||||||
|
m.ticker = time.NewTicker(m.interval)
|
||||||
|
// Create space for storing files
|
||||||
|
m.directories = make(map[string]SlurmJobMetadata)
|
||||||
|
|
||||||
|
if _, err := os.Stat(m.config.BaseDirectory); err != nil {
|
||||||
|
err := fmt.Errorf("cannot find base folder %s", m.config.BaseDirectory)
|
||||||
|
cclog.ComponentError(m.name, err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
cclog.ComponentDebug(m.name, "Using base directory", m.config.BaseDirectory)
|
||||||
|
cpuacct_base = filepath.Join(m.config.BaseDirectory, "cpuacct", "slurm")
|
||||||
|
memory_base = filepath.Join(m.config.BaseDirectory, "memory", "slurm")
|
||||||
|
cpuset_base = filepath.Join(m.config.BaseDirectory, "cpuset", "slurm")
|
||||||
|
devices_base = filepath.Join(m.config.BaseDirectory, "devices", "slurm")
|
||||||
|
if m.config.CgroupVersion == "v2" {
|
||||||
|
cclog.ComponentDebug(m.name, "Reconfiguring folders and filenames for cgroup/v2")
|
||||||
|
cpuacct_base = filepath.Join(m.config.BaseDirectory, "system.slice", "slurmstepd.scope")
|
||||||
|
memory_base = filepath.Join(m.config.BaseDirectory, "system.slice", "slurmstepd.scope")
|
||||||
|
cpuset_base = filepath.Join(m.config.BaseDirectory, "system.slice", "slurmstepd.scope")
|
||||||
|
devices_base = filepath.Join(m.config.BaseDirectory, "system.slice", "slurmstepd.scope")
|
||||||
|
cpus_effective_file = cpus_effective_file_v2
|
||||||
|
mems_effective_file = mems_effective_file_v2
|
||||||
|
devices_list_file = devices_list_file_v2
|
||||||
|
limit_in_bytes_file = limit_in_bytes_file_v2
|
||||||
|
soft_limit_in_bytes_file = soft_limit_in_bytes_file_v2
|
||||||
|
usage_in_bytes_file = usage_in_bytes_file_v2
|
||||||
|
max_usage_in_bytes_file = max_usage_in_bytes_file_v2
|
||||||
|
cpuacct_usage_file = cpuacct_usage_file_v2
|
||||||
|
cpuacct_usage_user_file = cpuacct_usage_user_file_v2
|
||||||
|
}
|
||||||
|
if _, err := os.Stat(cpuacct_base); err != nil {
|
||||||
|
err := fmt.Errorf("cannot find SLURM cgroup folder %s", cpuacct_base)
|
||||||
|
cclog.ComponentError(m.name, err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
m.wg.Add(1)
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-m.done:
|
||||||
|
// Exit the timer loop
|
||||||
|
cclog.ComponentDebug(m.name, "Closing...")
|
||||||
|
m.wg.Done()
|
||||||
|
return
|
||||||
|
case timestamp := <-m.ticker.C:
|
||||||
|
if m.output != nil {
|
||||||
|
cclog.ComponentDebug(m.name, "Checking events")
|
||||||
|
m.CheckEvents(timestamp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Set this flag only if everything is initialized properly, all required files exist, ...
|
||||||
|
m.init = true
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read collects all metrics belonging to the SlurmJobDetector collector
|
||||||
|
// and sends them through the output channel to the collector manager
|
||||||
|
func (m *SlurmJobDetector) Read(interval time.Duration, output chan lp.CCMetric) {
|
||||||
|
// Create a sample metric
|
||||||
|
timestamp := time.Now()
|
||||||
|
// Capture output channel for event sending in goroutine, so at startup, the event checking
|
||||||
|
// waits until the first call of Read()
|
||||||
|
m.output = output
|
||||||
|
|
||||||
|
// This is the reading for metrics for all running jobs. For the event checking, check
|
||||||
|
// the goroutine in Init()
|
||||||
|
|
||||||
|
parts := make([]string, 0)
|
||||||
|
parts = append(parts, cpuacct_base)
|
||||||
|
// Only cgroup/v1 has a uid_* folder
|
||||||
|
if m.config.CgroupVersion == "v1" {
|
||||||
|
parts = append(parts, "uid_[0-9]*")
|
||||||
|
}
|
||||||
|
parts = append(parts, "job_[0-9]*")
|
||||||
|
// Get folders based on constructed glob path
|
||||||
|
dirs, err := filepath.Glob(filepath.Join(parts...))
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(m.name, "Cannot get directory list for SLURM jobs")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if m.config.SendStepEvents {
|
||||||
|
// Add step lookup if we process step events
|
||||||
|
parts = append(parts, "step_*")
|
||||||
|
// Get step folders based on constructed glob path
|
||||||
|
sdirs, err := filepath.Glob(filepath.Join(parts...))
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(m.name, "Cannot get directory list for SLURM steps")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Add step folders to directory list for processsing
|
||||||
|
dirs = append(dirs, sdirs...)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, d := range dirs {
|
||||||
|
dirParts := GetPathParts(d) // Gets uid_*, job_* and step_* (if available)
|
||||||
|
uid, jobid, step := GetIdsFromParts(dirParts) // extracts the IDs from the available parts
|
||||||
|
|
||||||
|
// Create tags map for the job
|
||||||
|
jobtags := map[string]string{
|
||||||
|
"type": "job",
|
||||||
|
"type-id": jobid,
|
||||||
|
}
|
||||||
|
// Create meta map for the job
|
||||||
|
jobmeta := make(map[string]string)
|
||||||
|
|
||||||
|
// if cgroup/v1, we have a uid
|
||||||
|
if len(uid) > 0 {
|
||||||
|
jobmeta["uid"] = uid
|
||||||
|
uname, err := osuser.LookupId(uid)
|
||||||
|
if err == nil {
|
||||||
|
jobmeta["username"] = uname.Username
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// if this is a step directory, add the sub type with value
|
||||||
|
if len(step) > 0 {
|
||||||
|
jobtags["stype"] = "step"
|
||||||
|
jobtags["stype-id"] = step
|
||||||
|
}
|
||||||
|
jobmetrics, err := m.ReadMetrics(parts)
|
||||||
|
if err != nil {
|
||||||
|
// Send all metrics for the job
|
||||||
|
m.SendMetrics(jobtags, jobmeta, jobmetrics, timestamp, output)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close metric collector: close network connection, close files, close libraries, ...
|
||||||
|
// Called once by the collector manager
|
||||||
|
func (m *SlurmJobDetector) Close() {
|
||||||
|
m.done <- true
|
||||||
|
m.wg.Wait()
|
||||||
|
// Unset flag
|
||||||
|
m.init = false
|
||||||
|
}
|
45
collectors/slurmJobDetector.md
Normal file
45
collectors/slurmJobDetector.md
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
# `slurm` collector
|
||||||
|
|
||||||
|
```json
|
||||||
|
"slurm": {
|
||||||
|
"interval" : "1s",
|
||||||
|
"send_job_events" : true,
|
||||||
|
"send_job_metrics" : true,
|
||||||
|
"send_step_events": false,
|
||||||
|
"send_step_metrics" : false,
|
||||||
|
"cgroup_version" : "v1"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The `slurm` collector reads the data from `/sys/fs/cgroup/` to detect the creation and deletion of SLURM jobs on the node. Then detecting an event, it collects some event related information and sends the event. The event detection happens every `interval`.
|
||||||
|
|
||||||
|
Additionally, for all running jobs, is can collect metrics and send them out. This collection is done in the global collector interval.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
* `interval`: Time interval in which the folders are checked for new or vanished SLURM jobs
|
||||||
|
* `send_job_events`: Send events when a job starts or ends
|
||||||
|
* `send_job_metrics`: Send metrics of each running job with the global collector interval
|
||||||
|
* `send_step_events`: Send events when a job step starts
|
||||||
|
* `send_step_metrics`: Send metrics of each job step with the global collector interval
|
||||||
|
* `cgroup_version`: Which cgroup version is in use. Possible values are `v1` and `v2`. `v1` is the default
|
||||||
|
* `sysfs_base`: (Testing only) Set the base path for lookups, default `/sys/fs/cgroup`.
|
||||||
|
|
||||||
|
For `cgroup_version = v2`, the collector searches for jobs at `<sysfs_base>/system.slice/slurmstepd.scope`, by default with `<sysfs_base>=/sys/fs/cgroup`. If the cgroup folders are created below `/sys/fs/cgroup/unified`, adjust the `sysfs_base` option to `/sys/fs/cgroup/unified`.
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
For testing the collector, you can specifiy a different base directory that should be checked for new events. The default is `/sys/fs/cgroup/`. By specifying a `sysfs_base` in the configuration, this can be changed. Moreover, with the `slurmJobDetector_dummy.sh`, you can create and delete "jobs" for testing. Use the same directory with `--basedir`. It generates only cgroup/v1 directory structures at the moment.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ slurmJobDetector_dummy.sh -h
|
||||||
|
|
||||||
|
Usage: slurmJobDetector_dummy.sh <opts>
|
||||||
|
[ -h | --help ]
|
||||||
|
[ -v | --verbosity ]
|
||||||
|
[ -u | --uid <UID> (default: XXXX) ]
|
||||||
|
[ -j | --jobid <JOBID> (default: random) ]
|
||||||
|
[ -b | --basedir <JOBID> (default: ./slurm-test) ]
|
||||||
|
[ -d | --delete ]
|
||||||
|
[ -l | --list ]
|
||||||
|
```
|
||||||
|
|
||||||
|
With no options, it creates a job with the executing user's UID and a random JOBID. For deletion, use `-d -j JOBID`, deletion requires a JOBID. If you want to get a list of all UIDs and JOBIDs that currently exist, you can get the list with `-l`.
|
139
collectors/slurmJobDetector_dummy.sh
Executable file
139
collectors/slurmJobDetector_dummy.sh
Executable file
@@ -0,0 +1,139 @@
|
|||||||
|
#!/bin/bash -l
|
||||||
|
|
||||||
|
|
||||||
|
# Some settings for scripting with less headache
|
||||||
|
|
||||||
|
# when a command fails, bash exits instead of continuing
|
||||||
|
set -o errexit
|
||||||
|
|
||||||
|
# make the script fail, when accessing an unset variable
|
||||||
|
# use "${VARNAME-}" instead of "$VARNAME" when you want to access
|
||||||
|
# a variable that may or may not have been set
|
||||||
|
set -o nounset
|
||||||
|
|
||||||
|
# ensure that a pipeline command is treated as failed, even if one command in the pipeline fails
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
# enable debug mode, by running your script as TRACE=1 ./script.sh
|
||||||
|
if [[ "${TRACE-0}" == "1" ]]; then
|
||||||
|
set -o xtrace
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Default values for variables
|
||||||
|
: ${UID=$(id -u)}
|
||||||
|
: ${VERBOSITY=0}
|
||||||
|
: ${DELETE=0}
|
||||||
|
: ${LIST=0}
|
||||||
|
: ${JOBID="random"}
|
||||||
|
: ${BASE=./slurmJobDetector-sys-fs-cgroup}
|
||||||
|
|
||||||
|
# Print usage if needed
|
||||||
|
usage()
|
||||||
|
{
|
||||||
|
echo "
|
||||||
|
Usage: $(basename $0) <opts>
|
||||||
|
[ -h | --help ]
|
||||||
|
[ -v | --verbosity ]
|
||||||
|
[ -u | --uid <UID> (default: ${UID}) ]
|
||||||
|
[ -j | --jobid <JOBID> (default: ${JOBID}) ]
|
||||||
|
[ -b | --basedir <JOBID> (default: ${BASE}) ]
|
||||||
|
[ -d | --delete ]
|
||||||
|
[ -l | --list ]
|
||||||
|
"
|
||||||
|
exit $1;
|
||||||
|
}
|
||||||
|
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
main() {
|
||||||
|
PARSED_ARGUMENTS=$(getopt -a -n $(basename $0) -o hj:u:vb:dl --long help,verbosity,uid:,jobid:,basedir:,delete,list -- "$@")
|
||||||
|
VALID_ARGUMENTS=$?
|
||||||
|
# Parsing failed
|
||||||
|
if [[ "$VALID_ARGUMENTS" != "0" ]]; then
|
||||||
|
usage 2
|
||||||
|
fi
|
||||||
|
# No argument (comment out if command should work without any arguments)
|
||||||
|
# if [[ "${PARSED_ARGUMENTS}" == " --" ]]; then
|
||||||
|
# usage 0
|
||||||
|
# fi
|
||||||
|
# Evaluate arguments
|
||||||
|
eval set -- "$PARSED_ARGUMENTS"
|
||||||
|
while :
|
||||||
|
do
|
||||||
|
case "$1" in
|
||||||
|
-h | --help) usage 0; shift ;;
|
||||||
|
-v | --verbosity) VERBOSITY=1; shift ;;
|
||||||
|
-d | --delete) DELETE=1; shift ;;
|
||||||
|
-l | --list) LIST=1; shift ;;
|
||||||
|
-u | --uid) UID=$2 ; shift 2 ;;
|
||||||
|
-j | --jobid) JOBID=$2 ; shift 2 ;;
|
||||||
|
-b | --basedir) BASE=$2 ; shift 2 ;;
|
||||||
|
--) shift; break ;;
|
||||||
|
*) echo "Unexpected option: $1 - this should not happen."
|
||||||
|
usage 2;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ ${LIST} -eq 1 ]]; then
|
||||||
|
for F in $(ls -d ${BASE}/cpuset/slurm/uid_*/job_*); do
|
||||||
|
JOBID=$(echo "$F" | rev | cut -d '/' -f 1 | rev | cut -d '_' -f 2)
|
||||||
|
MYUID=$(echo "$F" | rev | cut -d '/' -f 2 | rev | cut -d '_' -f 2)
|
||||||
|
echo "UID ${MYUID} JOBID ${JOBID}"
|
||||||
|
done
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if [[ ${JOBID} == "random" ]]; then
|
||||||
|
if [[ ${DELETE} -eq 1 ]]; then
|
||||||
|
echo "Cannot use random JOBID for deletion"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
JOBID=$RANDOM
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
FOLDERS="cpuset cpuacct memory devices"
|
||||||
|
|
||||||
|
if [[ ${DELETE} -eq 1 ]]; then
|
||||||
|
for F in ${FOLDERS}; do
|
||||||
|
rm -r --force "${BASE}/${F}/slurm/uid_${UID}/job_${JOBID}"
|
||||||
|
done
|
||||||
|
else
|
||||||
|
for F in ${FOLDERS}; do
|
||||||
|
if [[ $VERBOSITY -eq 1 ]]; then
|
||||||
|
echo "${BASE}/${F}/slurm/uid_${UID}/job_${JOBID}"
|
||||||
|
fi
|
||||||
|
mkdir -p "${BASE}/${F}/slurm/uid_${UID}/job_${JOBID}"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "0-71" > "${BASE}/cpuset/slurm/uid_${UID}/job_${JOBID}/cpuset.effective_cpus"
|
||||||
|
echo "0-3" > "${BASE}/cpuset/slurm/uid_${UID}/job_${JOBID}/cpuset.effective_mems"
|
||||||
|
|
||||||
|
echo "249036800000" > "${BASE}/memory/slurm/uid_${UID}/job_${JOBID}/memory.limit_in_bytes"
|
||||||
|
echo "249036800000" > "${BASE}/memory/slurm/uid_${UID}/job_${JOBID}/memory.soft_limit_in_bytes"
|
||||||
|
echo "13987840" > "${BASE}/memory/slurm/uid_${UID}/job_${JOBID}/memory.usage_in_bytes"
|
||||||
|
echo "14966784" > "${BASE}/memory/slurm/uid_${UID}/job_${JOBID}/memory.max_usage_in_bytes"
|
||||||
|
echo "60" > "${BASE}/memory/slurm/uid_${UID}/job_${JOBID}/memory.swappiness"
|
||||||
|
|
||||||
|
echo "474140369" > "${BASE}/cpuacct/slurm/uid_${UID}/job_${JOBID}/cpuacct.usage"
|
||||||
|
echo "169078878" > "${BASE}/cpuacct/slurm/uid_${UID}/job_${JOBID}/cpuacct.usage_user"
|
||||||
|
echo "315684619" > "${BASE}/cpuacct/slurm/uid_${UID}/job_${JOBID}/cpuacct.usage_sys"
|
||||||
|
|
||||||
|
echo "a *:* rwm" > "${BASE}/devices/slurm/uid_${UID}/job_${JOBID}/devices.list"
|
||||||
|
#memory.numa_stat
|
||||||
|
#total=0 N0=0 N1=0 N2=0 N3=0
|
||||||
|
#file=0 N0=0 N1=0 N2=0 N3=0
|
||||||
|
#anon=0 N0=0 N1=0 N2=0 N3=0
|
||||||
|
#unevictable=0 N0=0 N1=0 N2=0 N3=0
|
||||||
|
#hierarchical_total=958 N0=28 N1=579 N2=180 N3=171
|
||||||
|
#hierarchical_file=194 N0=0 N1=194 N2=0 N3=0
|
||||||
|
#hierarchical_anon=764 N0=28 N1=385 N2=180 N3=171
|
||||||
|
#hierarchical_unevictable=0 N0=0 N1=0 N2=0 N3=0
|
||||||
|
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
main "$@"
|
||||||
|
|
72
go.mod
72
go.mod
@@ -1,73 +1,105 @@
|
|||||||
module github.com/ClusterCockpit/cc-metric-collector
|
module github.com/ClusterCockpit/cc-metric-collector
|
||||||
|
|
||||||
go 1.18
|
go 1.20
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/ClusterCockpit/cc-units v0.4.0
|
github.com/ClusterCockpit/cc-units v0.4.0
|
||||||
github.com/ClusterCockpit/go-rocm-smi v0.3.0
|
github.com/ClusterCockpit/go-rocm-smi v0.3.0
|
||||||
github.com/NVIDIA/go-nvml v0.12.0-1
|
github.com/NVIDIA/go-nvml v0.12.0-1
|
||||||
github.com/PaesslerAG/gval v1.2.2
|
github.com/PaesslerAG/gval v1.2.2
|
||||||
|
github.com/fsnotify/fsnotify v1.6.0
|
||||||
github.com/gorilla/mux v1.8.0
|
github.com/gorilla/mux v1.8.0
|
||||||
github.com/influxdata/influxdb-client-go/v2 v2.12.3
|
github.com/influxdata/influxdb-client-go/v2 v2.12.3
|
||||||
github.com/influxdata/line-protocol v0.0.0-20210922203350-b1ad95c89adf
|
github.com/influxdata/line-protocol v0.0.0-20210922203350-b1ad95c89adf
|
||||||
github.com/influxdata/line-protocol/v2 v2.2.1
|
github.com/influxdata/line-protocol/v2 v2.2.1
|
||||||
github.com/nats-io/nats.go v1.28.0
|
github.com/nats-io/nats.go v1.30.2
|
||||||
github.com/prometheus/client_golang v1.16.0
|
github.com/prometheus/client_golang v1.17.0
|
||||||
github.com/stmcginnis/gofish v0.14.0
|
github.com/stmcginnis/gofish v0.14.0
|
||||||
github.com/tklauser/go-sysconf v0.3.12
|
github.com/tklauser/go-sysconf v0.3.12
|
||||||
golang.design/x/thread v0.0.0-20210122121316-335e9adffdf1
|
golang.design/x/thread v0.0.0-20210122121316-335e9adffdf1
|
||||||
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
|
||||||
golang.org/x/sys v0.11.0
|
golang.org/x/sys v0.13.0
|
||||||
gopkg.in/fsnotify.v1 v1.4.7
|
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
github.com/BurntSushi/toml v1.3.2 // indirect
|
||||||
|
github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 // indirect
|
||||||
|
github.com/CloudyKit/jet/v6 v6.2.0 // indirect
|
||||||
|
github.com/Joker/jade v1.1.3 // indirect
|
||||||
|
github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06 // indirect
|
||||||
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
||||||
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
|
||||||
|
github.com/aymerick/douceur v0.2.0 // indirect
|
||||||
github.com/beorn7/perks v1.0.1 // indirect
|
github.com/beorn7/perks v1.0.1 // indirect
|
||||||
github.com/bytedance/sonic v1.10.0 // indirect
|
github.com/bytedance/sonic v1.10.2 // indirect
|
||||||
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
||||||
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
|
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
|
||||||
github.com/chenzhuoyu/iasm v0.9.0 // indirect
|
github.com/chenzhuoyu/iasm v0.9.0 // indirect
|
||||||
github.com/deepmap/oapi-codegen v1.13.4 // indirect
|
github.com/deepmap/oapi-codegen v1.15.0 // indirect
|
||||||
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
github.com/fatih/structs v1.1.0 // indirect
|
||||||
|
github.com/flosch/pongo2/v4 v4.0.2 // indirect
|
||||||
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
||||||
github.com/gin-contrib/sse v0.1.0 // indirect
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
||||||
github.com/gin-gonic/gin v1.9.1 // indirect
|
github.com/gin-gonic/gin v1.9.1 // indirect
|
||||||
github.com/go-playground/locales v0.14.1 // indirect
|
github.com/go-playground/locales v0.14.1 // indirect
|
||||||
github.com/go-playground/universal-translator v0.18.1 // indirect
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
||||||
github.com/go-playground/validator/v10 v10.15.0 // indirect
|
github.com/go-playground/validator/v10 v10.15.5 // indirect
|
||||||
github.com/goccy/go-json v0.10.2 // indirect
|
github.com/goccy/go-json v0.10.2 // indirect
|
||||||
github.com/golang/protobuf v1.5.3 // indirect
|
github.com/golang/protobuf v1.5.3 // indirect
|
||||||
github.com/google/uuid v1.3.0 // indirect
|
github.com/golang/snappy v0.0.4 // indirect
|
||||||
|
github.com/gomarkdown/markdown v0.0.0-20230922112808-5421fefb8386 // indirect
|
||||||
|
github.com/google/uuid v1.3.1 // indirect
|
||||||
|
github.com/gorilla/css v1.0.0 // indirect
|
||||||
|
github.com/iris-contrib/schema v0.0.6 // indirect
|
||||||
|
github.com/josharian/intern v1.0.0 // indirect
|
||||||
github.com/json-iterator/go v1.1.12 // indirect
|
github.com/json-iterator/go v1.1.12 // indirect
|
||||||
github.com/klauspost/compress v1.16.7 // indirect
|
github.com/kataras/blocks v0.0.8 // indirect
|
||||||
|
github.com/kataras/golog v0.1.9 // indirect
|
||||||
|
github.com/kataras/iris/v12 v12.2.7 // indirect
|
||||||
|
github.com/kataras/pio v0.0.12 // indirect
|
||||||
|
github.com/kataras/sitemap v0.0.6 // indirect
|
||||||
|
github.com/kataras/tunnel v0.0.4 // indirect
|
||||||
|
github.com/klauspost/compress v1.17.0 // indirect
|
||||||
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
||||||
github.com/labstack/echo/v4 v4.11.1 // indirect
|
github.com/labstack/echo/v4 v4.11.1 // indirect
|
||||||
github.com/labstack/gommon v0.4.0 // indirect
|
github.com/labstack/gommon v0.4.0 // indirect
|
||||||
github.com/leodido/go-urn v1.2.4 // indirect
|
github.com/leodido/go-urn v1.2.4 // indirect
|
||||||
|
github.com/mailgun/raymond/v2 v2.0.48 // indirect
|
||||||
|
github.com/mailru/easyjson v0.7.7 // indirect
|
||||||
github.com/mattn/go-colorable v0.1.13 // indirect
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
||||||
github.com/mattn/go-isatty v0.0.19 // indirect
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
||||||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
||||||
|
github.com/microcosm-cc/bluemonday v1.0.25 // indirect
|
||||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
||||||
github.com/modern-go/reflect2 v1.0.2 // indirect
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
||||||
github.com/nats-io/nats-server/v2 v2.8.4 // indirect
|
github.com/nats-io/nats-server/v2 v2.8.4 // indirect
|
||||||
github.com/nats-io/nkeys v0.4.4 // indirect
|
github.com/nats-io/nkeys v0.4.5 // indirect
|
||||||
github.com/nats-io/nuid v1.0.1 // indirect
|
github.com/nats-io/nuid v1.0.1 // indirect
|
||||||
github.com/pelletier/go-toml/v2 v2.0.9 // indirect
|
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
|
||||||
github.com/pkg/errors v0.9.1 // indirect
|
github.com/pkg/errors v0.9.1 // indirect
|
||||||
github.com/prometheus/client_model v0.4.0 // indirect
|
github.com/prometheus/client_model v0.5.0 // indirect
|
||||||
github.com/prometheus/common v0.44.0 // indirect
|
github.com/prometheus/common v0.44.0 // indirect
|
||||||
github.com/prometheus/procfs v0.11.1 // indirect
|
github.com/prometheus/procfs v0.12.0 // indirect
|
||||||
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
||||||
|
github.com/schollz/closestmatch v2.1.0+incompatible // indirect
|
||||||
github.com/shopspring/decimal v1.3.1 // indirect
|
github.com/shopspring/decimal v1.3.1 // indirect
|
||||||
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
||||||
|
github.com/tdewolff/minify/v2 v2.12.9 // indirect
|
||||||
|
github.com/tdewolff/parse/v2 v2.6.8 // indirect
|
||||||
github.com/tklauser/numcpus v0.6.1 // indirect
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
||||||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
||||||
github.com/ugorji/go/codec v1.2.11 // indirect
|
github.com/ugorji/go/codec v1.2.11 // indirect
|
||||||
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
||||||
github.com/valyala/fasttemplate v1.2.2 // indirect
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
||||||
golang.org/x/arch v0.4.0 // indirect
|
github.com/vmihailenco/msgpack/v5 v5.4.0 // indirect
|
||||||
golang.org/x/crypto v0.12.0 // indirect
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
||||||
golang.org/x/net v0.14.0 // indirect
|
github.com/yosssi/ace v0.0.5 // indirect
|
||||||
golang.org/x/text v0.12.0 // indirect
|
golang.org/x/arch v0.5.0 // indirect
|
||||||
|
golang.org/x/crypto v0.14.0 // indirect
|
||||||
|
golang.org/x/net v0.16.0 // indirect
|
||||||
|
golang.org/x/text v0.13.0 // indirect
|
||||||
|
golang.org/x/time v0.3.0 // indirect
|
||||||
google.golang.org/protobuf v1.31.0 // indirect
|
google.golang.org/protobuf v1.31.0 // indirect
|
||||||
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
)
|
)
|
||||||
|
204
go.sum
204
go.sum
@@ -1,23 +1,41 @@
|
|||||||
|
github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8=
|
||||||
|
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
|
||||||
|
github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 h1:sR+/8Yb4slttB4vD+b9btVEnWgL3Q00OBTzVT8B9C0c=
|
||||||
|
github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53/go.mod h1:+3IMCy2vIlbG1XG/0ggNQv0SvxCAIpPM5b1nCz56Xno=
|
||||||
|
github.com/CloudyKit/jet/v6 v6.2.0 h1:EpcZ6SR9n28BUGtNJSvlBqf90IpjeFr36Tizxhn/oME=
|
||||||
|
github.com/CloudyKit/jet/v6 v6.2.0/go.mod h1:d3ypHeIRNo2+XyqnGA8s+aphtcVpjP5hPwP/Lzo7Ro4=
|
||||||
github.com/ClusterCockpit/cc-units v0.4.0 h1:zP5DOu99GmErW0tCDf0gcLrlWt42RQ9dpoONEOh4cI0=
|
github.com/ClusterCockpit/cc-units v0.4.0 h1:zP5DOu99GmErW0tCDf0gcLrlWt42RQ9dpoONEOh4cI0=
|
||||||
github.com/ClusterCockpit/cc-units v0.4.0/go.mod h1:3S3PAhAayS3pbgcT4q9Vn9VJw22Op51X0YimtG77zBw=
|
github.com/ClusterCockpit/cc-units v0.4.0/go.mod h1:3S3PAhAayS3pbgcT4q9Vn9VJw22Op51X0YimtG77zBw=
|
||||||
github.com/ClusterCockpit/go-rocm-smi v0.3.0 h1:1qZnSpG7/NyLtc7AjqnUL9Jb8xtqG1nMVgp69rJfaR8=
|
github.com/ClusterCockpit/go-rocm-smi v0.3.0 h1:1qZnSpG7/NyLtc7AjqnUL9Jb8xtqG1nMVgp69rJfaR8=
|
||||||
github.com/ClusterCockpit/go-rocm-smi v0.3.0/go.mod h1:+I3UMeX3OlizXDf1WpGD43W4KGZZGVSGmny6rTeOnWA=
|
github.com/ClusterCockpit/go-rocm-smi v0.3.0/go.mod h1:+I3UMeX3OlizXDf1WpGD43W4KGZZGVSGmny6rTeOnWA=
|
||||||
|
github.com/Joker/hpp v1.0.0 h1:65+iuJYdRXv/XyN62C1uEmmOx3432rNG/rKlX6V7Kkc=
|
||||||
|
github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY=
|
||||||
|
github.com/Joker/jade v1.1.3 h1:Qbeh12Vq6BxURXT1qZBRHsDxeURB8ztcL6f3EXSGeHk=
|
||||||
|
github.com/Joker/jade v1.1.3/go.mod h1:T+2WLyt7VH6Lp0TRxQrUYEs64nRc83wkMQrfeIQKduM=
|
||||||
github.com/NVIDIA/go-nvml v0.11.6-0/go.mod h1:hy7HYeQy335x6nEss0Ne3PYqleRa6Ct+VKD9RQ4nyFs=
|
github.com/NVIDIA/go-nvml v0.11.6-0/go.mod h1:hy7HYeQy335x6nEss0Ne3PYqleRa6Ct+VKD9RQ4nyFs=
|
||||||
github.com/NVIDIA/go-nvml v0.12.0-1 h1:6mdjtlFo+17dWL7VFPfuRMtf0061TF4DKls9pkSw6uM=
|
github.com/NVIDIA/go-nvml v0.12.0-1 h1:6mdjtlFo+17dWL7VFPfuRMtf0061TF4DKls9pkSw6uM=
|
||||||
github.com/NVIDIA/go-nvml v0.12.0-1/go.mod h1:hy7HYeQy335x6nEss0Ne3PYqleRa6Ct+VKD9RQ4nyFs=
|
github.com/NVIDIA/go-nvml v0.12.0-1/go.mod h1:hy7HYeQy335x6nEss0Ne3PYqleRa6Ct+VKD9RQ4nyFs=
|
||||||
github.com/PaesslerAG/gval v1.2.2 h1:Y7iBzhgE09IGTt5QgGQ2IdaYYYOU134YGHBThD+wm9E=
|
github.com/PaesslerAG/gval v1.2.2 h1:Y7iBzhgE09IGTt5QgGQ2IdaYYYOU134YGHBThD+wm9E=
|
||||||
github.com/PaesslerAG/gval v1.2.2/go.mod h1:XRFLwvmkTEdYziLdaCeCa5ImcGVrfQbeNUbVR+C6xac=
|
github.com/PaesslerAG/gval v1.2.2/go.mod h1:XRFLwvmkTEdYziLdaCeCa5ImcGVrfQbeNUbVR+C6xac=
|
||||||
|
github.com/PaesslerAG/jsonpath v0.1.0 h1:gADYeifvlqK3R3i2cR5B4DGgxLXIPb3TRTH1mGi0jPI=
|
||||||
github.com/PaesslerAG/jsonpath v0.1.0/go.mod h1:4BzmtoM/PI8fPO4aQGIusjGxGir2BzcV0grWtFzq1Y8=
|
github.com/PaesslerAG/jsonpath v0.1.0/go.mod h1:4BzmtoM/PI8fPO4aQGIusjGxGir2BzcV0grWtFzq1Y8=
|
||||||
github.com/RaveNoX/go-jsoncommentstrip v1.0.0/go.mod h1:78ihd09MekBnJnxpICcwzCMzGrKSKYe4AqU6PDYYpjk=
|
github.com/RaveNoX/go-jsoncommentstrip v1.0.0/go.mod h1:78ihd09MekBnJnxpICcwzCMzGrKSKYe4AqU6PDYYpjk=
|
||||||
|
github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06 h1:KkH3I3sJuOLP3TjA/dfr4NAY8bghDwnXiU7cTKxQqo0=
|
||||||
|
github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06/go.mod h1:7erjKLwalezA0k99cWs5L11HWOAPNjdUZ6RxH1BXbbM=
|
||||||
|
github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=
|
||||||
|
github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/cCs=
|
||||||
|
github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
|
||||||
github.com/apapsch/go-jsonmerge/v2 v2.0.0 h1:axGnT1gRIfimI7gJifB699GoE/oq+F2MU7Dml6nw9rQ=
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0 h1:axGnT1gRIfimI7gJifB699GoE/oq+F2MU7Dml6nw9rQ=
|
||||||
github.com/apapsch/go-jsonmerge/v2 v2.0.0/go.mod h1:lvDnEdqiQrp0O42VQGgmlKpxL1AP2+08jFMw88y4klk=
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0/go.mod h1:lvDnEdqiQrp0O42VQGgmlKpxL1AP2+08jFMw88y4klk=
|
||||||
|
github.com/aymerick/douceur v0.2.0 h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk=
|
||||||
|
github.com/aymerick/douceur v0.2.0/go.mod h1:wlT5vV2O3h55X9m7iVYN0TBM0NH/MmbLnd30/FjWUq4=
|
||||||
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
|
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
|
||||||
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
|
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
|
||||||
github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w=
|
github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w=
|
||||||
github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM=
|
github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM=
|
||||||
github.com/bytedance/sonic v1.10.0-rc/go.mod h1:ElCzW+ufi8qKqNW0FY314xriJhyJhuoJ3gFZdAHF7NM=
|
github.com/bytedance/sonic v1.10.0-rc/go.mod h1:ElCzW+ufi8qKqNW0FY314xriJhyJhuoJ3gFZdAHF7NM=
|
||||||
github.com/bytedance/sonic v1.10.0 h1:qtNZduETEIWJVIyDl01BeNxur2rW9OwTQ/yBqFRkKEk=
|
github.com/bytedance/sonic v1.10.2 h1:GQebETVBxYB7JGWJtLBi07OVzWwt+8dWA00gEVW2ZFE=
|
||||||
github.com/bytedance/sonic v1.10.0/go.mod h1:iZcSUejdk5aukTND/Eu/ivjQuEL0Cu9/rf50Hi0u/g4=
|
github.com/bytedance/sonic v1.10.2/go.mod h1:iZcSUejdk5aukTND/Eu/ivjQuEL0Cu9/rf50Hi0u/g4=
|
||||||
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
|
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
|
||||||
github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
||||||
github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY=
|
github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY=
|
||||||
@@ -28,12 +46,20 @@ github.com/chenzhuoyu/iasm v0.9.0 h1:9fhXjVzq5hUy2gkhhgHl95zG2cEAhw9OSGs8toWWAwo
|
|||||||
github.com/chenzhuoyu/iasm v0.9.0/go.mod h1:Xjy2NpN3h7aUqeqM+woSuuvxmIe6+DDsiNLIrkAmYog=
|
github.com/chenzhuoyu/iasm v0.9.0/go.mod h1:Xjy2NpN3h7aUqeqM+woSuuvxmIe6+DDsiNLIrkAmYog=
|
||||||
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/deepmap/oapi-codegen v1.13.4 h1:lRRQ8JAXaz5/4oidKFyk3fFZFQsbv0BzRtvDKDnvIfM=
|
github.com/deepmap/oapi-codegen v1.15.0 h1:SQqViaeb4k2vMul8gx12oDOIadEtoRqTdLkxjzqtQ90=
|
||||||
github.com/deepmap/oapi-codegen v1.13.4/go.mod h1:/h5nFQbTAMz4S/WtBz8sBfamlGByYKDr21O2uoNgCYI=
|
github.com/deepmap/oapi-codegen v1.15.0/go.mod h1:a6KoHV7lMRwsPoEg2C6NDHiXYV3EQfiFocOlJ8dgJQE=
|
||||||
|
github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs=
|
||||||
|
github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=
|
||||||
|
github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
|
||||||
|
github.com/flosch/pongo2/v4 v4.0.2 h1:gv+5Pe3vaSVmiJvh/BZa82b7/00YUGm0PIyVVLop0Hw=
|
||||||
|
github.com/flosch/pongo2/v4 v4.0.2/go.mod h1:B5ObFANs/36VwxxlgKpdchIJHMvHB562PW+BWPhwZD8=
|
||||||
github.com/frankban/quicktest v1.11.0/go.mod h1:K+q6oSqb0W0Ininfk863uOk1lMy69l/P6txr3mVT54s=
|
github.com/frankban/quicktest v1.11.0/go.mod h1:K+q6oSqb0W0Ininfk863uOk1lMy69l/P6txr3mVT54s=
|
||||||
github.com/frankban/quicktest v1.11.2/go.mod h1:K+q6oSqb0W0Ininfk863uOk1lMy69l/P6txr3mVT54s=
|
github.com/frankban/quicktest v1.11.2/go.mod h1:K+q6oSqb0W0Ininfk863uOk1lMy69l/P6txr3mVT54s=
|
||||||
|
github.com/frankban/quicktest v1.13.0 h1:yNZif1OkDfNoDfb9zZa9aXIpejNR4F23Wely0c+Qdqk=
|
||||||
github.com/frankban/quicktest v1.13.0/go.mod h1:qLE0fzW0VuyUAJgPU19zByoIr0HtCHN/r/VLSOOIySU=
|
github.com/frankban/quicktest v1.13.0/go.mod h1:qLE0fzW0VuyUAJgPU19zByoIr0HtCHN/r/VLSOOIySU=
|
||||||
|
github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY=
|
||||||
github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw=
|
github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw=
|
||||||
github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU=
|
github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU=
|
||||||
github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA=
|
github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA=
|
||||||
@@ -41,47 +67,79 @@ github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE
|
|||||||
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
|
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
|
||||||
github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg=
|
github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg=
|
||||||
github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU=
|
github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU=
|
||||||
|
github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s=
|
||||||
github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA=
|
github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA=
|
||||||
github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY=
|
github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY=
|
||||||
github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY=
|
github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY=
|
||||||
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
|
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
|
||||||
github.com/go-playground/validator/v10 v10.15.0 h1:nDU5XeOKtB3GEa+uB7GNYwhVKsgjAR7VgKoNB6ryXfw=
|
github.com/go-playground/validator/v10 v10.15.5 h1:LEBecTWb/1j5TNY1YYG2RcOUN3R7NLylN+x8TTueE24=
|
||||||
github.com/go-playground/validator/v10 v10.15.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU=
|
github.com/go-playground/validator/v10 v10.15.5/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU=
|
||||||
|
github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=
|
||||||
github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU=
|
github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU=
|
||||||
github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
|
github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
|
||||||
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||||
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
||||||
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
|
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
|
||||||
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
||||||
|
github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=
|
||||||
|
github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||||
|
github.com/gomarkdown/markdown v0.0.0-20230922112808-5421fefb8386 h1:EcQR3gusLHN46TAD+G+EbaaqJArt5vHhNpXAa12PQf4=
|
||||||
|
github.com/gomarkdown/markdown v0.0.0-20230922112808-5421fefb8386/go.mod h1:JDGcbDT52eL4fju3sZ4TeHGsQwhG9nbDV21aMyhwPoA=
|
||||||
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||||
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||||
|
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
|
||||||
|
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
|
||||||
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
|
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
|
||||||
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
|
github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4=
|
||||||
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
|
github.com/gorilla/css v1.0.0 h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY=
|
||||||
|
github.com/gorilla/css v1.0.0/go.mod h1:Dn721qIggHpt4+EFCcTLTU/vk5ySda2ReITrtgBl60c=
|
||||||
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
|
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
|
||||||
github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=
|
github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=
|
||||||
|
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
|
||||||
|
github.com/imkira/go-interpol v1.1.0 h1:KIiKr0VSG2CUW1hl1jpiyuzuJeKUUpC8iM1AIE7N1Vk=
|
||||||
github.com/influxdata/influxdb-client-go/v2 v2.12.3 h1:28nRlNMRIV4QbtIUvxhWqaxn0IpXeMSkY/uJa/O/vC4=
|
github.com/influxdata/influxdb-client-go/v2 v2.12.3 h1:28nRlNMRIV4QbtIUvxhWqaxn0IpXeMSkY/uJa/O/vC4=
|
||||||
github.com/influxdata/influxdb-client-go/v2 v2.12.3/go.mod h1:IrrLUbCjjfkmRuaCiGQg4m2GbkaeJDcuWoxiWdQEbA0=
|
github.com/influxdata/influxdb-client-go/v2 v2.12.3/go.mod h1:IrrLUbCjjfkmRuaCiGQg4m2GbkaeJDcuWoxiWdQEbA0=
|
||||||
github.com/influxdata/line-protocol v0.0.0-20210922203350-b1ad95c89adf h1:7JTmneyiNEwVBOHSjoMxiWAqB992atOeepeFYegn5RU=
|
github.com/influxdata/line-protocol v0.0.0-20210922203350-b1ad95c89adf h1:7JTmneyiNEwVBOHSjoMxiWAqB992atOeepeFYegn5RU=
|
||||||
github.com/influxdata/line-protocol v0.0.0-20210922203350-b1ad95c89adf/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo=
|
github.com/influxdata/line-protocol v0.0.0-20210922203350-b1ad95c89adf/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo=
|
||||||
github.com/influxdata/line-protocol-corpus v0.0.0-20210519164801-ca6fa5da0184/go.mod h1:03nmhxzZ7Xk2pdG+lmMd7mHDfeVOYFyhOgwO61qWU98=
|
github.com/influxdata/line-protocol-corpus v0.0.0-20210519164801-ca6fa5da0184/go.mod h1:03nmhxzZ7Xk2pdG+lmMd7mHDfeVOYFyhOgwO61qWU98=
|
||||||
|
github.com/influxdata/line-protocol-corpus v0.0.0-20210922080147-aa28ccfb8937 h1:MHJNQ+p99hFATQm6ORoLmpUCF7ovjwEFshs/NHzAbig=
|
||||||
github.com/influxdata/line-protocol-corpus v0.0.0-20210922080147-aa28ccfb8937/go.mod h1:BKR9c0uHSmRgM/se9JhFHtTT7JTO67X23MtKMHtZcpo=
|
github.com/influxdata/line-protocol-corpus v0.0.0-20210922080147-aa28ccfb8937/go.mod h1:BKR9c0uHSmRgM/se9JhFHtTT7JTO67X23MtKMHtZcpo=
|
||||||
github.com/influxdata/line-protocol/v2 v2.0.0-20210312151457-c52fdecb625a/go.mod h1:6+9Xt5Sq1rWx+glMgxhcg2c0DUaehK+5TDcPZ76GypY=
|
github.com/influxdata/line-protocol/v2 v2.0.0-20210312151457-c52fdecb625a/go.mod h1:6+9Xt5Sq1rWx+glMgxhcg2c0DUaehK+5TDcPZ76GypY=
|
||||||
github.com/influxdata/line-protocol/v2 v2.1.0/go.mod h1:QKw43hdUBg3GTk2iC3iyCxksNj7PX9aUSeYOYE/ceHY=
|
github.com/influxdata/line-protocol/v2 v2.1.0/go.mod h1:QKw43hdUBg3GTk2iC3iyCxksNj7PX9aUSeYOYE/ceHY=
|
||||||
github.com/influxdata/line-protocol/v2 v2.2.1 h1:EAPkqJ9Km4uAxtMRgUubJyqAr6zgWM0dznKMLRauQRE=
|
github.com/influxdata/line-protocol/v2 v2.2.1 h1:EAPkqJ9Km4uAxtMRgUubJyqAr6zgWM0dznKMLRauQRE=
|
||||||
github.com/influxdata/line-protocol/v2 v2.2.1/go.mod h1:DmB3Cnh+3oxmG6LOBIxce4oaL4CPj3OmMPgvauXh+tM=
|
github.com/influxdata/line-protocol/v2 v2.2.1/go.mod h1:DmB3Cnh+3oxmG6LOBIxce4oaL4CPj3OmMPgvauXh+tM=
|
||||||
|
github.com/iris-contrib/httpexpect/v2 v2.15.2 h1:T9THsdP1woyAqKHwjkEsbCnMefsAFvk8iJJKokcJ3Go=
|
||||||
|
github.com/iris-contrib/schema v0.0.6 h1:CPSBLyx2e91H2yJzPuhGuifVRnZBBJ3pCOMbOvPZaTw=
|
||||||
|
github.com/iris-contrib/schema v0.0.6/go.mod h1:iYszG0IOsuIsfzjymw1kMzTL8YQcCWlm65f3wX8J5iA=
|
||||||
|
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
|
||||||
|
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
|
||||||
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
|
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
|
||||||
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
|
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
|
||||||
github.com/juju/gnuflag v0.0.0-20171113085948-2ce1bb71843d/go.mod h1:2PavIy+JPciBPrBUjwbNvtwB6RQlve+hkpll6QSNmOE=
|
github.com/juju/gnuflag v0.0.0-20171113085948-2ce1bb71843d/go.mod h1:2PavIy+JPciBPrBUjwbNvtwB6RQlve+hkpll6QSNmOE=
|
||||||
github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I=
|
github.com/kataras/blocks v0.0.8 h1:MrpVhoFTCR2v1iOOfGng5VJSILKeZZI+7NGfxEh3SUM=
|
||||||
github.com/klauspost/compress v1.16.7/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE=
|
github.com/kataras/blocks v0.0.8/go.mod h1:9Jm5zx6BB+06NwA+OhTbHW1xkMOYxahnqTN5DveZ2Yg=
|
||||||
|
github.com/kataras/golog v0.1.9 h1:vLvSDpP7kihFGKFAvBSofYo7qZNULYSHOH2D7rPTKJk=
|
||||||
|
github.com/kataras/golog v0.1.9/go.mod h1:jlpk/bOaYCyqDqH18pgDHdaJab72yBE6i0O3s30hpWY=
|
||||||
|
github.com/kataras/iris/v12 v12.2.7 h1:C9KWZmZT5pB5f2ot1XYWDBdi5XeTz0CGweHRXCDARZg=
|
||||||
|
github.com/kataras/iris/v12 v12.2.7/go.mod h1:mD76k/tIBFy8pHTFIgUPrVrkI4lTKvFbIcfbStJSBnA=
|
||||||
|
github.com/kataras/pio v0.0.12 h1:o52SfVYauS3J5X08fNjlGS5arXHjW/ItLkyLcKjoH6w=
|
||||||
|
github.com/kataras/pio v0.0.12/go.mod h1:ODK/8XBhhQ5WqrAhKy+9lTPS7sBf6O3KcLhc9klfRcY=
|
||||||
|
github.com/kataras/sitemap v0.0.6 h1:w71CRMMKYMJh6LR2wTgnk5hSgjVNB9KL60n5e2KHvLY=
|
||||||
|
github.com/kataras/sitemap v0.0.6/go.mod h1:dW4dOCNs896OR1HmG+dMLdT7JjDk7mYBzoIRwuj5jA4=
|
||||||
|
github.com/kataras/tunnel v0.0.4 h1:sCAqWuJV7nPzGrlb0os3j49lk2JhILT0rID38NHNLpA=
|
||||||
|
github.com/kataras/tunnel v0.0.4/go.mod h1:9FkU4LaeifdMWqZu7o20ojmW4B7hdhv2CMLwfnHGpYw=
|
||||||
|
github.com/klauspost/compress v1.17.0 h1:Rnbp4K9EjcDuVuHtd0dgA4qNuv9yKDYKK1ulpJwgrqM=
|
||||||
|
github.com/klauspost/compress v1.17.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE=
|
||||||
github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg=
|
github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
||||||
github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M=
|
github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M=
|
||||||
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
|
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
|
||||||
|
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
|
||||||
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
||||||
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
||||||
|
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
||||||
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
||||||
github.com/labstack/echo/v4 v4.11.1 h1:dEpLU2FLg4UVmvCGPuk/APjlH6GDpbEPti61srUUUs4=
|
github.com/labstack/echo/v4 v4.11.1 h1:dEpLU2FLg4UVmvCGPuk/APjlH6GDpbEPti61srUUUs4=
|
||||||
github.com/labstack/echo/v4 v4.11.1/go.mod h1:YuYRTSM3CHs2ybfrL8Px48bO6BAnYIN4l8wSTMP6BDQ=
|
github.com/labstack/echo/v4 v4.11.1/go.mod h1:YuYRTSM3CHs2ybfrL8Px48bO6BAnYIN4l8wSTMP6BDQ=
|
||||||
@@ -89,6 +147,10 @@ github.com/labstack/gommon v0.4.0 h1:y7cvthEAEbU0yHOf4axH8ZG2NH8knB9iNSoTO8dyIk8
|
|||||||
github.com/labstack/gommon v0.4.0/go.mod h1:uW6kP17uPlLJsD3ijUYn3/M5bAxtlZhMI6m3MFxTMTM=
|
github.com/labstack/gommon v0.4.0/go.mod h1:uW6kP17uPlLJsD3ijUYn3/M5bAxtlZhMI6m3MFxTMTM=
|
||||||
github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q=
|
github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q=
|
||||||
github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4=
|
github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4=
|
||||||
|
github.com/mailgun/raymond/v2 v2.0.48 h1:5dmlB680ZkFG2RN/0lvTAghrSxIESeu9/2aeDqACtjw=
|
||||||
|
github.com/mailgun/raymond/v2 v2.0.48/go.mod h1:lsgvL50kgt1ylcFJYZiULi5fjPBkkhNfj4KA0W54Z18=
|
||||||
|
github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
|
||||||
|
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
|
||||||
github.com/mattn/go-colorable v0.1.11/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
|
github.com/mattn/go-colorable v0.1.11/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
|
||||||
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
|
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
|
||||||
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
|
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
|
||||||
@@ -98,47 +160,72 @@ github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APP
|
|||||||
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||||
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
|
||||||
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
|
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
|
||||||
|
github.com/microcosm-cc/bluemonday v1.0.25 h1:4NEwSfiJ+Wva0VxN5B8OwMicaJvD8r9tlJWm9rtloEg=
|
||||||
|
github.com/microcosm-cc/bluemonday v1.0.25/go.mod h1:ZIOjCQp1OrzBBPIJmfX4qDYFuhU02nx4bn030ixfHLE=
|
||||||
|
github.com/minio/highwayhash v1.0.2 h1:Aak5U0nElisjDCfPSG79Tgzkn2gl66NxOMspRrKnA/g=
|
||||||
|
github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
||||||
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
|
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
|
||||||
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
|
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
|
||||||
|
github.com/nats-io/jwt/v2 v2.5.0 h1:WQQ40AAlqqfx+f6ku+i0pOVm+ASirD4fUh+oQsiE9Ak=
|
||||||
|
github.com/nats-io/nats-server/v2 v2.8.4 h1:0jQzze1T9mECg8YZEl8+WYUXb9JKluJfCBriPUtluB4=
|
||||||
github.com/nats-io/nats-server/v2 v2.8.4/go.mod h1:8zZa+Al3WsESfmgSs98Fi06dRWLH5Bnq90m5bKD/eT4=
|
github.com/nats-io/nats-server/v2 v2.8.4/go.mod h1:8zZa+Al3WsESfmgSs98Fi06dRWLH5Bnq90m5bKD/eT4=
|
||||||
github.com/nats-io/nats.go v1.28.0 h1:Th4G6zdsz2d0OqXdfzKLClo6bOfoI/b1kInhRtFIy5c=
|
github.com/nats-io/nats.go v1.30.2 h1:aloM0TGpPorZKQhbAkdCzYDj+ZmsJDyeo3Gkbr72NuY=
|
||||||
github.com/nats-io/nats.go v1.28.0/go.mod h1:XpbWUlOElGwTYbMR7imivs7jJj9GtK7ypv321Wp6pjc=
|
github.com/nats-io/nats.go v1.30.2/go.mod h1:dcfhUgmQNN4GJEfIb2f9R7Fow+gzBF4emzDHrVBd5qM=
|
||||||
github.com/nats-io/nkeys v0.4.4 h1:xvBJ8d69TznjcQl9t6//Q5xXuVhyYiSos6RPtvQNTwA=
|
github.com/nats-io/nkeys v0.4.5 h1:Zdz2BUlFm4fJlierwvGK+yl20IAKUm7eV6AAZXEhkPk=
|
||||||
github.com/nats-io/nkeys v0.4.4/go.mod h1:XUkxdLPTufzlihbamfzQ7mw/VGx6ObUs+0bN5sNvt64=
|
github.com/nats-io/nkeys v0.4.5/go.mod h1:XUkxdLPTufzlihbamfzQ7mw/VGx6ObUs+0bN5sNvt64=
|
||||||
github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=
|
github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=
|
||||||
github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c=
|
github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c=
|
||||||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
|
||||||
github.com/pelletier/go-toml/v2 v2.0.9 h1:uH2qQXheeefCCkuBBSLi7jCiSmj3VRh2+Goq2N7Xxu0=
|
github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4=
|
||||||
github.com/pelletier/go-toml/v2 v2.0.9/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc=
|
github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc=
|
||||||
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
||||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||||
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/prometheus/client_golang v1.16.0 h1:yk/hx9hDbrGHovbci4BY+pRMfSuuat626eFsHb7tmT8=
|
github.com/prometheus/client_golang v1.17.0 h1:rl2sfwZMtSthVU752MqfjQozy7blglC+1SOtjMAMh+Q=
|
||||||
github.com/prometheus/client_golang v1.16.0/go.mod h1:Zsulrv/L9oM40tJ7T815tM89lFEugiJ9HzIqaAx4LKc=
|
github.com/prometheus/client_golang v1.17.0/go.mod h1:VeL+gMmOAxkS2IqfCq0ZmHSL+LjWfWDUmp1mBz9JgUY=
|
||||||
github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY=
|
github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw=
|
||||||
github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU=
|
github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI=
|
||||||
github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY=
|
github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY=
|
||||||
github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=
|
github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=
|
||||||
github.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI=
|
github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
|
||||||
github.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY=
|
github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
|
||||||
|
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
|
||||||
|
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
|
||||||
|
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
||||||
|
github.com/sanity-io/litter v1.5.5 h1:iE+sBxPBzoK6uaEP5Lt3fHNgpKcHXc/A2HGETy0uJQo=
|
||||||
|
github.com/schollz/closestmatch v2.1.0+incompatible h1:Uel2GXEpJqOWBrlyI+oY9LTiyyjYS17cCYRqP13/SHk=
|
||||||
|
github.com/schollz/closestmatch v2.1.0+incompatible/go.mod h1:RtP1ddjLong6gTkbtmuhtR2uUrrJOpYzYRvbcPAid+g=
|
||||||
|
github.com/sergi/go-diff v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ=
|
||||||
github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8=
|
github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8=
|
||||||
github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=
|
github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=
|
||||||
|
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
||||||
|
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
||||||
|
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
||||||
github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad/go.mod h1:qLr4V1qq6nMqFKkMo8ZTx3f+BZEkzsRUY10Xsm2mwU0=
|
github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad/go.mod h1:qLr4V1qq6nMqFKkMo8ZTx3f+BZEkzsRUY10Xsm2mwU0=
|
||||||
github.com/stmcginnis/gofish v0.14.0 h1:geECNAiG33JDB2x2xDkerpOOuXFqxp5YP3EFE3vd5iM=
|
github.com/stmcginnis/gofish v0.14.0 h1:geECNAiG33JDB2x2xDkerpOOuXFqxp5YP3EFE3vd5iM=
|
||||||
github.com/stmcginnis/gofish v0.14.0/go.mod h1:BLDSFTp8pDlf/xDbLZa+F7f7eW0E/CHCboggsu8CznI=
|
github.com/stmcginnis/gofish v0.14.0/go.mod h1:BLDSFTp8pDlf/xDbLZa+F7f7eW0E/CHCboggsu8CznI=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
||||||
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
||||||
|
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
||||||
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
||||||
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
||||||
|
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
|
||||||
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
||||||
|
github.com/tdewolff/minify/v2 v2.12.9 h1:dvn5MtmuQ/DFMwqf5j8QhEVpPX6fi3WGImhv8RUB4zA=
|
||||||
|
github.com/tdewolff/minify/v2 v2.12.9/go.mod h1:qOqdlDfL+7v0/fyymB+OP497nIxJYSvX4MQWA8OoiXU=
|
||||||
|
github.com/tdewolff/parse/v2 v2.6.8 h1:mhNZXYCx//xG7Yq2e/kVLNZw4YfYmeHbhx+Zc0OvFMA=
|
||||||
|
github.com/tdewolff/parse/v2 v2.6.8/go.mod h1:XHDhaU6IBgsryfdnpzUXBlT6leW/l25yrFBTEb4eIyM=
|
||||||
|
github.com/tdewolff/test v1.0.9 h1:SswqJCmeN4B+9gEAi/5uqT0qpi1y2/2O47V/1hhGZT0=
|
||||||
|
github.com/tdewolff/test v1.0.9/go.mod h1:6DAvZliBAAnD7rhVgwaM7DE5/d9NMOAJ09SqYqeK4QE=
|
||||||
github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU=
|
github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU=
|
||||||
github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI=
|
github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI=
|
||||||
github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk=
|
github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk=
|
||||||
@@ -152,44 +239,91 @@ github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyC
|
|||||||
github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
|
github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
|
||||||
github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQD0Loo=
|
github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQD0Loo=
|
||||||
github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
|
github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
|
||||||
|
github.com/vmihailenco/msgpack/v5 v5.4.0 h1:hRM0digJwyR6vll33NNAwCFguy5JuBD6jxDmQP3l608=
|
||||||
|
github.com/vmihailenco/msgpack/v5 v5.4.0/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok=
|
||||||
|
github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=
|
||||||
|
github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds=
|
||||||
|
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c=
|
||||||
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=
|
||||||
|
github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=
|
||||||
|
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 h1:6fRhSjgLCkTD3JnJxvaJ4Sj+TYblw757bqYgZaOq5ZY=
|
||||||
|
github.com/yosssi/ace v0.0.5 h1:tUkIP/BLdKqrlrPwcmH0shwEEhTRHoGnc1wFIWmaBUA=
|
||||||
|
github.com/yosssi/ace v0.0.5/go.mod h1:ALfIzm2vT7t5ZE7uoIZqF3TQ7SAOyupFZnkrF5id+K0=
|
||||||
|
github.com/yudai/gojsondiff v1.0.0 h1:27cbfqXLVEJ1o8I6v3y9lg8Ydm53EKqHXAOMxEGlCOA=
|
||||||
|
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 h1:BHyfKlQyqbsFN5p3IfnEUduWvb9is428/nNb5L3U01M=
|
||||||
|
github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
|
||||||
golang.design/x/thread v0.0.0-20210122121316-335e9adffdf1 h1:P7S/GeHBAFEZIYp0ePPs2kHXoazz8q2KsyxHyQVGCJg=
|
golang.design/x/thread v0.0.0-20210122121316-335e9adffdf1 h1:P7S/GeHBAFEZIYp0ePPs2kHXoazz8q2KsyxHyQVGCJg=
|
||||||
golang.design/x/thread v0.0.0-20210122121316-335e9adffdf1/go.mod h1:9CWpnTUmlQkfdpdutA1nNf4iE5lAVt3QZOu0Z6hahBE=
|
golang.design/x/thread v0.0.0-20210122121316-335e9adffdf1/go.mod h1:9CWpnTUmlQkfdpdutA1nNf4iE5lAVt3QZOu0Z6hahBE=
|
||||||
golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
|
golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
|
||||||
golang.org/x/arch v0.4.0 h1:A8WCeEWhLwPBKNbFi5Wv5UTCBx5zzubnXDlMOFAzFMc=
|
golang.org/x/arch v0.5.0 h1:jpGode6huXQxcskEIpOCvrU+tzo81b6+oFLUYXWtH/Y=
|
||||||
golang.org/x/arch v0.4.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
|
golang.org/x/arch v0.5.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
|
||||||
golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw=
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
||||||
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb h1:mIKbk8weKhSeLH2GmUTrvx8CjkyJmnU1wFmg59CUjFA=
|
golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc=
|
||||||
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc=
|
golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4=
|
||||||
golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM8rJBtfilJ2qTU199MI=
|
||||||
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo=
|
||||||
|
golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro=
|
||||||
|
golang.org/x/net v0.0.0-20190327091125-710a502c58a2/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||||
|
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||||
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
|
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||||
|
golang.org/x/net v0.16.0 h1:7eBu7KsSvFDtSXUIDbh3aqlK4DPsZ1rByC8PFfBThos=
|
||||||
|
golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
|
||||||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
|
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210122093101-04d7465088b8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210122093101-04d7465088b8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
|
|
||||||
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
|
golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE=
|
||||||
golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
|
golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
|
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||||
|
golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=
|
||||||
|
golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
|
||||||
|
golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
|
||||||
|
golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||||
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
|
golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU=
|
||||||
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
|
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||||
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
||||||
google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
|
google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
|
||||||
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
|
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
|
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
|
||||||
|
gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA=
|
||||||
|
gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
|
||||||
|
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
|
||||||
|
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
moul.io/http2curl/v2 v2.3.0 h1:9r3JfDzWPcbIklMOs2TnIFzDYvfAZvjeavG6EzP7jYs=
|
||||||
nullprogram.com/x/optparse v1.0.0/go.mod h1:KdyPE+Igbe0jQUrVfMqDMeJQIJZEuyV7pjYmp6pbG50=
|
nullprogram.com/x/optparse v1.0.0/go.mod h1:KdyPE+Igbe0jQUrVfMqDMeJQIJZEuyV7pjYmp6pbG50=
|
||||||
rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4=
|
rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4=
|
||||||
|
@@ -367,7 +367,7 @@ func EvalBoolCondition(condition string, params map[string]interface{}) (bool, e
|
|||||||
return value, err
|
return value, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func EvalFloat64Condition(condition string, params map[string]interface{}) (float64, error) {
|
func EvalFloat64Condition(condition string, params map[string]float64) (float64, error) {
|
||||||
evaluables.mutex.Lock()
|
evaluables.mutex.Lock()
|
||||||
evaluable, ok := evaluables.mapping[condition]
|
evaluable, ok := evaluables.mapping[condition]
|
||||||
evaluables.mutex.Unlock()
|
evaluables.mutex.Unlock()
|
||||||
|
@@ -290,7 +290,7 @@ func getCpuListOfCoreFunc(args interface{}) (interface{}, error) {
|
|||||||
case int:
|
case int:
|
||||||
for _, c := range topo.CpuData() {
|
for _, c := range topo.CpuData() {
|
||||||
if c.Core == in {
|
if c.Core == in {
|
||||||
cpulist = append(cpulist, c.Cpuid)
|
cpulist = append(cpulist, c.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -304,7 +304,7 @@ func getCpuListOfSocketFunc(args interface{}) (interface{}, error) {
|
|||||||
case int:
|
case int:
|
||||||
for _, c := range topo.CpuData() {
|
for _, c := range topo.CpuData() {
|
||||||
if c.Socket == in {
|
if c.Socket == in {
|
||||||
cpulist = append(cpulist, c.Cpuid)
|
cpulist = append(cpulist, c.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -317,8 +317,8 @@ func getCpuListOfNumaDomainFunc(args interface{}) (interface{}, error) {
|
|||||||
switch in := args.(type) {
|
switch in := args.(type) {
|
||||||
case int:
|
case int:
|
||||||
for _, c := range topo.CpuData() {
|
for _, c := range topo.CpuData() {
|
||||||
if c.Numadomain == in {
|
if c.NumaDomain == in {
|
||||||
cpulist = append(cpulist, c.Cpuid)
|
cpulist = append(cpulist, c.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -332,7 +332,7 @@ func getCpuListOfDieFunc(args interface{}) (interface{}, error) {
|
|||||||
case int:
|
case int:
|
||||||
for _, c := range topo.CpuData() {
|
for _, c := range topo.CpuData() {
|
||||||
if c.Die == in {
|
if c.Die == in {
|
||||||
cpulist = append(cpulist, c.Cpuid)
|
cpulist = append(cpulist, c.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -7,6 +7,7 @@ import (
|
|||||||
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
||||||
write "github.com/influxdata/influxdb-client-go/v2/api/write"
|
write "github.com/influxdata/influxdb-client-go/v2/api/write"
|
||||||
lp "github.com/influxdata/line-protocol" // MIT license
|
lp "github.com/influxdata/line-protocol" // MIT license
|
||||||
|
"golang.org/x/exp/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Most functions are derived from github.com/influxdata/line-protocol/metric.go
|
// Most functions are derived from github.com/influxdata/line-protocol/metric.go
|
||||||
@@ -64,9 +65,11 @@ 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 map[string]bool) (p *write.Point) {
|
func (m *ccMetric) ToPoint(metaAsTags map[string]bool) (p *write.Point) {
|
||||||
p = influxdb2.NewPoint(m.name, m.tags, m.fields, m.tm)
|
p = influxdb2.NewPoint(m.name, m.tags, m.fields, m.tm)
|
||||||
for key, ok1 := range metaAsTags {
|
for key, use_as_tag := range metaAsTags {
|
||||||
if val, ok2 := m.GetMeta(key); ok1 && ok2 {
|
if use_as_tag {
|
||||||
p.AddTag(key, val)
|
if value, ok := m.GetMeta(key); ok {
|
||||||
|
p.AddTag(key, value)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return p
|
return p
|
||||||
@@ -193,19 +196,13 @@ func New(
|
|||||||
) (CCMetric, error) {
|
) (CCMetric, error) {
|
||||||
m := &ccMetric{
|
m := &ccMetric{
|
||||||
name: name,
|
name: name,
|
||||||
tags: make(map[string]string, len(tags)),
|
tags: maps.Clone(tags),
|
||||||
meta: make(map[string]string, len(meta)),
|
meta: maps.Clone(meta),
|
||||||
fields: make(map[string]interface{}, len(fields)),
|
fields: make(map[string]interface{}, len(fields)),
|
||||||
tm: tm,
|
tm: tm,
|
||||||
}
|
}
|
||||||
|
|
||||||
// deep copy tags, meta data tags and fields
|
// deep copy fields
|
||||||
for k, v := range tags {
|
|
||||||
m.tags[k] = v
|
|
||||||
}
|
|
||||||
for k, v := range meta {
|
|
||||||
m.meta[k] = v
|
|
||||||
}
|
|
||||||
for k, v := range fields {
|
for k, v := range fields {
|
||||||
v := convertField(v)
|
v := convertField(v)
|
||||||
if v == nil {
|
if v == nil {
|
||||||
@@ -219,28 +216,14 @@ func New(
|
|||||||
|
|
||||||
// FromMetric copies the metric <other>
|
// FromMetric copies the metric <other>
|
||||||
func FromMetric(other CCMetric) CCMetric {
|
func FromMetric(other CCMetric) CCMetric {
|
||||||
otags := other.Tags()
|
|
||||||
ometa := other.Meta()
|
return &ccMetric{
|
||||||
ofields := other.Fields()
|
|
||||||
m := &ccMetric{
|
|
||||||
name: other.Name(),
|
name: other.Name(),
|
||||||
tags: make(map[string]string, len(otags)),
|
tags: maps.Clone(other.Tags()),
|
||||||
meta: make(map[string]string, len(ometa)),
|
meta: maps.Clone(other.Meta()),
|
||||||
fields: make(map[string]interface{}, len(ofields)),
|
fields: maps.Clone(other.Fields()),
|
||||||
tm: other.Time(),
|
tm: other.Time(),
|
||||||
}
|
}
|
||||||
|
|
||||||
// deep copy tags, meta data tags and fields
|
|
||||||
for key, value := range otags {
|
|
||||||
m.tags[key] = value
|
|
||||||
}
|
|
||||||
for key, value := range ometa {
|
|
||||||
m.meta[key] = value
|
|
||||||
}
|
|
||||||
for key, value := range ofields {
|
|
||||||
m.fields[key] = value
|
|
||||||
}
|
|
||||||
return m
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// FromInfluxMetric copies the influxDB line protocol metric <other>
|
// FromInfluxMetric copies the influxDB line protocol metric <other>
|
||||||
@@ -264,8 +247,10 @@ func FromInfluxMetric(other lp.Metric) CCMetric {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// convertField converts data types of fields by the following schemata:
|
// convertField converts data types of fields by the following schemata:
|
||||||
// *float32, *float64, float32, float64 -> float64
|
//
|
||||||
// *int, *int8, *int16, *int32, *int64, int, int8, int16, int32, int64 -> int64
|
// *float32, *float64, float32, float64 -> float64
|
||||||
|
// *int, *int8, *int16, *int32, *int64, int, int8, int16, int32, int64 -> int64
|
||||||
|
//
|
||||||
// *uint, *uint8, *uint16, *uint32, *uint64, uint, uint8, uint16, uint32, uint64 -> uint64
|
// *uint, *uint8, *uint16, *uint32, *uint64, uint, uint8, uint16, uint32, uint64 -> uint64
|
||||||
// *[]byte, *string, []byte, string -> string
|
// *[]byte, *string, []byte, string -> string
|
||||||
// *bool, bool -> bool
|
// *bool, bool -> bool
|
||||||
|
@@ -2,7 +2,6 @@ package ccTopology
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -11,93 +10,247 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
cclogger "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
cclogger "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
|
"golang.org/x/exp/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
const SYSFS_NUMABASE = `/sys/devices/system/node`
|
|
||||||
const SYSFS_CPUBASE = `/sys/devices/system/cpu`
|
const SYSFS_CPUBASE = `/sys/devices/system/cpu`
|
||||||
const PROCFS_CPUINFO = `/proc/cpuinfo`
|
|
||||||
|
|
||||||
// intArrayContains scans an array of ints if the value str is present in the array
|
// Structure holding all information about a hardware thread
|
||||||
// If the specified value is found, the corresponding array index is returned.
|
// See https://www.kernel.org/doc/Documentation/ABI/stable/sysfs-devices-system-cpu
|
||||||
// The bool value is used to signal success or failure
|
type HwthreadEntry struct {
|
||||||
func intArrayContains(array []int, str int) (int, bool) {
|
// for each CPUx:
|
||||||
for i, a := range array {
|
CpuID int // CPU / hardware thread ID
|
||||||
if a == str {
|
SMT int // Simultaneous Multithreading ID
|
||||||
return i, true
|
CoreCPUsList []int // CPUs within the same core
|
||||||
}
|
Core int // Socket local core ID
|
||||||
}
|
Socket int // Sockets (physical) ID
|
||||||
return -1, false
|
Die int // Die ID
|
||||||
|
NumaDomain int // NUMA Domain
|
||||||
}
|
}
|
||||||
|
|
||||||
// Used internally for sysfs file reads
|
var cache struct {
|
||||||
|
HwthreadList []int // List of CPU hardware threads
|
||||||
|
SMTList []int // List of symmetric hyper threading IDs
|
||||||
|
CoreList []int // List of CPU core IDs
|
||||||
|
SocketList []int // List of CPU sockets (physical) IDs
|
||||||
|
DieList []int // List of CPU Die IDs
|
||||||
|
NumaDomainList []int // List of NUMA Domains
|
||||||
|
|
||||||
|
CpuData []HwthreadEntry
|
||||||
|
}
|
||||||
|
|
||||||
|
// fileToInt reads an integer value from a sysfs file
|
||||||
|
// In case of an error -1 is returned
|
||||||
func fileToInt(path string) int {
|
func fileToInt(path string) int {
|
||||||
buffer, err := ioutil.ReadFile(path)
|
buffer, err := os.ReadFile(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Print(err)
|
log.Print(err)
|
||||||
cclogger.ComponentError("ccTopology", "Reading", path, ":", err.Error())
|
cclogger.ComponentError("ccTopology", "fileToInt", "Reading", path, ":", err.Error())
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
sbuffer := strings.Replace(string(buffer), "\n", "", -1)
|
stringBuffer := strings.TrimSpace(string(buffer))
|
||||||
var id int64
|
id, err := strconv.Atoi(stringBuffer)
|
||||||
//_, err = fmt.Scanf("%d", sbuffer, &id)
|
|
||||||
id, err = strconv.ParseInt(sbuffer, 10, 32)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclogger.ComponentError("ccTopology", "Parsing", path, ":", sbuffer, err.Error())
|
cclogger.ComponentError("ccTopology", "fileToInt", "Parsing", path, ":", stringBuffer, err.Error())
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
return int(id)
|
return id
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get list of CPU socket IDs
|
// fileToList reads a list from a sysfs file
|
||||||
|
// A list consists of value ranges separated by colon
|
||||||
|
// A range can be a single value or a range of values given by a startValue-endValue
|
||||||
|
// In case of an error nil is returned
|
||||||
|
func fileToList(path string) []int {
|
||||||
|
// Read list
|
||||||
|
buffer, err := os.ReadFile(path)
|
||||||
|
if err != nil {
|
||||||
|
log.Print(err)
|
||||||
|
cclogger.ComponentError("ccTopology", "fileToList", "Reading", path, ":", err.Error())
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create list
|
||||||
|
list := make([]int, 0)
|
||||||
|
stringBuffer := strings.TrimSpace(string(buffer))
|
||||||
|
for _, valueRangeString := range strings.Split(stringBuffer, ",") {
|
||||||
|
valueRange := strings.Split(valueRangeString, "-")
|
||||||
|
switch len(valueRange) {
|
||||||
|
case 1:
|
||||||
|
singleValue, err := strconv.Atoi(valueRange[0])
|
||||||
|
if err != nil {
|
||||||
|
cclogger.ComponentError("CCTopology", "fileToList", "Parsing", valueRange[0], ":", err.Error())
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
list = append(list, singleValue)
|
||||||
|
case 2:
|
||||||
|
startValue, err := strconv.Atoi(valueRange[0])
|
||||||
|
if err != nil {
|
||||||
|
cclogger.ComponentError("CCTopology", "fileToList", "Parsing", valueRange[0], ":", err.Error())
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
endValue, err := strconv.Atoi(valueRange[1])
|
||||||
|
if err != nil {
|
||||||
|
cclogger.ComponentError("CCTopology", "fileToList", "Parsing", valueRange[1], ":", err.Error())
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
for value := startValue; value <= endValue; value++ {
|
||||||
|
list = append(list, value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return list
|
||||||
|
}
|
||||||
|
|
||||||
|
// init initializes the cache structure
|
||||||
|
func init() {
|
||||||
|
|
||||||
|
getHWThreads :=
|
||||||
|
func() []int {
|
||||||
|
globPath := filepath.Join(SYSFS_CPUBASE, "cpu[0-9]*")
|
||||||
|
regexPath := filepath.Join(SYSFS_CPUBASE, "cpu([[:digit:]]+)")
|
||||||
|
regex := regexp.MustCompile(regexPath)
|
||||||
|
|
||||||
|
// File globbing for hardware threads
|
||||||
|
files, err := filepath.Glob(globPath)
|
||||||
|
if err != nil {
|
||||||
|
cclogger.ComponentError("CCTopology", "init:getHWThreads", err.Error())
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
hwThreadIDs := make([]int, len(files))
|
||||||
|
for i, file := range files {
|
||||||
|
// Extract hardware thread ID
|
||||||
|
matches := regex.FindStringSubmatch(file)
|
||||||
|
if len(matches) != 2 {
|
||||||
|
cclogger.ComponentError("CCTopology", "init:getHWThreads: Failed to extract hardware thread ID from ", file)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert hardware thread ID to int
|
||||||
|
id, err := strconv.Atoi(matches[1])
|
||||||
|
if err != nil {
|
||||||
|
cclogger.ComponentError("CCTopology", "init:getHWThreads: Failed to convert to int hardware thread ID ", matches[1])
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
hwThreadIDs[i] = id
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sort hardware thread IDs
|
||||||
|
slices.Sort(hwThreadIDs)
|
||||||
|
return hwThreadIDs
|
||||||
|
}
|
||||||
|
|
||||||
|
getNumaDomain :=
|
||||||
|
func(basePath string) int {
|
||||||
|
globPath := filepath.Join(basePath, "node*")
|
||||||
|
regexPath := filepath.Join(basePath, "node([[:digit:]]+)")
|
||||||
|
regex := regexp.MustCompile(regexPath)
|
||||||
|
|
||||||
|
// File globbing for NUMA node
|
||||||
|
files, err := filepath.Glob(globPath)
|
||||||
|
if err != nil {
|
||||||
|
cclogger.ComponentError("CCTopology", "init:getNumaDomain", err.Error())
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check, that exactly one NUMA domain was found
|
||||||
|
if len(files) != 1 {
|
||||||
|
cclogger.ComponentError("CCTopology", "init:getNumaDomain", "Number of NUMA domains != 1: ", len(files))
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract NUMA node ID
|
||||||
|
matches := regex.FindStringSubmatch(files[0])
|
||||||
|
if len(matches) != 2 {
|
||||||
|
cclogger.ComponentError("CCTopology", "init:getNumaDomain", "Failed to extract NUMA node ID from: ", files[0])
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
|
||||||
|
id, err := strconv.Atoi(matches[1])
|
||||||
|
if err != nil {
|
||||||
|
cclogger.ComponentError("CCTopology", "init:getNumaDomain", "Failed to parse NUMA node ID from: ", matches[1])
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
|
||||||
|
return id
|
||||||
|
}
|
||||||
|
|
||||||
|
cache.HwthreadList = getHWThreads()
|
||||||
|
cache.CoreList = make([]int, len(cache.HwthreadList))
|
||||||
|
cache.SocketList = make([]int, len(cache.HwthreadList))
|
||||||
|
cache.DieList = make([]int, len(cache.HwthreadList))
|
||||||
|
cache.SMTList = make([]int, len(cache.HwthreadList))
|
||||||
|
cache.NumaDomainList = make([]int, len(cache.HwthreadList))
|
||||||
|
cache.CpuData = make([]HwthreadEntry, len(cache.HwthreadList))
|
||||||
|
for i, c := range cache.HwthreadList {
|
||||||
|
// Set cpuBase directory for topology lookup
|
||||||
|
cpuBase := filepath.Join(SYSFS_CPUBASE, fmt.Sprintf("cpu%d", c))
|
||||||
|
topoBase := filepath.Join(cpuBase, "topology")
|
||||||
|
|
||||||
|
// Lookup Core ID
|
||||||
|
cache.CoreList[i] = fileToInt(filepath.Join(topoBase, "core_id"))
|
||||||
|
|
||||||
|
// Lookup socket / physical package ID
|
||||||
|
cache.SocketList[i] = fileToInt(filepath.Join(topoBase, "physical_package_id"))
|
||||||
|
|
||||||
|
// Lookup CPU die id
|
||||||
|
cache.DieList[i] = fileToInt(filepath.Join(topoBase, "die_id"))
|
||||||
|
if cache.DieList[i] < 0 {
|
||||||
|
cache.DieList[i] = cache.SocketList[i]
|
||||||
|
}
|
||||||
|
|
||||||
|
// Lookup List of CPUs within the same core
|
||||||
|
coreCPUsList := fileToList(filepath.Join(topoBase, "core_cpus_list"))
|
||||||
|
|
||||||
|
// Find index of CPU ID in List of CPUs within the same core
|
||||||
|
// if not found return -1
|
||||||
|
cache.SMTList[i] = slices.Index(coreCPUsList, c)
|
||||||
|
|
||||||
|
// Lookup NUMA domain id
|
||||||
|
cache.NumaDomainList[i] = getNumaDomain(cpuBase)
|
||||||
|
|
||||||
|
cache.CpuData[i] =
|
||||||
|
HwthreadEntry{
|
||||||
|
CpuID: cache.HwthreadList[i],
|
||||||
|
SMT: cache.SMTList[i],
|
||||||
|
CoreCPUsList: coreCPUsList,
|
||||||
|
Socket: cache.SocketList[i],
|
||||||
|
NumaDomain: cache.NumaDomainList[i],
|
||||||
|
Die: cache.DieList[i],
|
||||||
|
Core: cache.CoreList[i],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
slices.Sort(cache.HwthreadList)
|
||||||
|
cache.HwthreadList = slices.Compact(cache.HwthreadList)
|
||||||
|
|
||||||
|
slices.Sort(cache.SMTList)
|
||||||
|
cache.SMTList = slices.Compact(cache.SMTList)
|
||||||
|
|
||||||
|
slices.Sort(cache.CoreList)
|
||||||
|
cache.CoreList = slices.Compact(cache.CoreList)
|
||||||
|
|
||||||
|
slices.Sort(cache.SocketList)
|
||||||
|
cache.SocketList = slices.Compact(cache.SocketList)
|
||||||
|
|
||||||
|
slices.Sort(cache.DieList)
|
||||||
|
cache.DieList = slices.Compact(cache.DieList)
|
||||||
|
|
||||||
|
slices.Sort(cache.NumaDomainList)
|
||||||
|
cache.NumaDomainList = slices.Compact(cache.NumaDomainList)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SocketList gets the list of CPU socket IDs
|
||||||
func SocketList() []int {
|
func SocketList() []int {
|
||||||
buffer, err := ioutil.ReadFile(string(PROCFS_CPUINFO))
|
return slices.Clone(cache.SocketList)
|
||||||
if err != nil {
|
|
||||||
log.Print(err)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
ll := strings.Split(string(buffer), "\n")
|
|
||||||
packs := make([]int, 0)
|
|
||||||
for _, line := range ll {
|
|
||||||
if strings.HasPrefix(line, "physical id") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
id, err := strconv.ParseInt(lv[3], 10, 32)
|
|
||||||
if err != nil {
|
|
||||||
log.Print(err)
|
|
||||||
return packs
|
|
||||||
}
|
|
||||||
_, found := intArrayContains(packs, int(id))
|
|
||||||
if !found {
|
|
||||||
packs = append(packs, int(id))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return packs
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get list of hardware thread IDs in the order of listing in /proc/cpuinfo
|
// HwthreadList gets the list of hardware thread IDs in the order of listing in /proc/cpuinfo
|
||||||
func HwthreadList() []int {
|
func HwthreadList() []int {
|
||||||
buffer, err := ioutil.ReadFile(string(PROCFS_CPUINFO))
|
return slices.Clone(cache.HwthreadList)
|
||||||
if err != nil {
|
|
||||||
log.Print(err)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
ll := strings.Split(string(buffer), "\n")
|
|
||||||
cpulist := make([]int, 0)
|
|
||||||
for _, line := range ll {
|
|
||||||
if strings.HasPrefix(line, "processor") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
id, err := strconv.ParseInt(lv[2], 10, 32)
|
|
||||||
if err != nil {
|
|
||||||
log.Print(err)
|
|
||||||
return cpulist
|
|
||||||
}
|
|
||||||
_, found := intArrayContains(cpulist, int(id))
|
|
||||||
if !found {
|
|
||||||
cpulist = append(cpulist, int(id))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return cpulist
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get list of hardware thread IDs in the order of listing in /proc/cpuinfo
|
// Get list of hardware thread IDs in the order of listing in /proc/cpuinfo
|
||||||
@@ -106,88 +259,25 @@ func CpuList() []int {
|
|||||||
return HwthreadList()
|
return HwthreadList()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get list of CPU core IDs in the order of listing in /proc/cpuinfo
|
// CoreList gets the list of CPU core IDs in the order of listing in /proc/cpuinfo
|
||||||
func CoreList() []int {
|
func CoreList() []int {
|
||||||
buffer, err := ioutil.ReadFile(string(PROCFS_CPUINFO))
|
return slices.Clone(cache.CoreList)
|
||||||
if err != nil {
|
|
||||||
log.Print(err)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
ll := strings.Split(string(buffer), "\n")
|
|
||||||
corelist := make([]int, 0)
|
|
||||||
for _, line := range ll {
|
|
||||||
if strings.HasPrefix(line, "core id") {
|
|
||||||
lv := strings.Fields(line)
|
|
||||||
id, err := strconv.ParseInt(lv[3], 10, 32)
|
|
||||||
if err != nil {
|
|
||||||
log.Print(err)
|
|
||||||
return corelist
|
|
||||||
}
|
|
||||||
_, found := intArrayContains(corelist, int(id))
|
|
||||||
if !found {
|
|
||||||
corelist = append(corelist, int(id))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return corelist
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get list of NUMA node IDs
|
// Get list of NUMA node IDs
|
||||||
func NumaNodeList() []int {
|
func NumaNodeList() []int {
|
||||||
numaList := make([]int, 0)
|
return slices.Clone(cache.NumaDomainList)
|
||||||
globPath := filepath.Join(string(SYSFS_NUMABASE), "node*")
|
|
||||||
regexPath := filepath.Join(string(SYSFS_NUMABASE), "node(\\d+)")
|
|
||||||
regex := regexp.MustCompile(regexPath)
|
|
||||||
files, err := filepath.Glob(globPath)
|
|
||||||
if err != nil {
|
|
||||||
cclogger.ComponentError("CCTopology", "NumaNodeList", err.Error())
|
|
||||||
}
|
|
||||||
for _, f := range files {
|
|
||||||
if !regex.MatchString(f) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
finfo, err := os.Lstat(f)
|
|
||||||
if err != nil {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if !finfo.IsDir() {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
matches := regex.FindStringSubmatch(f)
|
|
||||||
if len(matches) == 2 {
|
|
||||||
id, err := strconv.Atoi(matches[1])
|
|
||||||
if err == nil {
|
|
||||||
if _, found := intArrayContains(numaList, id); !found {
|
|
||||||
numaList = append(numaList, id)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
return numaList
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get list of CPU die IDs
|
// DieList gets the list of CPU die IDs
|
||||||
func DieList() []int {
|
func DieList() []int {
|
||||||
cpulist := HwthreadList()
|
if len(cache.DieList) > 0 {
|
||||||
dielist := make([]int, 0)
|
return slices.Clone(cache.DieList)
|
||||||
for _, c := range cpulist {
|
|
||||||
diepath := filepath.Join(string(SYSFS_CPUBASE), fmt.Sprintf("cpu%d", c), "topology/die_id")
|
|
||||||
dieid := fileToInt(diepath)
|
|
||||||
if dieid > 0 {
|
|
||||||
_, found := intArrayContains(dielist, int(dieid))
|
|
||||||
if !found {
|
|
||||||
dielist = append(dielist, int(dieid))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if len(dielist) > 0 {
|
|
||||||
return dielist
|
|
||||||
}
|
}
|
||||||
return SocketList()
|
return SocketList()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get list of specified type using the naming format inside ClusterCockpit
|
// GetTypeList gets the list of specified type using the naming format inside ClusterCockpit
|
||||||
func GetTypeList(topology_type string) []int {
|
func GetTypeList(topology_type string) []int {
|
||||||
switch topology_type {
|
switch topology_type {
|
||||||
case "node":
|
case "node":
|
||||||
@@ -206,128 +296,14 @@ func GetTypeList(topology_type string) []int {
|
|||||||
return []int{}
|
return []int{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Structure holding all information about a hardware thread
|
// CpuData returns CPU data for each hardware thread
|
||||||
type HwthreadEntry struct {
|
|
||||||
Cpuid int
|
|
||||||
SMT int
|
|
||||||
Core int
|
|
||||||
Socket int
|
|
||||||
Numadomain int
|
|
||||||
Die int
|
|
||||||
}
|
|
||||||
|
|
||||||
func CpuData() []HwthreadEntry {
|
func CpuData() []HwthreadEntry {
|
||||||
|
// return a deep copy to protect cache data
|
||||||
// fileToInt := func(path string) int {
|
c := slices.Clone(cache.CpuData)
|
||||||
// buffer, err := ioutil.ReadFile(path)
|
for i := range c {
|
||||||
// if err != nil {
|
c[i].CoreCPUsList = slices.Clone(cache.CpuData[i].CoreCPUsList)
|
||||||
// log.Print(err)
|
|
||||||
// //cclogger.ComponentError("ccTopology", "Reading", path, ":", err.Error())
|
|
||||||
// return -1
|
|
||||||
// }
|
|
||||||
// sbuffer := strings.Replace(string(buffer), "\n", "", -1)
|
|
||||||
// var id int64
|
|
||||||
// //_, err = fmt.Scanf("%d", sbuffer, &id)
|
|
||||||
// id, err = strconv.ParseInt(sbuffer, 10, 32)
|
|
||||||
// if err != nil {
|
|
||||||
// cclogger.ComponentError("ccTopology", "Parsing", path, ":", sbuffer, err.Error())
|
|
||||||
// return -1
|
|
||||||
// }
|
|
||||||
// return int(id)
|
|
||||||
// }
|
|
||||||
getCore := func(basepath string) int {
|
|
||||||
return fileToInt(fmt.Sprintf("%s/core_id", basepath))
|
|
||||||
}
|
}
|
||||||
|
return c
|
||||||
getSocket := func(basepath string) int {
|
|
||||||
return fileToInt(fmt.Sprintf("%s/physical_package_id", basepath))
|
|
||||||
}
|
|
||||||
|
|
||||||
getDie := func(basepath string) int {
|
|
||||||
return fileToInt(fmt.Sprintf("%s/die_id", basepath))
|
|
||||||
}
|
|
||||||
|
|
||||||
getSMT := func(cpuid int, basepath string) int {
|
|
||||||
buffer, err := ioutil.ReadFile(fmt.Sprintf("%s/thread_siblings_list", basepath))
|
|
||||||
if err != nil {
|
|
||||||
cclogger.ComponentError("CCTopology", "CpuData:getSMT", err.Error())
|
|
||||||
}
|
|
||||||
threadlist := make([]int, 0)
|
|
||||||
sbuffer := strings.Replace(string(buffer), "\n", "", -1)
|
|
||||||
for _, x := range strings.Split(sbuffer, ",") {
|
|
||||||
id, err := strconv.ParseInt(x, 10, 32)
|
|
||||||
if err != nil {
|
|
||||||
cclogger.ComponentError("CCTopology", "CpuData:getSMT", err.Error())
|
|
||||||
}
|
|
||||||
threadlist = append(threadlist, int(id))
|
|
||||||
}
|
|
||||||
for i, x := range threadlist {
|
|
||||||
if x == cpuid {
|
|
||||||
return i
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
getNumaDomain := func(basepath string) int {
|
|
||||||
globPath := filepath.Join(basepath, "node*")
|
|
||||||
regexPath := filepath.Join(basepath, "node(\\d+)")
|
|
||||||
regex := regexp.MustCompile(regexPath)
|
|
||||||
files, err := filepath.Glob(globPath)
|
|
||||||
if err != nil {
|
|
||||||
cclogger.ComponentError("CCTopology", "CpuData:getNumaDomain", err.Error())
|
|
||||||
}
|
|
||||||
for _, f := range files {
|
|
||||||
finfo, err := os.Lstat(f)
|
|
||||||
if err == nil && finfo.IsDir() {
|
|
||||||
matches := regex.FindStringSubmatch(f)
|
|
||||||
if len(matches) == 2 {
|
|
||||||
id, err := strconv.Atoi(matches[1])
|
|
||||||
if err == nil {
|
|
||||||
return id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
clist := make([]HwthreadEntry, 0)
|
|
||||||
for _, c := range HwthreadList() {
|
|
||||||
clist = append(clist, HwthreadEntry{Cpuid: c})
|
|
||||||
}
|
|
||||||
for i, centry := range clist {
|
|
||||||
centry.Socket = -1
|
|
||||||
centry.Numadomain = -1
|
|
||||||
centry.Die = -1
|
|
||||||
centry.Core = -1
|
|
||||||
// Set base directory for topology lookup
|
|
||||||
cpustr := fmt.Sprintf("cpu%d", centry.Cpuid)
|
|
||||||
base := filepath.Join("/sys/devices/system/cpu", cpustr)
|
|
||||||
topoBase := filepath.Join(base, "topology")
|
|
||||||
|
|
||||||
// Lookup CPU core id
|
|
||||||
centry.Core = getCore(topoBase)
|
|
||||||
|
|
||||||
// Lookup CPU socket id
|
|
||||||
centry.Socket = getSocket(topoBase)
|
|
||||||
|
|
||||||
// Lookup CPU die id
|
|
||||||
centry.Die = getDie(topoBase)
|
|
||||||
if centry.Die < 0 {
|
|
||||||
centry.Die = centry.Socket
|
|
||||||
}
|
|
||||||
|
|
||||||
// Lookup SMT thread id
|
|
||||||
centry.SMT = getSMT(centry.Cpuid, topoBase)
|
|
||||||
|
|
||||||
// Lookup NUMA domain id
|
|
||||||
centry.Numadomain = getNumaDomain(base)
|
|
||||||
|
|
||||||
// Update values in output list
|
|
||||||
clist[i] = centry
|
|
||||||
}
|
|
||||||
return clist
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Structure holding basic information about a CPU
|
// Structure holding basic information about a CPU
|
||||||
@@ -340,130 +316,110 @@ type CpuInformation struct {
|
|||||||
NumNumaDomains int
|
NumNumaDomains int
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get basic information about the CPU
|
// CpuInformation reports basic information about the CPU
|
||||||
func CpuInfo() CpuInformation {
|
func CpuInfo() CpuInformation {
|
||||||
var c CpuInformation
|
return CpuInformation{
|
||||||
|
NumNumaDomains: len(cache.NumaDomainList),
|
||||||
smtList := make([]int, 0)
|
SMTWidth: len(cache.SMTList),
|
||||||
numaList := make([]int, 0)
|
NumDies: len(cache.DieList),
|
||||||
dieList := make([]int, 0)
|
NumCores: len(cache.CoreList),
|
||||||
socketList := make([]int, 0)
|
NumSockets: len(cache.SocketList),
|
||||||
coreList := make([]int, 0)
|
NumHWthreads: len(cache.HwthreadList),
|
||||||
cdata := CpuData()
|
|
||||||
for _, d := range cdata {
|
|
||||||
if _, ok := intArrayContains(smtList, d.SMT); !ok {
|
|
||||||
smtList = append(smtList, d.SMT)
|
|
||||||
}
|
|
||||||
if _, ok := intArrayContains(numaList, d.Numadomain); !ok {
|
|
||||||
numaList = append(numaList, d.Numadomain)
|
|
||||||
}
|
|
||||||
if _, ok := intArrayContains(dieList, d.Die); !ok {
|
|
||||||
dieList = append(dieList, d.Die)
|
|
||||||
}
|
|
||||||
if _, ok := intArrayContains(socketList, d.Socket); !ok {
|
|
||||||
socketList = append(socketList, d.Socket)
|
|
||||||
}
|
|
||||||
if _, ok := intArrayContains(coreList, d.Core); !ok {
|
|
||||||
coreList = append(coreList, d.Core)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
c.NumNumaDomains = len(numaList)
|
|
||||||
c.SMTWidth = len(smtList)
|
|
||||||
c.NumDies = len(dieList)
|
|
||||||
c.NumCores = len(coreList)
|
|
||||||
c.NumSockets = len(socketList)
|
|
||||||
c.NumHWthreads = len(cdata)
|
|
||||||
return c
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the CPU socket ID for a given hardware thread ID
|
// GetHwthreadSocket gets the CPU socket ID for a given hardware thread ID
|
||||||
func GetHwthreadSocket(cpuid int) int {
|
// In case hardware thread ID is not found -1 is returned
|
||||||
cdata := CpuData()
|
func GetHwthreadSocket(cpuID int) int {
|
||||||
for _, d := range cdata {
|
for i := range cache.CpuData {
|
||||||
if d.Cpuid == cpuid {
|
d := &cache.CpuData[i]
|
||||||
|
if d.CpuID == cpuID {
|
||||||
return d.Socket
|
return d.Socket
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the NUMA node ID for a given hardware thread ID
|
// GetHwthreadNumaDomain gets the NUMA domain ID for a given hardware thread ID
|
||||||
func GetHwthreadNumaDomain(cpuid int) int {
|
// In case hardware thread ID is not found -1 is returned
|
||||||
cdata := CpuData()
|
func GetHwthreadNumaDomain(cpuID int) int {
|
||||||
for _, d := range cdata {
|
for i := range cache.CpuData {
|
||||||
if d.Cpuid == cpuid {
|
d := &cache.CpuData[i]
|
||||||
return d.Numadomain
|
if d.CpuID == cpuID {
|
||||||
|
return d.NumaDomain
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the CPU die ID for a given hardware thread ID
|
// GetHwthreadDie gets the CPU die ID for a given hardware thread ID
|
||||||
func GetHwthreadDie(cpuid int) int {
|
// In case hardware thread ID is not found -1 is returned
|
||||||
cdata := CpuData()
|
func GetHwthreadDie(cpuID int) int {
|
||||||
for _, d := range cdata {
|
for i := range cache.CpuData {
|
||||||
if d.Cpuid == cpuid {
|
d := &cache.CpuData[i]
|
||||||
|
if d.CpuID == cpuID {
|
||||||
return d.Die
|
return d.Die
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the CPU core ID for a given hardware thread ID
|
// GetHwthreadCore gets the CPU core ID for a given hardware thread ID
|
||||||
func GetHwthreadCore(cpuid int) int {
|
// In case hardware thread ID is not found -1 is returned
|
||||||
cdata := CpuData()
|
func GetHwthreadCore(cpuID int) int {
|
||||||
for _, d := range cdata {
|
for i := range cache.CpuData {
|
||||||
if d.Cpuid == cpuid {
|
d := &cache.CpuData[i]
|
||||||
|
if d.CpuID == cpuID {
|
||||||
return d.Core
|
return d.Core
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the all hardware thread ID associated with a CPU socket
|
// GetSocketHwthreads gets all hardware thread IDs associated with a CPU socket
|
||||||
func GetSocketHwthreads(socket int) []int {
|
func GetSocketHwthreads(socket int) []int {
|
||||||
all := CpuData()
|
cpuList := make([]int, 0)
|
||||||
cpulist := make([]int, 0)
|
for i := range cache.CpuData {
|
||||||
for _, d := range all {
|
d := &cache.CpuData[i]
|
||||||
if d.Socket == socket {
|
if d.Socket == socket {
|
||||||
cpulist = append(cpulist, d.Cpuid)
|
cpuList = append(cpuList, d.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return cpulist
|
return cpuList
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the all hardware thread ID associated with a NUMA node
|
// GetNumaDomainHwthreads gets the all hardware thread IDs associated with a NUMA domain
|
||||||
func GetNumaDomainHwthreads(domain int) []int {
|
func GetNumaDomainHwthreads(numaDomain int) []int {
|
||||||
all := CpuData()
|
cpuList := make([]int, 0)
|
||||||
cpulist := make([]int, 0)
|
for i := range cache.CpuData {
|
||||||
for _, d := range all {
|
d := &cache.CpuData[i]
|
||||||
if d.Numadomain == domain {
|
if d.NumaDomain == numaDomain {
|
||||||
cpulist = append(cpulist, d.Cpuid)
|
cpuList = append(cpuList, d.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return cpulist
|
return cpuList
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the all hardware thread ID associated with a CPU die
|
// GetDieHwthreads gets all hardware thread IDs associated with a CPU die
|
||||||
func GetDieHwthreads(die int) []int {
|
func GetDieHwthreads(die int) []int {
|
||||||
all := CpuData()
|
cpuList := make([]int, 0)
|
||||||
cpulist := make([]int, 0)
|
for i := range cache.CpuData {
|
||||||
for _, d := range all {
|
d := &cache.CpuData[i]
|
||||||
if d.Die == die {
|
if d.Die == die {
|
||||||
cpulist = append(cpulist, d.Cpuid)
|
cpuList = append(cpuList, d.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return cpulist
|
return cpuList
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the all hardware thread ID associated with a CPU core
|
// GetCoreHwthreads get all hardware thread IDs associated with a CPU core
|
||||||
func GetCoreHwthreads(core int) []int {
|
func GetCoreHwthreads(core int) []int {
|
||||||
all := CpuData()
|
cpuList := make([]int, 0)
|
||||||
cpulist := make([]int, 0)
|
for i := range cache.CpuData {
|
||||||
for _, d := range all {
|
d := &cache.CpuData[i]
|
||||||
if d.Core == core {
|
if d.Core == core {
|
||||||
cpulist = append(cpulist, d.Cpuid)
|
cpuList = append(cpuList, d.CpuID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return cpulist
|
return cpuList
|
||||||
}
|
}
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
This folder contains the ReceiveManager and receiver implementations for the cc-metric-collector.
|
This folder contains the ReceiveManager and receiver implementations for the cc-metric-collector.
|
||||||
|
|
||||||
# Configuration
|
## Configuration
|
||||||
|
|
||||||
The configuration file for the receivers is a list of configurations. The `type` field in each specifies which receiver to initialize.
|
The configuration file for the receivers is a list of configurations. The `type` field in each specifies which receiver to initialize.
|
||||||
|
|
||||||
@@ -22,8 +22,11 @@ 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
|
- [`http`](./httpReceiver.md): Listen for HTTP Post requests transporting metrics in InfluxDB line protocol
|
||||||
|
- [`ipmi`](./ipmiReceiver.md): Read IPMI sensor readings
|
||||||
|
- [`redfish`](redfishReceiver.md) Use the Redfish (specification) to query thermal and power metrics
|
||||||
|
|
||||||
|
## 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`):
|
||||||
|
|
||||||
For an example, check the [sample receiver](./sampleReceiver.go)
|
For an example, check the [sample receiver](./sampleReceiver.go)
|
||||||
|
@@ -5,15 +5,14 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
"github.com/gorilla/mux"
|
influx "github.com/influxdata/line-protocol/v2/lineprotocol"
|
||||||
influx "github.com/influxdata/line-protocol"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const HTTP_RECEIVER_PORT = "8080"
|
const HTTP_RECEIVER_PORT = "8080"
|
||||||
@@ -23,22 +22,39 @@ type HttpReceiverConfig struct {
|
|||||||
Addr string `json:"address"`
|
Addr string `json:"address"`
|
||||||
Port string `json:"port"`
|
Port string `json:"port"`
|
||||||
Path string `json:"path"`
|
Path string `json:"path"`
|
||||||
|
|
||||||
|
// Maximum amount of time to wait for the next request when keep-alives are enabled
|
||||||
|
// should be larger than the measurement interval to keep the connection open
|
||||||
|
IdleTimeout string `json:"idle_timeout"`
|
||||||
|
idleTimeout time.Duration
|
||||||
|
|
||||||
|
// Controls whether HTTP keep-alives are enabled. By default, keep-alives are enabled
|
||||||
|
KeepAlivesEnabled bool `json:"keep_alives_enabled"`
|
||||||
|
|
||||||
|
// Basic authentication
|
||||||
|
Username string `json:"username"`
|
||||||
|
Password string `json:"password"`
|
||||||
|
useBasicAuth bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type HttpReceiver struct {
|
type HttpReceiver struct {
|
||||||
receiver
|
receiver
|
||||||
handler *influx.MetricHandler
|
meta map[string]string
|
||||||
parser *influx.Parser
|
config HttpReceiverConfig
|
||||||
meta map[string]string
|
server *http.Server
|
||||||
config HttpReceiverConfig
|
wg sync.WaitGroup
|
||||||
router *mux.Router
|
|
||||||
server *http.Server
|
|
||||||
wg sync.WaitGroup
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *HttpReceiver) Init(name string, config json.RawMessage) error {
|
func (r *HttpReceiver) Init(name string, config json.RawMessage) error {
|
||||||
r.name = fmt.Sprintf("HttpReceiver(%s)", name)
|
r.name = fmt.Sprintf("HttpReceiver(%s)", name)
|
||||||
|
|
||||||
|
// Set default values
|
||||||
r.config.Port = HTTP_RECEIVER_PORT
|
r.config.Port = HTTP_RECEIVER_PORT
|
||||||
|
r.config.KeepAlivesEnabled = true
|
||||||
|
// should be larger than the measurement interval to keep the connection open
|
||||||
|
r.config.IdleTimeout = "120s"
|
||||||
|
|
||||||
|
// Read config
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &r.config)
|
err := json.Unmarshal(config, &r.config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -49,20 +65,47 @@ func (r *HttpReceiver) Init(name string, config json.RawMessage) error {
|
|||||||
if len(r.config.Port) == 0 {
|
if len(r.config.Port) == 0 {
|
||||||
return errors.New("not all configuration variables set required by HttpReceiver")
|
return errors.New("not all configuration variables set required by HttpReceiver")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check idle timeout config
|
||||||
|
if len(r.config.IdleTimeout) > 0 {
|
||||||
|
t, err := time.ParseDuration(r.config.IdleTimeout)
|
||||||
|
if err == nil {
|
||||||
|
cclog.ComponentDebug(r.name, "idleTimeout", t)
|
||||||
|
r.config.idleTimeout = t
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check basic authentication config
|
||||||
|
if len(r.config.Username) > 0 || len(r.config.Password) > 0 {
|
||||||
|
r.config.useBasicAuth = true
|
||||||
|
}
|
||||||
|
if r.config.useBasicAuth && len(r.config.Username) == 0 {
|
||||||
|
return errors.New("basic authentication requires username")
|
||||||
|
}
|
||||||
|
if r.config.useBasicAuth && len(r.config.Password) == 0 {
|
||||||
|
return errors.New("basic authentication requires password")
|
||||||
|
}
|
||||||
|
|
||||||
r.meta = map[string]string{"source": r.name}
|
r.meta = map[string]string{"source": r.name}
|
||||||
p := r.config.Path
|
p := r.config.Path
|
||||||
if !strings.HasPrefix(p, "/") {
|
if !strings.HasPrefix(p, "/") {
|
||||||
p = "/" + p
|
p = "/" + p
|
||||||
}
|
}
|
||||||
uri := fmt.Sprintf("%s:%s%s", r.config.Addr, r.config.Port, p)
|
addr := fmt.Sprintf("%s:%s", r.config.Addr, r.config.Port)
|
||||||
cclog.ComponentDebug(r.name, "INIT", uri)
|
uri := addr + p
|
||||||
r.handler = influx.NewMetricHandler()
|
cclog.ComponentDebug(r.name, "INIT", "listen on:", uri)
|
||||||
r.parser = influx.NewParser(r.handler)
|
|
||||||
r.parser.SetTimeFunc(DefaultTime)
|
// Register handler function r.ServerHttp for path p in the DefaultServeMux
|
||||||
|
http.HandleFunc(p, r.ServerHttp)
|
||||||
|
|
||||||
|
// Create http server
|
||||||
|
r.server = &http.Server{
|
||||||
|
Addr: addr,
|
||||||
|
Handler: nil, // handler to invoke, http.DefaultServeMux if nil
|
||||||
|
IdleTimeout: r.config.idleTimeout,
|
||||||
|
}
|
||||||
|
r.server.SetKeepAlivesEnabled(r.config.KeepAlivesEnabled)
|
||||||
|
|
||||||
r.router = mux.NewRouter()
|
|
||||||
r.router.Path(p).HandlerFunc(r.ServerHttp)
|
|
||||||
r.server = &http.Server{Addr: uri, Handler: r.router}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,31 +122,97 @@ func (r *HttpReceiver) Start() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *HttpReceiver) ServerHttp(w http.ResponseWriter, req *http.Request) {
|
func (r *HttpReceiver) ServerHttp(w http.ResponseWriter, req *http.Request) {
|
||||||
|
|
||||||
|
// Check request method, only post method is handled
|
||||||
if req.Method != http.MethodPost {
|
if req.Method != http.MethodPost {
|
||||||
http.Error(w, "Method Not Allowed", http.StatusMethodNotAllowed)
|
http.Error(w, "Method Not Allowed", http.StatusMethodNotAllowed)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
body, err := io.ReadAll(req.Body)
|
// Check basic authentication
|
||||||
if err != nil {
|
if r.config.useBasicAuth {
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
username, password, ok := req.BasicAuth()
|
||||||
return
|
if !ok || username != r.config.Username || password != r.config.Password {
|
||||||
}
|
http.Error(w, "Unauthorized", http.StatusUnauthorized)
|
||||||
metrics, err := r.parser.Parse(body)
|
return
|
||||||
if err != nil {
|
}
|
||||||
http.Error(w, err.Error(), http.StatusBadRequest)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, m := range metrics {
|
d := influx.NewDecoder(req.Body)
|
||||||
y := lp.FromInfluxMetric(m)
|
for d.Next() {
|
||||||
for k, v := range r.meta {
|
|
||||||
y.AddMeta(k, v)
|
// Decode measurement name
|
||||||
|
measurement, err := d.Measurement()
|
||||||
|
if err != nil {
|
||||||
|
msg := "ServerHttp: Failed to decode measurement: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
http.Error(w, msg, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Decode tags
|
||||||
|
tags := make(map[string]string)
|
||||||
|
for {
|
||||||
|
key, value, err := d.NextTag()
|
||||||
|
if err != nil {
|
||||||
|
msg := "ServerHttp: Failed to decode tag: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
http.Error(w, msg, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if key == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
tags[string(key)] = string(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode fields
|
||||||
|
fields := make(map[string]interface{})
|
||||||
|
for {
|
||||||
|
key, value, err := d.NextField()
|
||||||
|
if err != nil {
|
||||||
|
msg := "ServerHttp: Failed to decode field: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
http.Error(w, msg, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if key == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
fields[string(key)] = value.Interface()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode time stamp
|
||||||
|
t, err := d.Time(influx.Nanosecond, time.Time{})
|
||||||
|
if err != nil {
|
||||||
|
msg := "ServerHttp: Failed to decode time stamp: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
http.Error(w, msg, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
y, _ := lp.New(
|
||||||
|
string(measurement),
|
||||||
|
tags,
|
||||||
|
r.meta,
|
||||||
|
fields,
|
||||||
|
t,
|
||||||
|
)
|
||||||
|
|
||||||
if r.sink != nil {
|
if r.sink != nil {
|
||||||
r.sink <- y
|
r.sink <- y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check for IO errors
|
||||||
|
err := d.Err()
|
||||||
|
if err != nil {
|
||||||
|
msg := "ServerHttp: Failed to decode: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
http.Error(w, msg, http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -10,7 +10,10 @@ The `http` receiver can be used receive metrics through HTTP POST requests.
|
|||||||
"type": "http",
|
"type": "http",
|
||||||
"address" : "",
|
"address" : "",
|
||||||
"port" : "8080",
|
"port" : "8080",
|
||||||
"path" : "/write"
|
"path" : "/write",
|
||||||
|
"idle_timeout": "120s",
|
||||||
|
"username": "myUser",
|
||||||
|
"password": "myPW"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -19,5 +22,22 @@ The `http` receiver can be used receive metrics through HTTP POST requests.
|
|||||||
- `address`: Listen address
|
- `address`: Listen address
|
||||||
- `port`: Listen port
|
- `port`: Listen port
|
||||||
- `path`: URL path for the write endpoint
|
- `path`: URL path for the write endpoint
|
||||||
|
- `idle_timeout`: Maximum amount of time to wait for the next request when keep-alives are enabled should be larger than the measurement interval to keep the connection open
|
||||||
|
- `keep_alives_enabled`: Controls whether HTTP keep-alives are enabled. By default, keep-alives are enabled.
|
||||||
|
- `username`: username for basic authentication
|
||||||
|
- `password`: password for basic authentication
|
||||||
|
|
||||||
The HTTP endpoint listens to `http://<address>:<port>/<path>`
|
The HTTP endpoint listens to `http://<address>:<port>/<path>`
|
||||||
|
|
||||||
|
### Debugging
|
||||||
|
|
||||||
|
- Install [curl](https://curl.se/)
|
||||||
|
- Use curl to send message to `http` receiver
|
||||||
|
|
||||||
|
```bash
|
||||||
|
curl http://localhost:8080/write \
|
||||||
|
--user "myUser:myPW" \
|
||||||
|
--data \
|
||||||
|
"myMetric,hostname=myHost,type=hwthread,type-id=0,unit=Hz value=400000i 1694777161164284635
|
||||||
|
myMetric,hostname=myHost,type=hwthread,type-id=1,unit=Hz value=400001i 1694777161164284635"
|
||||||
|
```
|
||||||
|
@@ -8,7 +8,7 @@ import (
|
|||||||
|
|
||||||
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
influx "github.com/influxdata/line-protocol"
|
influx "github.com/influxdata/line-protocol/v2/lineprotocol"
|
||||||
nats "github.com/nats-io/nats.go"
|
nats "github.com/nats-io/nats.go"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -21,37 +21,85 @@ type NatsReceiverConfig struct {
|
|||||||
|
|
||||||
type NatsReceiver struct {
|
type NatsReceiver struct {
|
||||||
receiver
|
receiver
|
||||||
nc *nats.Conn
|
nc *nats.Conn
|
||||||
handler *influx.MetricHandler
|
meta map[string]string
|
||||||
parser *influx.Parser
|
config NatsReceiverConfig
|
||||||
meta map[string]string
|
|
||||||
config NatsReceiverConfig
|
|
||||||
}
|
|
||||||
|
|
||||||
var DefaultTime = func() time.Time {
|
|
||||||
return time.Unix(42, 0)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Start subscribes to the configured NATS subject
|
||||||
|
// Messages wil be handled by r._NatsReceive
|
||||||
func (r *NatsReceiver) Start() {
|
func (r *NatsReceiver) Start() {
|
||||||
cclog.ComponentDebug(r.name, "START")
|
cclog.ComponentDebug(r.name, "START")
|
||||||
r.nc.Subscribe(r.config.Subject, r._NatsReceive)
|
r.nc.Subscribe(r.config.Subject, r._NatsReceive)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// _NatsReceive receives subscribed messages from the NATS server
|
||||||
func (r *NatsReceiver) _NatsReceive(m *nats.Msg) {
|
func (r *NatsReceiver) _NatsReceive(m *nats.Msg) {
|
||||||
metrics, err := r.parser.Parse(m.Data)
|
|
||||||
if err == nil {
|
d := influx.NewDecoderWithBytes(m.Data)
|
||||||
for _, m := range metrics {
|
for d.Next() {
|
||||||
y := lp.FromInfluxMetric(m)
|
|
||||||
for k, v := range r.meta {
|
// Decode measurement name
|
||||||
y.AddMeta(k, v)
|
measurement, err := d.Measurement()
|
||||||
|
if err != nil {
|
||||||
|
msg := "_NatsReceive: Failed to decode measurement: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode tags
|
||||||
|
tags := make(map[string]string)
|
||||||
|
for {
|
||||||
|
key, value, err := d.NextTag()
|
||||||
|
if err != nil {
|
||||||
|
msg := "_NatsReceive: Failed to decode tag: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
if r.sink != nil {
|
if key == nil {
|
||||||
r.sink <- y
|
break
|
||||||
}
|
}
|
||||||
|
tags[string(key)] = string(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode fields
|
||||||
|
fields := make(map[string]interface{})
|
||||||
|
for {
|
||||||
|
key, value, err := d.NextField()
|
||||||
|
if err != nil {
|
||||||
|
msg := "_NatsReceive: Failed to decode field: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if key == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
fields[string(key)] = value.Interface()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode time stamp
|
||||||
|
t, err := d.Time(influx.Nanosecond, time.Time{})
|
||||||
|
if err != nil {
|
||||||
|
msg := "_NatsReceive: Failed to decode time: " + err.Error()
|
||||||
|
cclog.ComponentError(r.name, msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
y, _ := lp.New(
|
||||||
|
string(measurement),
|
||||||
|
tags,
|
||||||
|
r.meta,
|
||||||
|
fields,
|
||||||
|
t,
|
||||||
|
)
|
||||||
|
|
||||||
|
if r.sink != nil {
|
||||||
|
r.sink <- y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Close closes the connection to the NATS server
|
||||||
func (r *NatsReceiver) Close() {
|
func (r *NatsReceiver) Close() {
|
||||||
if r.nc != nil {
|
if r.nc != nil {
|
||||||
cclog.ComponentDebug(r.name, "CLOSE")
|
cclog.ComponentDebug(r.name, "CLOSE")
|
||||||
@@ -59,10 +107,13 @@ func (r *NatsReceiver) Close() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewNatsReceiver creates a new Receiver which subscribes to messages from a NATS server
|
||||||
func NewNatsReceiver(name string, config json.RawMessage) (Receiver, error) {
|
func NewNatsReceiver(name string, config json.RawMessage) (Receiver, error) {
|
||||||
r := new(NatsReceiver)
|
r := new(NatsReceiver)
|
||||||
r.name = fmt.Sprintf("NatsReceiver(%s)", name)
|
r.name = fmt.Sprintf("NatsReceiver(%s)", name)
|
||||||
r.config.Addr = nats.DefaultURL
|
|
||||||
|
// Read configuration file, allow overwriting default config
|
||||||
|
r.config.Addr = "localhost"
|
||||||
r.config.Port = "4222"
|
r.config.Port = "4222"
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &r.config)
|
err := json.Unmarshal(config, &r.config)
|
||||||
@@ -76,17 +127,21 @@ func NewNatsReceiver(name string, config json.RawMessage) (Receiver, error) {
|
|||||||
len(r.config.Subject) == 0 {
|
len(r.config.Subject) == 0 {
|
||||||
return nil, errors.New("not all configuration variables set required by NatsReceiver")
|
return nil, errors.New("not all configuration variables set required by NatsReceiver")
|
||||||
}
|
}
|
||||||
r.meta = map[string]string{"source": r.name}
|
|
||||||
uri := fmt.Sprintf("%s:%s", r.config.Addr, r.config.Port)
|
// Set metadata
|
||||||
cclog.ComponentDebug(r.name, "NewNatsReceiver", uri, "Subject", r.config.Subject)
|
r.meta = map[string]string{
|
||||||
if nc, err := nats.Connect(uri); err == nil {
|
"source": r.name,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Connect to NATS server
|
||||||
|
url := fmt.Sprintf("nats://%s:%s", r.config.Addr, r.config.Port)
|
||||||
|
cclog.ComponentDebug(r.name, "NewNatsReceiver", url, "Subject", r.config.Subject)
|
||||||
|
if nc, err := nats.Connect(url); err == nil {
|
||||||
r.nc = nc
|
r.nc = nc
|
||||||
} else {
|
} else {
|
||||||
r.nc = nil
|
r.nc = nil
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
r.handler = influx.NewMetricHandler()
|
|
||||||
r.parser = influx.NewParser(r.handler)
|
|
||||||
r.parser.SetTimeFunc(DefaultTime)
|
|
||||||
return r, nil
|
return r, nil
|
||||||
}
|
}
|
||||||
|
@@ -19,3 +19,32 @@ The `nats` receiver can be used receive metrics from the NATS network. The `nats
|
|||||||
- `address`: Address of the NATS control server
|
- `address`: Address of the NATS control server
|
||||||
- `port`: Port of the NATS control server
|
- `port`: Port of the NATS control server
|
||||||
- `subject`: Subscribes to this subject and receive metrics
|
- `subject`: Subscribes to this subject and receive metrics
|
||||||
|
|
||||||
|
### Debugging
|
||||||
|
|
||||||
|
- Install NATS server and command line client
|
||||||
|
- Start NATS server
|
||||||
|
|
||||||
|
```bash
|
||||||
|
nats-server --net nats-server.example.org --port 4222
|
||||||
|
```
|
||||||
|
|
||||||
|
- Check NATS server works as expected
|
||||||
|
|
||||||
|
```bash
|
||||||
|
nats --server=nats-server-db.example.org:4222 server check
|
||||||
|
```
|
||||||
|
|
||||||
|
- Use NATS command line client to subscribe to all messages
|
||||||
|
|
||||||
|
```bash
|
||||||
|
nats --server=nats-server-db.example.org:4222 sub ">"
|
||||||
|
```
|
||||||
|
|
||||||
|
- Use NATS command line client to send message to NATS receiver
|
||||||
|
|
||||||
|
```bash
|
||||||
|
nats --server=nats-server-db.example.org:4222 pub subject \
|
||||||
|
"myMetric,hostname=myHost,type=hwthread,type-id=0,unit=Hz value=400000i 1694777161164284635
|
||||||
|
myMetric,hostname=myHost,type=hwthread,type-id=1,unit=Hz value=400001i 1694777161164284635"
|
||||||
|
```
|
||||||
|
@@ -11,6 +11,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var AvailableReceivers = map[string]func(name string, config json.RawMessage) (Receiver, error){
|
var AvailableReceivers = map[string]func(name string, config json.RawMessage) (Receiver, error){
|
||||||
|
"http": NewHttpReceiver,
|
||||||
"ipmi": NewIPMIReceiver,
|
"ipmi": NewIPMIReceiver,
|
||||||
"nats": NewNatsReceiver,
|
"nats": NewNatsReceiver,
|
||||||
"redfish": NewRedfishReceiver,
|
"redfish": NewRedfishReceiver,
|
||||||
|
@@ -25,7 +25,7 @@ CC_USER=clustercockpit
|
|||||||
CC_GROUP=clustercockpit
|
CC_GROUP=clustercockpit
|
||||||
CONF_DIR=/etc/cc-metric-collector
|
CONF_DIR=/etc/cc-metric-collector
|
||||||
PID_FILE=/var/run/$NAME.pid
|
PID_FILE=/var/run/$NAME.pid
|
||||||
DAEMON=/usr/sbin/$NAME
|
DAEMON=/usr/bin/$NAME
|
||||||
CONF_FILE=${CONF_DIR}/cc-metric-collector.json
|
CONF_FILE=${CONF_DIR}/cc-metric-collector.json
|
||||||
|
|
||||||
umask 0027
|
umask 0027
|
||||||
|
@@ -13,7 +13,7 @@ Restart=on-failure
|
|||||||
WorkingDirectory=/tmp
|
WorkingDirectory=/tmp
|
||||||
RuntimeDirectory=cc-metric-collector
|
RuntimeDirectory=cc-metric-collector
|
||||||
RuntimeDirectoryMode=0750
|
RuntimeDirectoryMode=0750
|
||||||
ExecStart=/usr/sbin/cc-metric-collector --config=${CONF_FILE}
|
ExecStart=/usr/bin/cc-metric-collector --config=${CONF_FILE}
|
||||||
LimitNOFILE=10000
|
LimitNOFILE=10000
|
||||||
TimeoutStopSec=20
|
TimeoutStopSec=20
|
||||||
UMask=0027
|
UMask=0027
|
||||||
|
@@ -29,7 +29,7 @@ make
|
|||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -Dpm 0750 %{name} %{buildroot}%{_sbindir}/%{name}
|
install -Dpm 0750 %{name} %{buildroot}%{_bindir}/%{name}
|
||||||
install -Dpm 0600 config.json %{buildroot}%{_sysconfdir}/%{name}/%{name}.json
|
install -Dpm 0600 config.json %{buildroot}%{_sysconfdir}/%{name}/%{name}.json
|
||||||
install -Dpm 0600 collectors.json %{buildroot}%{_sysconfdir}/%{name}/collectors.json
|
install -Dpm 0600 collectors.json %{buildroot}%{_sysconfdir}/%{name}/collectors.json
|
||||||
install -Dpm 0600 sinks.json %{buildroot}%{_sysconfdir}/%{name}/sinks.json
|
install -Dpm 0600 sinks.json %{buildroot}%{_sysconfdir}/%{name}/sinks.json
|
||||||
@@ -44,7 +44,7 @@ install -Dpm 0644 scripts/%{name}.sysusers %{buildroot}%{_sysusersdir}/%{name}.c
|
|||||||
# go test should be here... :)
|
# go test should be here... :)
|
||||||
|
|
||||||
%pre
|
%pre
|
||||||
%sysusers_create_package scripts/%{name}.sysusers
|
%sysusers_create_package %{name} scripts/%{name}.sysusers
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%systemd_post %{name}.service
|
%systemd_post %{name}.service
|
||||||
@@ -54,7 +54,7 @@ install -Dpm 0644 scripts/%{name}.sysusers %{buildroot}%{_sysusersdir}/%{name}.c
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
# Binary
|
# Binary
|
||||||
%attr(-,clustercockpit,clustercockpit) %{_sbindir}/%{name}
|
%attr(-,clustercockpit,clustercockpit) %{_bindir}/%{name}
|
||||||
# Config
|
# Config
|
||||||
%dir %{_sysconfdir}/%{name}
|
%dir %{_sysconfdir}/%{name}
|
||||||
%attr(0600,clustercockpit,clustercockpit) %config(noreplace) %{_sysconfdir}/%{name}/%{name}.json
|
%attr(0600,clustercockpit,clustercockpit) %config(noreplace) %{_sysconfdir}/%{name}/%{name}.json
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
package sinks
|
package sinks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -94,9 +95,10 @@ func NewGangliaSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s.config.AddTagsAsDesc = false
|
s.config.AddTagsAsDesc = false
|
||||||
s.config.AddGangliaGroup = false
|
s.config.AddGangliaGroup = false
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
cclog.ComponentError(s.name, "Error reading config for", s.name, ":", err.Error())
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -12,92 +12,198 @@ import (
|
|||||||
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
influx "github.com/influxdata/line-protocol/v2/lineprotocol"
|
influx "github.com/influxdata/line-protocol/v2/lineprotocol"
|
||||||
|
"golang.org/x/exp/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type HttpSinkConfig struct {
|
type HttpSinkConfig struct {
|
||||||
defaultSinkConfig
|
defaultSinkConfig
|
||||||
URL string `json:"url"`
|
|
||||||
JWT string `json:"jwt,omitempty"`
|
// The full URL of the endpoint
|
||||||
Timeout string `json:"timeout,omitempty"`
|
URL string `json:"url"`
|
||||||
|
|
||||||
|
// JSON web tokens for authentication (Using the *Bearer* scheme)
|
||||||
|
JWT string `json:"jwt,omitempty"`
|
||||||
|
|
||||||
|
// Basic authentication
|
||||||
|
Username string `json:"username"`
|
||||||
|
Password string `json:"password"`
|
||||||
|
useBasicAuth bool
|
||||||
|
|
||||||
|
// time limit for requests made by the http client
|
||||||
|
Timeout string `json:"timeout,omitempty"`
|
||||||
|
timeout time.Duration
|
||||||
|
|
||||||
|
// Maximum amount of time an idle (keep-alive) connection will remain idle before closing itself
|
||||||
|
// should be larger than the measurement interval to keep the connection open
|
||||||
IdleConnTimeout string `json:"idle_connection_timeout,omitempty"`
|
IdleConnTimeout string `json:"idle_connection_timeout,omitempty"`
|
||||||
FlushDelay string `json:"flush_delay,omitempty"`
|
idleConnTimeout time.Duration
|
||||||
MaxRetries int `json:"max_retries,omitempty"`
|
|
||||||
|
// Batch all writes arriving in during this duration
|
||||||
|
// (default '5s', batching can be disabled by setting it to 0)
|
||||||
|
FlushDelay string `json:"flush_delay,omitempty"`
|
||||||
|
flushDelay time.Duration
|
||||||
|
|
||||||
|
// Maximum number of retries to connect to the http server (default: 3)
|
||||||
|
MaxRetries int `json:"max_retries,omitempty"`
|
||||||
|
|
||||||
|
// Timestamp precision
|
||||||
|
Precision string `json:"precision,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type key_value_pair struct {
|
||||||
|
key string
|
||||||
|
value string
|
||||||
}
|
}
|
||||||
|
|
||||||
type HttpSink struct {
|
type HttpSink struct {
|
||||||
sink
|
sink
|
||||||
client *http.Client
|
client *http.Client
|
||||||
|
// influx line protocol encoder
|
||||||
encoder influx.Encoder
|
encoder influx.Encoder
|
||||||
lock sync.Mutex // Flush() runs in another goroutine, so this lock has to protect the buffer
|
// List of tags and meta data tags which should be used as tags
|
||||||
//buffer *bytes.Buffer
|
extended_tag_list []key_value_pair
|
||||||
flushTimer *time.Timer
|
// Flush() runs in another goroutine and accesses the influx line protocol encoder,
|
||||||
config HttpSinkConfig
|
// so this encoderLock has to protect the encoder
|
||||||
idleConnTimeout time.Duration
|
encoderLock sync.Mutex
|
||||||
timeout time.Duration
|
|
||||||
flushDelay time.Duration
|
// timer to run Flush()
|
||||||
|
flushTimer *time.Timer
|
||||||
|
// Lock to assure that only one timer is running at a time
|
||||||
|
timerLock sync.Mutex
|
||||||
|
|
||||||
|
config HttpSinkConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Write sends metric m as http message
|
||||||
func (s *HttpSink) Write(m lp.CCMetric) error {
|
func (s *HttpSink) Write(m lp.CCMetric) error {
|
||||||
var err error = nil
|
|
||||||
var firstWriteOfBatch bool = false
|
|
||||||
p := m.ToPoint(s.meta_as_tags)
|
|
||||||
s.lock.Lock()
|
|
||||||
firstWriteOfBatch = len(s.encoder.Bytes()) == 0
|
|
||||||
v, ok := m.GetField("value")
|
|
||||||
if ok {
|
|
||||||
|
|
||||||
s.encoder.StartLine(p.Name())
|
// Lock for encoder usage
|
||||||
for _, v := range p.TagList() {
|
s.encoderLock.Lock()
|
||||||
s.encoder.AddTag(v.Key, v.Value)
|
|
||||||
}
|
|
||||||
|
|
||||||
s.encoder.AddField("value", influx.MustNewValue(v))
|
// Encode measurement name
|
||||||
s.encoder.EndLine(p.Time())
|
s.encoder.StartLine(m.Name())
|
||||||
err = s.encoder.Err()
|
|
||||||
if err != nil {
|
// copy tags and meta data which should be used as tags
|
||||||
cclog.ComponentError(s.name, "encoding failed:", err.Error())
|
s.extended_tag_list = s.extended_tag_list[:0]
|
||||||
s.lock.Unlock()
|
for key, value := range m.Tags() {
|
||||||
return err
|
s.extended_tag_list =
|
||||||
|
append(
|
||||||
|
s.extended_tag_list,
|
||||||
|
key_value_pair{
|
||||||
|
key: key,
|
||||||
|
value: value,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
for _, key := range s.config.MetaAsTags {
|
||||||
|
if value, ok := m.GetMeta(key); ok {
|
||||||
|
s.extended_tag_list =
|
||||||
|
append(
|
||||||
|
s.extended_tag_list,
|
||||||
|
key_value_pair{
|
||||||
|
key: key,
|
||||||
|
value: value,
|
||||||
|
},
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
s.lock.Unlock()
|
|
||||||
|
|
||||||
if s.flushDelay == 0 {
|
// Encode tags (they musts be in lexical order)
|
||||||
|
slices.SortFunc(
|
||||||
|
s.extended_tag_list,
|
||||||
|
func(a key_value_pair, b key_value_pair) int {
|
||||||
|
if a.key < b.key {
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
if a.key > b.key {
|
||||||
|
return +1
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
},
|
||||||
|
)
|
||||||
|
for i := range s.extended_tag_list {
|
||||||
|
s.encoder.AddTag(
|
||||||
|
s.extended_tag_list[i].key,
|
||||||
|
s.extended_tag_list[i].value,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Encode fields
|
||||||
|
for key, value := range m.Fields() {
|
||||||
|
s.encoder.AddField(key, influx.MustNewValue(value))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Encode time stamp
|
||||||
|
s.encoder.EndLine(m.Time())
|
||||||
|
|
||||||
|
// Check for encoder errors
|
||||||
|
err := s.encoder.Err()
|
||||||
|
|
||||||
|
// Unlock encoder usage
|
||||||
|
s.encoderLock.Unlock()
|
||||||
|
|
||||||
|
// Check that encoding worked
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("encoding failed: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if s.config.flushDelay == 0 {
|
||||||
|
|
||||||
|
// Directly flush if no flush delay is configured
|
||||||
return s.Flush()
|
return s.Flush()
|
||||||
}
|
} else if s.timerLock.TryLock() {
|
||||||
|
|
||||||
if firstWriteOfBatch {
|
// Setup flush timer when flush delay is configured
|
||||||
if s.flushTimer == nil {
|
// and no other timer is already running
|
||||||
s.flushTimer = time.AfterFunc(s.flushDelay, func() {
|
if s.flushTimer != nil {
|
||||||
if err := s.Flush(); err != nil {
|
|
||||||
cclog.ComponentError(s.name, "flush failed:", err.Error())
|
// Restarting existing flush timer
|
||||||
}
|
cclog.ComponentDebug(s.name, "Write(): Restarting flush timer")
|
||||||
})
|
s.flushTimer.Reset(s.config.flushDelay)
|
||||||
} else {
|
} else {
|
||||||
s.flushTimer.Reset(s.flushDelay)
|
|
||||||
|
// Creating and starting flush timer
|
||||||
|
cclog.ComponentDebug(s.name, "Write(): Starting new flush timer")
|
||||||
|
s.flushTimer = time.AfterFunc(
|
||||||
|
s.config.flushDelay,
|
||||||
|
func() {
|
||||||
|
defer s.timerLock.Unlock()
|
||||||
|
cclog.ComponentDebug(s.name, "Starting flush triggered by flush timer")
|
||||||
|
if err := s.Flush(); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Flush triggered by flush timer: flush failed:", err)
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Flush sends all metrics stored in encoder to HTTP server
|
||||||
func (s *HttpSink) Flush() error {
|
func (s *HttpSink) Flush() error {
|
||||||
// Own lock for as short as possible: the time it takes to copy the buffer.
|
|
||||||
s.lock.Lock()
|
// Lock for encoder usage
|
||||||
buf := make([]byte, len(s.encoder.Bytes()))
|
// Own lock for as short as possible: the time it takes to clone the buffer.
|
||||||
copy(buf, s.encoder.Bytes())
|
s.encoderLock.Lock()
|
||||||
|
|
||||||
|
buf := slices.Clone(s.encoder.Bytes())
|
||||||
s.encoder.Reset()
|
s.encoder.Reset()
|
||||||
s.lock.Unlock()
|
|
||||||
|
// Unlock encoder usage
|
||||||
|
s.encoderLock.Unlock()
|
||||||
|
|
||||||
if len(buf) == 0 {
|
if len(buf) == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cclog.ComponentDebug(s.name, "Flush(): Flushing")
|
||||||
|
|
||||||
var res *http.Response
|
var res *http.Response
|
||||||
for i := 0; i < s.config.MaxRetries; i++ {
|
for i := 0; i < s.config.MaxRetries; i++ {
|
||||||
// Create new request to send buffer
|
// Create new request to send buffer
|
||||||
req, err := http.NewRequest(http.MethodPost, s.config.URL, bytes.NewReader(buf))
|
req, err := http.NewRequest(http.MethodPost, s.config.URL, bytes.NewReader(buf))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(s.name, "failed to create request:", err.Error())
|
cclog.ComponentError(s.name, "Flush(): Failed to create HTTP request:", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -106,10 +212,15 @@ func (s *HttpSink) Flush() error {
|
|||||||
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", s.config.JWT))
|
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", s.config.JWT))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set basic authentication
|
||||||
|
if s.config.useBasicAuth {
|
||||||
|
req.SetBasicAuth(s.config.Username, s.config.Password)
|
||||||
|
}
|
||||||
|
|
||||||
// Do request
|
// Do request
|
||||||
res, err = s.client.Do(req)
|
res, err = s.client.Do(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError(s.name, "transport/tcp error:", err.Error())
|
cclog.ComponentError(s.name, "Flush(): transport/tcp error:", err)
|
||||||
// Wait between retries
|
// Wait between retries
|
||||||
time.Sleep(time.Duration(i+1) * (time.Second / 2))
|
time.Sleep(time.Duration(i+1) * (time.Second / 2))
|
||||||
continue
|
continue
|
||||||
@@ -125,7 +236,7 @@ func (s *HttpSink) Flush() error {
|
|||||||
// Handle application errors
|
// Handle application errors
|
||||||
if res.StatusCode != http.StatusOK {
|
if res.StatusCode != http.StatusOK {
|
||||||
err := errors.New(res.Status)
|
err := errors.New(res.Status)
|
||||||
cclog.ComponentError(s.name, "application error:", err.Error())
|
cclog.ComponentError(s.name, "Flush(): Application error:", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -133,64 +244,107 @@ func (s *HttpSink) Flush() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (s *HttpSink) Close() {
|
func (s *HttpSink) Close() {
|
||||||
s.flushTimer.Stop()
|
cclog.ComponentDebug(s.name, "Closing HTTP connection")
|
||||||
if err := s.Flush(); err != nil {
|
|
||||||
cclog.ComponentError(s.name, "flush failed:", err.Error())
|
// Stop existing timer and immediately flush
|
||||||
|
if s.flushTimer != nil {
|
||||||
|
if ok := s.flushTimer.Stop(); ok {
|
||||||
|
s.timerLock.Unlock()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Flush
|
||||||
|
if err := s.Flush(); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Close(): Flush failed:", err)
|
||||||
|
}
|
||||||
|
|
||||||
s.client.CloseIdleConnections()
|
s.client.CloseIdleConnections()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewHttpSink creates a new http sink
|
||||||
func NewHttpSink(name string, config json.RawMessage) (Sink, error) {
|
func NewHttpSink(name string, config json.RawMessage) (Sink, error) {
|
||||||
s := new(HttpSink)
|
s := new(HttpSink)
|
||||||
// Set default values
|
// Set default values
|
||||||
s.name = fmt.Sprintf("HttpSink(%s)", name)
|
s.name = fmt.Sprintf("HttpSink(%s)", name)
|
||||||
s.config.IdleConnTimeout = "120s" // should be larger than the measurement interval.
|
// should be larger than the measurement interval to keep the connection open
|
||||||
|
s.config.IdleConnTimeout = "120s"
|
||||||
s.config.Timeout = "5s"
|
s.config.Timeout = "5s"
|
||||||
s.config.FlushDelay = "5s"
|
s.config.FlushDelay = "5s"
|
||||||
s.config.MaxRetries = 3
|
s.config.MaxRetries = 3
|
||||||
cclog.ComponentDebug(s.name, "init")
|
s.config.Precision = "ns"
|
||||||
|
cclog.ComponentDebug(s.name, "Init()")
|
||||||
|
|
||||||
// Read config
|
// Read config
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(s.config.URL) == 0 {
|
if len(s.config.URL) == 0 {
|
||||||
return nil, errors.New("`url` config option is required for HTTP sink")
|
return nil, errors.New("`url` config option is required for HTTP sink")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check basic authentication config
|
||||||
|
if len(s.config.Username) > 0 || len(s.config.Password) > 0 {
|
||||||
|
s.config.useBasicAuth = true
|
||||||
|
}
|
||||||
|
if s.config.useBasicAuth && len(s.config.Username) == 0 {
|
||||||
|
return nil, errors.New("basic authentication requires username")
|
||||||
|
}
|
||||||
|
if s.config.useBasicAuth && len(s.config.Password) == 0 {
|
||||||
|
return nil, errors.New("basic authentication requires password")
|
||||||
|
}
|
||||||
|
|
||||||
if len(s.config.IdleConnTimeout) > 0 {
|
if len(s.config.IdleConnTimeout) > 0 {
|
||||||
t, err := time.ParseDuration(s.config.IdleConnTimeout)
|
t, err := time.ParseDuration(s.config.IdleConnTimeout)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
cclog.ComponentDebug(s.name, "idleConnTimeout", t)
|
cclog.ComponentDebug(s.name, "Init(): idleConnTimeout", t)
|
||||||
s.idleConnTimeout = t
|
s.config.idleConnTimeout = t
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(s.config.Timeout) > 0 {
|
if len(s.config.Timeout) > 0 {
|
||||||
t, err := time.ParseDuration(s.config.Timeout)
|
t, err := time.ParseDuration(s.config.Timeout)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
s.timeout = t
|
s.config.timeout = t
|
||||||
cclog.ComponentDebug(s.name, "timeout", t)
|
cclog.ComponentDebug(s.name, "Init(): timeout", t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(s.config.FlushDelay) > 0 {
|
if len(s.config.FlushDelay) > 0 {
|
||||||
t, err := time.ParseDuration(s.config.FlushDelay)
|
t, err := time.ParseDuration(s.config.FlushDelay)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
s.flushDelay = t
|
s.config.flushDelay = t
|
||||||
cclog.ComponentDebug(s.name, "flushDelay", t)
|
cclog.ComponentDebug(s.name, "Init(): flushDelay", t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Create lookup map to use meta infos as tags in the output metric
|
precision := influx.Nanosecond
|
||||||
s.meta_as_tags = make(map[string]bool)
|
if len(s.config.Precision) > 0 {
|
||||||
for _, k := range s.config.MetaAsTags {
|
switch s.config.Precision {
|
||||||
s.meta_as_tags[k] = true
|
case "s":
|
||||||
|
precision = influx.Second
|
||||||
|
case "ms":
|
||||||
|
precision = influx.Millisecond
|
||||||
|
case "us":
|
||||||
|
precision = influx.Microsecond
|
||||||
|
case "ns":
|
||||||
|
precision = influx.Nanosecond
|
||||||
|
}
|
||||||
}
|
}
|
||||||
tr := &http.Transport{
|
|
||||||
MaxIdleConns: 1, // We will only ever talk to one host.
|
// Create http client
|
||||||
IdleConnTimeout: s.idleConnTimeout,
|
s.client = &http.Client{
|
||||||
|
Transport: &http.Transport{
|
||||||
|
MaxIdleConns: 1, // We will only ever talk to one host.
|
||||||
|
IdleConnTimeout: s.config.idleConnTimeout,
|
||||||
|
},
|
||||||
|
Timeout: s.config.timeout,
|
||||||
}
|
}
|
||||||
s.client = &http.Client{Transport: tr, Timeout: s.timeout}
|
|
||||||
s.encoder.SetPrecision(influx.Second)
|
// Configure influx line protocol encoder
|
||||||
|
s.encoder.SetPrecision(precision)
|
||||||
|
s.extended_tag_list = make([]key_value_pair, 0)
|
||||||
|
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
@@ -13,10 +13,13 @@ The `http` sink uses POST requests to a HTTP server to submit the metrics in the
|
|||||||
],
|
],
|
||||||
"url" : "https://my-monitoring.example.com:1234/api/write",
|
"url" : "https://my-monitoring.example.com:1234/api/write",
|
||||||
"jwt" : "blabla.blabla.blabla",
|
"jwt" : "blabla.blabla.blabla",
|
||||||
|
"username": "myUser",
|
||||||
|
"password": "myPW",
|
||||||
"timeout": "5s",
|
"timeout": "5s",
|
||||||
"max_idle_connections" : 10,
|
|
||||||
"idle_connection_timeout" : "5s",
|
"idle_connection_timeout" : "5s",
|
||||||
"flush_delay": "2s",
|
"flush_delay": "2s",
|
||||||
|
"batch_size": 1000,
|
||||||
|
"precision": "s"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -24,8 +27,16 @@ The `http` sink uses POST requests to a HTTP server to submit the metrics in the
|
|||||||
- `type`: makes the sink an `http` sink
|
- `type`: makes the sink an `http` sink
|
||||||
- `meta_as_tags`: Move specific meta information to the tags in the output (optional)
|
- `meta_as_tags`: Move specific meta information to the tags in the output (optional)
|
||||||
- `url`: The full URL of the endpoint
|
- `url`: The full URL of the endpoint
|
||||||
- `jwt`: JSON web tokens for authentification (Using the *Bearer* scheme)
|
- `jwt`: JSON web tokens for authentication (Using the *Bearer* scheme)
|
||||||
|
- `username`: username for basic authentication
|
||||||
|
- `password`: password for basic authentication
|
||||||
- `timeout`: General timeout for the HTTP client (default '5s')
|
- `timeout`: General timeout for the HTTP client (default '5s')
|
||||||
- `max_idle_connections`: Maximally idle connections (default 10)
|
- `max_retries`: Maximum number of retries to connect to the http server
|
||||||
- `idle_connection_timeout`: Timeout for idle connections (default '5s')
|
- `idle_connection_timeout`: Timeout for idle connections (default '120s'). Should be larger than the measurement interval to keep the connection open
|
||||||
- `flush_delay`: Batch all writes arriving in during this duration (default '1s', batching can be disabled by setting it to 0)
|
- `flush_delay`: Batch all writes arriving in during this duration (default '1s', batching can be disabled by setting it to 0)
|
||||||
|
- `batch_size`: Maximal batch size. If `batch_size` is reached before the end of `flush_delay`, the metrics are sent without further delay
|
||||||
|
- `precision`: Precision of the timestamp. Valid values are 's', 'ms', 'us' and 'ns'. (default is 'ns')
|
||||||
|
|
||||||
|
### Using HttpSink for communication with cc-metric-store
|
||||||
|
|
||||||
|
The cc-metric-store only accepts metrics with a timestamp precision in seconds, so it is required to set `"precision": "s"`.
|
@@ -1,6 +1,7 @@
|
|||||||
package sinks
|
package sinks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -180,8 +181,10 @@ func NewInfluxAsyncSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
// 262144 524288
|
// 262144 524288
|
||||||
|
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -9,7 +9,6 @@ The `influxasync` sink uses the official [InfluxDB golang client](https://pkg.go
|
|||||||
{
|
{
|
||||||
"<name>": {
|
"<name>": {
|
||||||
"type": "influxasync",
|
"type": "influxasync",
|
||||||
"meta_as_tags" : true,
|
|
||||||
"database" : "mymetrics",
|
"database" : "mymetrics",
|
||||||
"host": "dbhost.example.com",
|
"host": "dbhost.example.com",
|
||||||
"port": "4222",
|
"port": "4222",
|
||||||
@@ -21,13 +20,13 @@ The `influxasync` sink uses the official [InfluxDB golang client](https://pkg.go
|
|||||||
"retry_interval" : "1s",
|
"retry_interval" : "1s",
|
||||||
"retry_exponential_base" : 2,
|
"retry_exponential_base" : 2,
|
||||||
"max_retries": 20,
|
"max_retries": 20,
|
||||||
"max_retry_time" : "168h"
|
"max_retry_time" : "168h",
|
||||||
|
"meta_as_tags" : [],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- `type`: makes the sink an `influxdb` sink
|
- `type`: makes the sink an `influxdb` sink
|
||||||
- `meta_as_tags`: print all meta information as tags in the output (optional)
|
|
||||||
- `database`: All metrics are written to this bucket
|
- `database`: All metrics are written to this bucket
|
||||||
- `host`: Hostname of the InfluxDB database server
|
- `host`: Hostname of the InfluxDB database server
|
||||||
- `port`: Portnumber (as string) of the InfluxDB database server
|
- `port`: Portnumber (as string) of the InfluxDB database server
|
||||||
@@ -40,5 +39,6 @@ The `influxasync` sink uses the official [InfluxDB golang client](https://pkg.go
|
|||||||
- `retry_exponential_base`: The retry interval is exponentially increased with this base, default 2
|
- `retry_exponential_base`: The retry interval is exponentially increased with this base, default 2
|
||||||
- `max_retries`: Maximal number of retry attempts
|
- `max_retries`: Maximal number of retry attempts
|
||||||
- `max_retry_time`: Maximal time to retry failed writes, default 168h (one week)
|
- `max_retry_time`: Maximal time to retry failed writes, default 168h (one week)
|
||||||
|
- `meta_as_tags`: move meta information keys to tags (optional)
|
||||||
|
|
||||||
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)
|
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)
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
package sinks
|
package sinks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -13,7 +14,8 @@ import (
|
|||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
||||||
influxdb2Api "github.com/influxdata/influxdb-client-go/v2/api"
|
influxdb2Api "github.com/influxdata/influxdb-client-go/v2/api"
|
||||||
"github.com/influxdata/influxdb-client-go/v2/api/write"
|
influx "github.com/influxdata/line-protocol/v2/lineprotocol"
|
||||||
|
"golang.org/x/exp/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type InfluxSink struct {
|
type InfluxSink struct {
|
||||||
@@ -32,20 +34,49 @@ type InfluxSink struct {
|
|||||||
// Maximum number of points sent to server in single request.
|
// Maximum number of points sent to server in single request.
|
||||||
// Default: 1000
|
// Default: 1000
|
||||||
BatchSize int `json:"batch_size,omitempty"`
|
BatchSize int `json:"batch_size,omitempty"`
|
||||||
|
|
||||||
// Time interval for delayed sending of metrics.
|
// Time interval for delayed sending of metrics.
|
||||||
// If the buffers are already filled before the end of this interval,
|
// If the buffers are already filled before the end of this interval,
|
||||||
// the metrics are sent without further delay.
|
// the metrics are sent without further delay.
|
||||||
// Default: 1s
|
// Default: 1s
|
||||||
FlushInterval string `json:"flush_delay,omitempty"`
|
FlushInterval string `json:"flush_delay,omitempty"`
|
||||||
// Number of metrics that are dropped when buffer is full
|
flushDelay time.Duration
|
||||||
// Default: 100
|
|
||||||
DropRate int `json:"drop_rate,omitempty"`
|
// Influx client options:
|
||||||
|
|
||||||
|
// HTTP request timeout
|
||||||
|
HTTPRequestTimeout string `json:"http_request_timeout"`
|
||||||
|
// Retry interval
|
||||||
|
InfluxRetryInterval string `json:"retry_interval,omitempty"`
|
||||||
|
// maximum delay between each retry attempt
|
||||||
|
InfluxMaxRetryInterval string `json:"max_retry_interval,omitempty"`
|
||||||
|
// base for the exponential retry delay
|
||||||
|
InfluxExponentialBase uint `json:"retry_exponential_base,omitempty"`
|
||||||
|
// maximum count of retry attempts of failed writes
|
||||||
|
InfluxMaxRetries uint `json:"max_retries,omitempty"`
|
||||||
|
// maximum total retry timeout
|
||||||
|
InfluxMaxRetryTime string `json:"max_retry_time,omitempty"`
|
||||||
|
// Specify whether to use GZip compression in write requests
|
||||||
|
InfluxUseGzip bool `json:"use_gzip"`
|
||||||
}
|
}
|
||||||
batch []*write.Point
|
|
||||||
flushTimer *time.Timer
|
// influx line protocol encoder
|
||||||
flushDelay time.Duration
|
encoder influx.Encoder
|
||||||
batchMutex sync.Mutex // Flush() runs in another goroutine, so this lock has to protect the buffer
|
// number of records stored in the encoder
|
||||||
flushTimerMutex sync.Mutex // Ensure only one flush timer is running
|
numRecordsInEncoder int
|
||||||
|
// List of tags and meta data tags which should be used as tags
|
||||||
|
extended_tag_list []key_value_pair
|
||||||
|
// Flush() runs in another goroutine and accesses the influx line protocol encoder,
|
||||||
|
// so this encoderLock has to protect the encoder and numRecordsInEncoder
|
||||||
|
encoderLock sync.Mutex
|
||||||
|
|
||||||
|
// timer to run Flush()
|
||||||
|
flushTimer *time.Timer
|
||||||
|
// Lock to assure that only one timer is running at a time
|
||||||
|
timerLock sync.Mutex
|
||||||
|
|
||||||
|
// WaitGroup to ensure only one send operation is running at a time
|
||||||
|
sendWaitGroup sync.WaitGroup
|
||||||
}
|
}
|
||||||
|
|
||||||
// connect connects to the InfluxDB server
|
// connect connects to the InfluxDB server
|
||||||
@@ -70,7 +101,7 @@ func (s *InfluxSink) connect() error {
|
|||||||
} else {
|
} else {
|
||||||
auth = fmt.Sprintf("%s:%s", s.config.User, s.config.Password)
|
auth = fmt.Sprintf("%s:%s", s.config.User, s.config.Password)
|
||||||
}
|
}
|
||||||
cclog.ComponentDebug(s.name,
|
cclog.ComponentDebug(s.name, "connect():",
|
||||||
"Using URI='"+uri+"'",
|
"Using URI='"+uri+"'",
|
||||||
"Org='"+s.config.Organization+"'",
|
"Org='"+s.config.Organization+"'",
|
||||||
"Bucket='"+s.config.Database+"'")
|
"Bucket='"+s.config.Database+"'")
|
||||||
@@ -78,6 +109,95 @@ func (s *InfluxSink) connect() error {
|
|||||||
// Set influxDB client options
|
// Set influxDB client options
|
||||||
clientOptions := influxdb2.DefaultOptions()
|
clientOptions := influxdb2.DefaultOptions()
|
||||||
|
|
||||||
|
// set HTTP request timeout
|
||||||
|
if len(s.config.HTTPRequestTimeout) > 0 {
|
||||||
|
if t, err := time.ParseDuration(s.config.HTTPRequestTimeout); err == nil {
|
||||||
|
httpRequestTimeout := uint(t.Seconds())
|
||||||
|
clientOptions.SetHTTPRequestTimeout(httpRequestTimeout)
|
||||||
|
} else {
|
||||||
|
cclog.ComponentError(s.name, "connect():", "Failed to parse duration for HTTP RequestTimeout: ", s.config.HTTPRequestTimeout)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cclog.ComponentDebug(
|
||||||
|
s.name,
|
||||||
|
"connect():",
|
||||||
|
"Influx client options HTTPRequestTimeout:",
|
||||||
|
time.Second*time.Duration(clientOptions.HTTPRequestTimeout()))
|
||||||
|
|
||||||
|
// Set retry interval
|
||||||
|
if len(s.config.InfluxRetryInterval) > 0 {
|
||||||
|
if t, err := time.ParseDuration(s.config.InfluxRetryInterval); err == nil {
|
||||||
|
influxRetryInterval := uint(t.Milliseconds())
|
||||||
|
clientOptions.SetRetryInterval(influxRetryInterval)
|
||||||
|
} else {
|
||||||
|
cclog.ComponentError(s.name, "connect():", "Failed to parse duration for Influx RetryInterval: ", s.config.InfluxRetryInterval)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cclog.ComponentDebug(
|
||||||
|
s.name,
|
||||||
|
"connect():",
|
||||||
|
"Influx client options RetryInterval:",
|
||||||
|
time.Millisecond*time.Duration(clientOptions.RetryInterval()))
|
||||||
|
|
||||||
|
// Set the maximum delay between each retry attempt
|
||||||
|
if len(s.config.InfluxMaxRetryInterval) > 0 {
|
||||||
|
if t, err := time.ParseDuration(s.config.InfluxMaxRetryInterval); err == nil {
|
||||||
|
influxMaxRetryInterval := uint(t.Milliseconds())
|
||||||
|
clientOptions.SetMaxRetryInterval(influxMaxRetryInterval)
|
||||||
|
} else {
|
||||||
|
cclog.ComponentError(s.name, "connect():", "Failed to parse duration for Influx MaxRetryInterval: ", s.config.InfluxMaxRetryInterval)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cclog.ComponentDebug(
|
||||||
|
s.name,
|
||||||
|
"connect():",
|
||||||
|
"Influx client options MaxRetryInterval:",
|
||||||
|
time.Millisecond*time.Duration(clientOptions.MaxRetryInterval()))
|
||||||
|
|
||||||
|
// Set the base for the exponential retry delay
|
||||||
|
if s.config.InfluxExponentialBase != 0 {
|
||||||
|
clientOptions.SetExponentialBase(s.config.InfluxExponentialBase)
|
||||||
|
}
|
||||||
|
cclog.ComponentDebug(
|
||||||
|
s.name,
|
||||||
|
"connect():",
|
||||||
|
"Influx client options ExponentialBase:",
|
||||||
|
clientOptions.ExponentialBase())
|
||||||
|
|
||||||
|
// Set maximum count of retry attempts of failed writes
|
||||||
|
if s.config.InfluxMaxRetries != 0 {
|
||||||
|
clientOptions.SetMaxRetries(s.config.InfluxMaxRetries)
|
||||||
|
}
|
||||||
|
cclog.ComponentDebug(
|
||||||
|
s.name,
|
||||||
|
"connect():",
|
||||||
|
"Influx client options MaxRetries:",
|
||||||
|
clientOptions.MaxRetries())
|
||||||
|
|
||||||
|
// Set the maximum total retry timeout
|
||||||
|
if len(s.config.InfluxMaxRetryTime) > 0 {
|
||||||
|
if t, err := time.ParseDuration(s.config.InfluxMaxRetryTime); err == nil {
|
||||||
|
influxMaxRetryTime := uint(t.Milliseconds())
|
||||||
|
cclog.ComponentDebug(s.name, "connect():", "MaxRetryTime", s.config.InfluxMaxRetryTime)
|
||||||
|
clientOptions.SetMaxRetryTime(influxMaxRetryTime)
|
||||||
|
} else {
|
||||||
|
cclog.ComponentError(s.name, "connect():", "Failed to parse duration for Influx MaxRetryInterval: ", s.config.InfluxMaxRetryInterval)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cclog.ComponentDebug(
|
||||||
|
s.name,
|
||||||
|
"connect():",
|
||||||
|
"Influx client options MaxRetryTime:",
|
||||||
|
time.Millisecond*time.Duration(clientOptions.MaxRetryTime()))
|
||||||
|
|
||||||
|
// Specify whether to use GZip compression in write requests
|
||||||
|
clientOptions.SetUseGZip(s.config.InfluxUseGzip)
|
||||||
|
cclog.ComponentDebug(
|
||||||
|
s.name,
|
||||||
|
"connect():",
|
||||||
|
"Influx client options UseGZip:",
|
||||||
|
clientOptions.UseGZip())
|
||||||
|
|
||||||
// Do not check InfluxDB certificate
|
// Do not check InfluxDB certificate
|
||||||
clientOptions.SetTLSConfig(
|
clientOptions.SetTLSConfig(
|
||||||
&tls.Config{
|
&tls.Config{
|
||||||
@@ -85,7 +205,8 @@ func (s *InfluxSink) connect() error {
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
clientOptions.SetPrecision(time.Second)
|
// Set time precision
|
||||||
|
clientOptions.SetPrecision(time.Nanosecond)
|
||||||
|
|
||||||
// Create new writeAPI
|
// Create new writeAPI
|
||||||
s.client = influxdb2.NewClientWithOptions(uri, auth, clientOptions)
|
s.client = influxdb2.NewClientWithOptions(uri, auth, clientOptions)
|
||||||
@@ -102,95 +223,189 @@ func (s *InfluxSink) connect() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Write sends metric m in influxDB line protocol
|
||||||
func (s *InfluxSink) Write(m lp.CCMetric) error {
|
func (s *InfluxSink) Write(m lp.CCMetric) error {
|
||||||
|
|
||||||
if s.flushDelay != 0 && s.flushTimerMutex.TryLock() {
|
// Lock for encoder usage
|
||||||
// Run a batched flush for all metrics that arrived in the last flush delay interval
|
s.encoderLock.Lock()
|
||||||
cclog.ComponentDebug(s.name, "Starting new flush timer")
|
|
||||||
s.flushTimer = time.AfterFunc(
|
// Encode measurement name
|
||||||
s.flushDelay,
|
s.encoder.StartLine(m.Name())
|
||||||
func() {
|
|
||||||
defer s.flushTimerMutex.Unlock()
|
// copy tags and meta data which should be used as tags
|
||||||
cclog.ComponentDebug(s.name, "Starting flush in flush timer")
|
s.extended_tag_list = s.extended_tag_list[:0]
|
||||||
if err := s.Flush(); err != nil {
|
for key, value := range m.Tags() {
|
||||||
cclog.ComponentError(s.name, "Flush timer: flush failed:", err)
|
s.extended_tag_list =
|
||||||
}
|
append(
|
||||||
})
|
s.extended_tag_list,
|
||||||
|
key_value_pair{
|
||||||
|
key: key,
|
||||||
|
value: value,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
for _, key := range s.config.MetaAsTags {
|
||||||
|
if value, ok := m.GetMeta(key); ok {
|
||||||
|
s.extended_tag_list =
|
||||||
|
append(
|
||||||
|
s.extended_tag_list,
|
||||||
|
key_value_pair{
|
||||||
|
key: key,
|
||||||
|
value: value,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Lock access to batch slice
|
// Encode tags (they musts be in lexical order)
|
||||||
s.batchMutex.Lock()
|
slices.SortFunc(
|
||||||
|
s.extended_tag_list,
|
||||||
// batch slice full, dropping oldest metric(s)
|
func(a key_value_pair, b key_value_pair) int {
|
||||||
// e.g. when previous flushes failed and batch slice was not cleared
|
if a.key < b.key {
|
||||||
if len(s.batch) == s.config.BatchSize {
|
return -1
|
||||||
newSize := s.config.BatchSize - s.config.DropRate
|
}
|
||||||
|
if a.key > b.key {
|
||||||
for i := 0; i < newSize; i++ {
|
return +1
|
||||||
s.batch[i] = s.batch[i+s.config.DropRate]
|
}
|
||||||
}
|
return 0
|
||||||
for i := newSize; i < s.config.BatchSize; i++ {
|
},
|
||||||
s.batch[i] = nil
|
)
|
||||||
}
|
for i := range s.extended_tag_list {
|
||||||
s.batch = s.batch[:newSize]
|
s.encoder.AddTag(
|
||||||
cclog.ComponentError(s.name, "Batch slice full, dropping", s.config.DropRate, "oldest metric(s)")
|
s.extended_tag_list[i].key,
|
||||||
|
s.extended_tag_list[i].value,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Append metric to batch slice
|
// Encode fields
|
||||||
p := m.ToPoint(s.meta_as_tags)
|
for key, value := range m.Fields() {
|
||||||
s.batch = append(s.batch, p)
|
s.encoder.AddField(key, influx.MustNewValue(value))
|
||||||
|
}
|
||||||
|
|
||||||
// Flush synchronously if "flush_delay" is zero
|
// Encode time stamp
|
||||||
// or
|
s.encoder.EndLine(m.Time())
|
||||||
// Flush if batch size is reached
|
|
||||||
if s.flushDelay == 0 ||
|
// Check for encoder errors
|
||||||
len(s.batch) == s.config.BatchSize {
|
if err := s.encoder.Err(); err != nil {
|
||||||
// Unlock access to batch slice
|
// Unlock encoder usage
|
||||||
s.batchMutex.Unlock()
|
s.encoderLock.Unlock()
|
||||||
|
|
||||||
|
return fmt.Errorf("Encoding failed: %v", err)
|
||||||
|
}
|
||||||
|
s.numRecordsInEncoder++
|
||||||
|
|
||||||
|
if s.config.flushDelay == 0 {
|
||||||
|
// Unlock encoder usage
|
||||||
|
s.encoderLock.Unlock()
|
||||||
|
|
||||||
|
// Directly flush if no flush delay is configured
|
||||||
return s.Flush()
|
return s.Flush()
|
||||||
|
} else if s.numRecordsInEncoder == s.config.BatchSize {
|
||||||
|
// Unlock encoder usage
|
||||||
|
s.encoderLock.Unlock()
|
||||||
|
|
||||||
|
// Stop flush timer
|
||||||
|
if s.flushTimer != nil {
|
||||||
|
if ok := s.flushTimer.Stop(); ok {
|
||||||
|
cclog.ComponentDebug(s.name, "Write(): Stopped flush timer. Batch size limit reached before flush delay")
|
||||||
|
s.timerLock.Unlock()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Flush if batch size is reached
|
||||||
|
return s.Flush()
|
||||||
|
} else if s.timerLock.TryLock() {
|
||||||
|
|
||||||
|
// Setup flush timer when flush delay is configured
|
||||||
|
// and no other timer is already running
|
||||||
|
if s.flushTimer != nil {
|
||||||
|
|
||||||
|
// Restarting existing flush timer
|
||||||
|
cclog.ComponentDebug(s.name, "Write(): Restarting flush timer")
|
||||||
|
s.flushTimer.Reset(s.config.flushDelay)
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// Creating and starting flush timer
|
||||||
|
cclog.ComponentDebug(s.name, "Write(): Starting new flush timer")
|
||||||
|
s.flushTimer = time.AfterFunc(
|
||||||
|
s.config.flushDelay,
|
||||||
|
func() {
|
||||||
|
defer s.timerLock.Unlock()
|
||||||
|
cclog.ComponentDebug(s.name, "Starting flush triggered by flush timer")
|
||||||
|
if err := s.Flush(); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Flush triggered by flush timer: flush failed:", err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Unlock access to batch slice
|
// Unlock encoder usage
|
||||||
s.batchMutex.Unlock()
|
s.encoderLock.Unlock()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Flush sends all metrics buffered in batch slice to InfluxDB server
|
// Flush sends all metrics stored in encoder to InfluxDB server
|
||||||
func (s *InfluxSink) Flush() error {
|
func (s *InfluxSink) Flush() error {
|
||||||
cclog.ComponentDebug(s.name, "Flushing")
|
|
||||||
|
|
||||||
// Lock access to batch slice
|
// Lock for encoder usage
|
||||||
s.batchMutex.Lock()
|
// Own lock for as short as possible: the time it takes to clone the buffer.
|
||||||
defer s.batchMutex.Unlock()
|
s.encoderLock.Lock()
|
||||||
|
|
||||||
// Nothing to do, batch slice is empty
|
buf := slices.Clone(s.encoder.Bytes())
|
||||||
if len(s.batch) == 0 {
|
numRecordsInBuf := s.numRecordsInEncoder
|
||||||
|
s.encoder.Reset()
|
||||||
|
s.numRecordsInEncoder = 0
|
||||||
|
|
||||||
|
// Unlock encoder usage
|
||||||
|
s.encoderLock.Unlock()
|
||||||
|
|
||||||
|
if len(buf) == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send metrics from batch slice
|
cclog.ComponentDebug(s.name, "Flush(): Flushing", numRecordsInBuf, "metrics")
|
||||||
err := s.writeApi.WritePoint(context.Background(), s.batch...)
|
|
||||||
if err != nil {
|
|
||||||
cclog.ComponentError(s.name, "Flush(): Flush of", len(s.batch), "metrics failed:", err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clear batch slice
|
// Asynchron send of encoder metrics
|
||||||
for i := range s.batch {
|
s.sendWaitGroup.Add(1)
|
||||||
s.batch[i] = nil
|
go func() {
|
||||||
}
|
defer s.sendWaitGroup.Done()
|
||||||
s.batch = s.batch[:0]
|
startTime := time.Now()
|
||||||
|
err := s.writeApi.WriteRecord(context.Background(), string(buf))
|
||||||
|
if err != nil {
|
||||||
|
cclog.ComponentError(
|
||||||
|
s.name,
|
||||||
|
"Flush():",
|
||||||
|
"Flush failed:", err,
|
||||||
|
"(number of records =", numRecordsInBuf,
|
||||||
|
", buffer size =", len(buf),
|
||||||
|
", send duration =", time.Since(startTime),
|
||||||
|
")",
|
||||||
|
)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *InfluxSink) Close() {
|
func (s *InfluxSink) Close() {
|
||||||
cclog.ComponentDebug(s.name, "Closing InfluxDB connection")
|
cclog.ComponentDebug(s.name, "Closing InfluxDB connection")
|
||||||
s.flushTimer.Stop()
|
|
||||||
s.Flush()
|
// Stop existing timer and immediately flush
|
||||||
if err := s.Flush(); err != nil {
|
if s.flushTimer != nil {
|
||||||
cclog.ComponentError(s.name, "Close(): Flush failed:", err)
|
if ok := s.flushTimer.Stop(); ok {
|
||||||
|
s.timerLock.Unlock()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Flush
|
||||||
|
if err := s.Flush(); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Close():", "Flush failed:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait for send operations to finish
|
||||||
|
s.sendWaitGroup.Wait()
|
||||||
|
|
||||||
s.client.Close()
|
s.client.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -202,13 +417,14 @@ func NewInfluxSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
// Set config default values
|
// Set config default values
|
||||||
s.config.BatchSize = 1000
|
s.config.BatchSize = 1000
|
||||||
s.config.FlushInterval = "1s"
|
s.config.FlushInterval = "1s"
|
||||||
s.config.DropRate = 100
|
|
||||||
|
|
||||||
// Read config
|
// Read config
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
return s, err
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -238,28 +454,22 @@ func NewInfluxSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
if len(s.config.FlushInterval) > 0 {
|
if len(s.config.FlushInterval) > 0 {
|
||||||
t, err := time.ParseDuration(s.config.FlushInterval)
|
t, err := time.ParseDuration(s.config.FlushInterval)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
s.flushDelay = t
|
s.config.flushDelay = t
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !(s.config.BatchSize > 0) {
|
if !(s.config.BatchSize > 0) {
|
||||||
return s, fmt.Errorf("batch_size=%d in InfluxDB config must be > 0", s.config.BatchSize)
|
return s, fmt.Errorf("batch_size=%d in InfluxDB config must be > 0", s.config.BatchSize)
|
||||||
}
|
}
|
||||||
if !(s.config.DropRate > 0) {
|
|
||||||
return s, fmt.Errorf("drop_rate=%d in InfluxDB config must be > 0", s.config.DropRate)
|
|
||||||
}
|
|
||||||
if !(s.config.BatchSize > s.config.DropRate) {
|
|
||||||
return s, fmt.Errorf(
|
|
||||||
"batch_size=%d must be greater then drop_rate=%d in InfluxDB config",
|
|
||||||
s.config.BatchSize, s.config.DropRate)
|
|
||||||
}
|
|
||||||
|
|
||||||
// allocate batch slice
|
|
||||||
s.batch = make([]*write.Point, 0, s.config.BatchSize)
|
|
||||||
|
|
||||||
// Connect to InfluxDB server
|
// Connect to InfluxDB server
|
||||||
if err := s.connect(); err != nil {
|
if err := s.connect(); err != nil {
|
||||||
return s, fmt.Errorf("unable to connect: %v", err)
|
return s, fmt.Errorf("unable to connect: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Configure influx line protocol encoder
|
||||||
|
s.encoder.SetPrecision(influx.Nanosecond)
|
||||||
|
s.extended_tag_list = make([]key_value_pair, 0)
|
||||||
|
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
@@ -2,14 +2,12 @@
|
|||||||
|
|
||||||
The `influxdb` sink uses the official [InfluxDB golang client](https://pkg.go.dev/github.com/influxdata/influxdb-client-go/v2) to write the metrics to an InfluxDB database in a **blocking** fashion. It provides only support for V2 write endpoints (InfluxDB 1.8.0 or later).
|
The `influxdb` sink uses the official [InfluxDB golang client](https://pkg.go.dev/github.com/influxdata/influxdb-client-go/v2) to write the metrics to an InfluxDB database in a **blocking** fashion. It provides only support for V2 write endpoints (InfluxDB 1.8.0 or later).
|
||||||
|
|
||||||
|
|
||||||
### Configuration structure
|
### Configuration structure
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"<name>": {
|
"<name>": {
|
||||||
"type": "influxdb",
|
"type": "influxdb",
|
||||||
"meta_as_tags" : true,
|
|
||||||
"database" : "mymetrics",
|
"database" : "mymetrics",
|
||||||
"host": "dbhost.example.com",
|
"host": "dbhost.example.com",
|
||||||
"port": "4222",
|
"port": "4222",
|
||||||
@@ -18,20 +16,33 @@ The `influxdb` sink uses the official [InfluxDB golang client](https://pkg.go.de
|
|||||||
"organization": "myorg",
|
"organization": "myorg",
|
||||||
"ssl": true,
|
"ssl": true,
|
||||||
"flush_delay" : "1s",
|
"flush_delay" : "1s",
|
||||||
"batch_size" : 100
|
"batch_size" : 1000,
|
||||||
|
"use_gzip": true
|
||||||
|
"meta_as_tags" : [],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- `type`: makes the sink an `influxdb` sink
|
- `type`: makes the sink an `influxdb` sink
|
||||||
- `meta_as_tags`: print all meta information as tags in the output (optional)
|
- `meta_as_tags`: print all meta information as tags in the output (optional)
|
||||||
- `database`: All metrics are written to this bucket
|
- `database`: All metrics are written to this bucket
|
||||||
- `host`: Hostname of the InfluxDB database server
|
- `host`: Hostname of the InfluxDB database server
|
||||||
- `port`: Portnumber (as string) of the InfluxDB database server
|
- `port`: Port number (as string) of the InfluxDB database server
|
||||||
- `user`: Username for basic authentification
|
- `user`: Username for basic authentication
|
||||||
- `password`: Password for basic authentification
|
- `password`: Password for basic authentication
|
||||||
- `organization`: Organization in the InfluxDB
|
- `organization`: Organization in the InfluxDB
|
||||||
- `ssl`: Use SSL connection
|
- `ssl`: Use SSL connection
|
||||||
- `flush_delay`: Group metrics coming in to a single batch
|
- `flush_delay`: Group metrics coming in to a single batch
|
||||||
- `batch_size`: Maximal batch size
|
- `batch_size`: Maximal batch size. If `batch_size` is reached before the end of `flush_delay`, the metrics are sent without further delay
|
||||||
|
|
||||||
|
Influx client options:
|
||||||
|
=======
|
||||||
|
- `batch_size`: Maximal batch size
|
||||||
|
- `meta_as_tags`: move meta information keys to tags (optional)
|
||||||
|
- `http_request_timeout`: HTTP request timeout
|
||||||
|
- `retry_interval`: retry interval
|
||||||
|
- `max_retry_interval`: maximum delay between each retry attempt
|
||||||
|
- `retry_exponential_base`: base for the exponential retry delay
|
||||||
|
- `max_retries`: maximum count of retry attempts of failed writes
|
||||||
|
- `max_retry_time`: maximum total retry timeout
|
||||||
|
- `use_gzip`: Specify whether to use GZip compression in write requests
|
||||||
|
@@ -66,6 +66,7 @@ void Ganglia_pool_destroy( Ganglia_pool pool );
|
|||||||
import "C"
|
import "C"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -233,8 +234,9 @@ func NewLibgangliaSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s.config.GmondConfig = string(GMOND_CONFIG_FILE)
|
s.config.GmondConfig = string(GMOND_CONFIG_FILE)
|
||||||
s.config.GangliaLib = string(GANGLIA_LIB_NAME)
|
s.config.GangliaLib = string(GANGLIA_LIB_NAME)
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err = json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
|
if err := d.Decode(&s.config); err != nil {
|
||||||
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@@ -108,9 +108,10 @@ func NewNatsSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s.name = fmt.Sprintf("NatsSink(%s)", name)
|
s.name = fmt.Sprintf("NatsSink(%s)", name)
|
||||||
s.flushDelay = 10 * time.Second
|
s.flushDelay = 10 * time.Second
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
cclog.ComponentError(s.name, "Error reading config for", s.name, ":", err.Error())
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -2,27 +2,26 @@
|
|||||||
|
|
||||||
The `nats` sink publishes all metrics into a NATS network. The publishing key is the database name provided in the configuration file
|
The `nats` sink publishes all metrics into a NATS network. The publishing key is the database name provided in the configuration file
|
||||||
|
|
||||||
|
|
||||||
### Configuration structure
|
### Configuration structure
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"<name>": {
|
"<name>": {
|
||||||
"type": "nats",
|
"type": "nats",
|
||||||
"meta_as_tags" : true,
|
|
||||||
"database" : "mymetrics",
|
"database" : "mymetrics",
|
||||||
"host": "dbhost.example.com",
|
"host": "dbhost.example.com",
|
||||||
"port": "4222",
|
"port": "4222",
|
||||||
"user": "exampleuser",
|
"user": "exampleuser",
|
||||||
"password" : "examplepw"
|
"password" : "examplepw",
|
||||||
|
"meta_as_tags" : [],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- `type`: makes the sink an `nats` sink
|
- `type`: makes the sink an `nats` sink
|
||||||
- `meta_as_tags`: print all meta information as tags in the output (optional)
|
|
||||||
- `database`: All metrics are published with this subject
|
- `database`: All metrics are published with this subject
|
||||||
- `host`: Hostname of the NATS server
|
- `host`: Hostname of the NATS server
|
||||||
- `port`: Portnumber (as string) of the NATS server
|
- `port`: Port number (as string) of the NATS server
|
||||||
- `user`: Username for basic authentification
|
- `user`: Username for basic authentication
|
||||||
- `password`: Password for basic authentification
|
- `password`: Password for basic authentication
|
||||||
|
- `meta_as_tags`: print all meta information as tags in the output (optional)
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
package sinks
|
package sinks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
@@ -167,9 +168,10 @@ func NewPrometheusSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s := new(PrometheusSink)
|
s := new(PrometheusSink)
|
||||||
s.name = "PrometheusSink"
|
s.name = "PrometheusSink"
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
cclog.ComponentError(s.name, "Error reading config for", s.name, ":", err.Error())
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
package sinks
|
package sinks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
@@ -57,8 +58,10 @@ func NewSampleSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
|
|
||||||
// Read in the config JSON
|
// Read in the config JSON
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -157,7 +157,7 @@ func (sm *sinkManager) AddOutput(name string, rawConfig json.RawMessage) error {
|
|||||||
}
|
}
|
||||||
s, err := AvailableSinks[sinkConfig.Type](name, rawConfig)
|
s, err := AvailableSinks[sinkConfig.Type](name, rawConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cclog.ComponentError("SinkManager", "SKIP", s.Name(), "initialization failed:", err.Error())
|
cclog.ComponentError("SinkManager", "SKIP", name, "initialization failed:", err.Error())
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
sm.sinks[name] = s
|
sm.sinks[name] = s
|
||||||
|
@@ -1,12 +1,14 @@
|
|||||||
package sinks
|
package sinks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
// "time"
|
// "time"
|
||||||
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
||||||
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
lp "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -42,8 +44,10 @@ func NewStdoutSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
s := new(StdoutSink)
|
s := new(StdoutSink)
|
||||||
s.name = fmt.Sprintf("StdoutSink(%s)", name)
|
s.name = fmt.Sprintf("StdoutSink(%s)", name)
|
||||||
if len(config) > 0 {
|
if len(config) > 0 {
|
||||||
err := json.Unmarshal(config, &s.config)
|
d := json.NewDecoder(bytes.NewReader(config))
|
||||||
if err != nil {
|
d.DisallowUnknownFields()
|
||||||
|
if err := d.Decode(&s.config); err != nil {
|
||||||
|
cclog.ComponentError(s.name, "Error reading config:", err.Error())
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -9,14 +9,14 @@ The `stdout` sink is the most simple sink provided by cc-metric-collector. It wr
|
|||||||
{
|
{
|
||||||
"<name>": {
|
"<name>": {
|
||||||
"type": "stdout",
|
"type": "stdout",
|
||||||
"meta_as_tags" : true,
|
"meta_as_tags" : [],
|
||||||
"output_file" : "mylogfile.log"
|
"output_file" : "mylogfile.log"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- `type`: makes the sink an `stdout` sink
|
- `type`: makes the sink an `stdout` sink
|
||||||
- `meta_as_tags`: print all meta information as tags in the output (optional)
|
- `meta_as_tags`: print meta information as tags in the output (optional)
|
||||||
- `output_file`: Write all data to the selected file (optional). There are two 'special' files: `stdout` and `stderr`. If this option is not provided, the default value is `stdout`
|
- `output_file`: Write all data to the selected file (optional). There are two 'special' files: `stdout` and `stderr`. If this option is not provided, the default value is `stdout`
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user