Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flashcatcloud/categraf
one-stop telemetry collector for nightingale
https://github.com/flashcatcloud/categraf
Last synced: 7 days ago
JSON representation
one-stop telemetry collector for nightingale
- Host: GitHub
- URL: https://github.com/flashcatcloud/categraf
- Owner: flashcatcloud
- License: mit
- Created: 2022-04-13T04:36:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T13:25:07.000Z (7 months ago)
- Last Synced: 2024-04-17T19:23:29.807Z (7 months ago)
- Language: Go
- Homepage: https://flashcat.cloud/docs/
- Size: 18.9 MB
- Stars: 684
- Watchers: 22
- Forks: 213
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ops - flashcatcloud/categraf - 04-13|2024-09-29 | 一款 All-in-One 的开源的 telemetry 数据采集器,支持指标、日志采集;支持 Tracing 数据的收集;支持物理机、虚拟机、交换机、容器、K8s、多种中间件/数据库的数据采集,支持混合云架构、云原生架构、多云架构。汇聚领域最佳实践,开箱即用。 | (Prometheus-Exporter)
README
Categraf 是一款 All-in-One 的数据采集器,支持指标、日志采集;支持物理机、虚拟机、交换机、容器、K8s、多种中间件/数据库的数据采集,支持混合云架构、云原生架构、多云架构。同时,Categraf 期望不止提供采集能力,还附带提供仪表盘和告警规则,力求开箱即用。
[加入微信群](https://download.flashcat.cloud/ulric/wechat17-1.jpg)。如果二维码已过期,可以加我微信 picobyte 拉群,备注:“categraf 加群”。
## 特点
- 内置支持近百种采集插件,同时支持采集指标和日志,减少 agent 部署数量,降低维护成本
- 采用 PUSH 方式推送数据,对于网络策略要求较高的场景,可以减少对外部网络的依赖
- 采用 remote write 协议推送数据,支持将数据推送到 Nightingale、Prometheus、VictoriaMetrics 等后端
- 尽可能落地最佳实践,不需要采集的数据无需采集,针对可能会对时序库造成高基数的问题在采集侧做出处理> ❇️ 我们推荐你使用 [**夜莺Nightingale**](https://github.com/ccfos/nightingale) 作为监控服务端,和 Categraf 丝滑对接,夜莺中已经内置了各类告警规则和仪表盘。
>![nightingale](./doc/img/nightingale-template-center.png)
> ❇️ 我们推荐你使用快猫星云旗下的 [**Flashduty**](https://flashcat.cloud/product/flashduty/?from=categraf-github) 作为 OnCall 值班平台,Flashduty 支持告警聚合、降噪、认领、升级、排班,让告警的触达既高效,又确保告警处理不遗漏、件件有回响。
![flashduty](./doc/flashduty.png)
## 更多文档
- [快速开始](https://flashcat.cloud/blog/monitor-agent-categraf-introduction/)
- [视频教程](https://mp.weixin.qq.com/s/T69kkBzToHVh31D87xsrIg)
- [软件下载](https://github.com/flashcatcloud/categraf/releases)## 从源代码编译
```shell
# export GO111MODULE=on
# export GOPROXY=https://goproxy.cngo build
tar zcvf categraf.tar.gz categraf conf
```*Note: 对于mac os x 用户,请使用 gun-tar 工具打包*
```shell
brew install gnu-tar
gtar zcvf categraf.tar.gz categraf conf
```*否则会出现以下报错:*
```F! failed to init config: failed to load configs of dir: ./conf err:toml: line 1: files cannot contain NULL bytes; probably using UTF-16; TOML files must be UTF-8```
## 运行
```shell
# test mode: just print metrics to stdout
./categraf --test# test system and mem plugins
./categraf --test --inputs system:mem# print usage message
./categraf --help# run
./categraf# run with specified config directory
./categraf --configs /path/to/conf-directory# only enable system and mem plugins
./categraf --inputs system:mem# use nohup to start categraf
nohup ./categraf &> stdout.log &
```## 部署在K8s
Categraf 可以以 daemonset, deployment 或者 sidecar 的形式运行在K8s中。
edit k8s/daemonset.yaml, replace NSERVER_SERVICE_WITH_PORT with service ip:port of nserver in your cluster, replace CATEGRAF_NAMESPACE with namespace value, then run:
```shell
kubectl apply -n monitoring -f k8s/daemonset.yaml # collect metrics, metrics/cadvisor of node
kubectl apply -n monitoring -f k8s/sidecar.yaml # collect service metrics
kubectl apply -n monitoring -f k8s/deployment.yaml #collect apiserver coredns etc
```
Notice: k8s/sidecar.yaml is a demo, replace mock with your own image of service.## 使用Categraf无缝代替Prometheus抓取数据
see detail [here](https://github.com/flashcatcloud/categraf/blob/main/prometheus/README.md)## 插件
plugin list and document: [https://github.com/flashcatcloud/categraf/tree/main/inputs](https://github.com/flashcatcloud/categraf/tree/main/inputs)
## 致谢
Categraf is developed on the basis of Telegraf, Exporters and the OpenTelemetry. Thanks to the great open source community.