1 Star 0 Fork 1

AliyunContainerService / node_exporter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
checkmetrics.sh 492 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
if [[ ( -z "$1" ) || ( -z "$2" ) ]]; then
echo "usage: ./checkmetrics.sh /usr/bin/promtool e2e-output.txt"
exit 1
fi
# Only check node_exporter's metrics, as the Prometheus Go client currently
# exposes a metric with a unit of microseconds. Once that is fixed, remove
# this filter.
lint=$($1 check metrics < $2 2>&1 | grep "node_")
if [[ ! -z $lint ]]; then
echo -e "Some Prometheus metrics do not follow best practices:\n"
echo "$lint"
exit 1
fi
Go
1
https://gitee.com/AliyunContainerService/node_exporter.git
git@gitee.com:AliyunContainerService/node_exporter.git
AliyunContainerService
node_exporter
node_exporter
master

搜索帮助