All Projects → tal-tech → alarm-dog

tal-tech / alarm-dog

Licence: other
哮天犬是一个通用的统一告警平台,提供配置化、流程化、标准化的能力,支持多种告警通知渠道,支持告警收敛、过滤、升级、工作流、自动恢复等功能,实现统一输入、不同输出。可以对接Grafana、阿里云Arms、实时计算等监控能力,各业务也可以直接在代码中埋点上报告警,也可以定制化开发,实现监控告警全场景覆盖。https://tal-tech.github.io/alarm-dog-docs

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to alarm-dog

homebridge-konnected
A Homebridge plugin for Konnected Alarm Panel devices
Stars: ✭ 25 (-84.85%)
Mutual labels:  alarm, alarm-system
Nerys Product Monitor Lite
A universal product monitor. Capable of monitoring any site for products based on keywords. Optimized for Shopify. Sends alerts via Discord when new products are detected.
Stars: ✭ 111 (-32.73%)
Mutual labels:  monitor, universal
Frostmourne
frostmourne是基于Elasticsearch, InfluxDB数据,Mysql数据的监控,报警,分析系统. Monitor & alert & alarm & analyze for Elasticsearch && InfluxDB Log Data。主要使用springboot2 + vue-element-admin。 https://frostmourne-demo.github.io/
Stars: ✭ 166 (+0.61%)
Mutual labels:  alarm, monitor
wing-binlog
php mysqlbinlog monitoring system
Stars: ✭ 37 (-77.58%)
Mutual labels:  monitor
ferryd
Fast, safe and reliable transit for the delivery of software updates to users.
Stars: ✭ 43 (-73.94%)
Mutual labels:  monitor
hawk-eye
前端监控:定时监控站点渲染情况,记录异常并保存截图: puppeteer, thinkjs,mongodb,headless-chrome,vuejs
Stars: ✭ 88 (-46.67%)
Mutual labels:  monitor
UniBot
An universal HTTP bot creator
Stars: ✭ 21 (-87.27%)
Mutual labels:  universal
Dell-S2716DGR-Calibration-Guide
Calibration guide for the Dell S2716DG and S2716DGR to get the best picture quality and colors
Stars: ✭ 33 (-80%)
Mutual labels:  monitor
rnw boilerplate nav
React Native Web boilerplate for universal web/native apps with a react-router/react-navigation combo navigation system.
Stars: ✭ 54 (-67.27%)
Mutual labels:  universal
cocoyaxi
A go-style coroutine library in C++11 and more.
Stars: ✭ 2,392 (+1349.7%)
Mutual labels:  high-performance
jNVMf
A NVMf library for Java
Stars: ✭ 23 (-86.06%)
Mutual labels:  high-performance
RightStatsMonitor
A useful tool for displaying FPS with high precision. Very lightweight and fast. GC-free
Stars: ✭ 14 (-91.52%)
Mutual labels:  monitor
react-hot-loader-starter-kit
react 16, redux 5, react router 4, universal, webpack 3
Stars: ✭ 41 (-75.15%)
Mutual labels:  universal
i3-workscreen
In i3wm compatible manner - dynamically re-configures your (multi)-monitor setup on the fly when you hotplug/unplug display cabel(s)
Stars: ✭ 29 (-82.42%)
Mutual labels:  monitor
heartbeats
一个基于数据上报的监控系统. 用于监控定时和定期类型服务监控状况
Stars: ✭ 25 (-84.85%)
Mutual labels:  monitor
Charles-Proxy-Mobile-Guide
The mobile hackers' guide to Charles Proxy 👍
Stars: ✭ 105 (-36.36%)
Mutual labels:  monitor
carina
Carina: an high performance and ops-free local storage for kubernetes
Stars: ✭ 256 (+55.15%)
Mutual labels:  high-performance
Shark
Shark is an open source algorithmic trading platform. It alerts traders to specific items of interest and can execute trades based on those interests.
Stars: ✭ 19 (-88.48%)
Mutual labels:  monitor
MultiHttp
This is a high performance , very useful multi-curl tool written in php. 一个超级好用的并发CURL工具!!!(httpful,restful, concurrency)
Stars: ✭ 79 (-52.12%)
Mutual labels:  high-performance
snowem
Snowem is a lightweight live streaming server, based on webrtc technology. Its design mainly focuses on simplicity, scalability and high performance.
Stars: ✭ 73 (-55.76%)
Mutual labels:  high-performance

哮天犬告警平台

哮天犬是一个通用的统一告警平台,提供配置化、流程化、标准化的能力。可以选择对接日志中心日志类监控、实时计算类的监控能力,各业务方也可以直接在代码中埋点上报告警,同时我们团队也可以定制化开发既能满足业务需求又能快速复用告警平台的监控系统,实现监控告警全场景覆盖。 使用文档

开始使用

# 拉取子模块
git clone https://github.com/tal-tech/alarm-dog.git --recursive

# 根据实际情况修改 docker-compose.yml 中以下参数
VUE_APP_STATIC_PREFIX=//127.0.0.1:8081/admin/
VUE_APP_BASE_API=//127.0.0.1:8081/api/

# 启动docker
docker-compose up -d

# 导入sql
docker exec -it alarm-dog_mysql_1 /bin/bash
cd /data
mysql -p (password: root)
create database alarm_dog;
use alarm_dog;
source alarm_dog.sql;

# 导入clickhouse
docker exec -it alarm-dog_clickhouse_1 /bin/bash
cd /data
clickhouse-client
create database alarm_dog;
use alarm_dog;
source clickhouse.sql;

默认账号:admin 密码:alarm-dog

模块介绍

仓库名称 模块名称 模块介绍
alarm-dog-admin 后台接口 提供后台管理接口服务和开放平台接口服务,一般内网解析
alarm-dog-fe 后台web界面 提供后台管理界面服务,前后端分离
alarm-dog-api 告警接口 提供告警接口服务,一般公网解析
alarm-dog-consumer 告警消费 对告警接口产生的告警消息进行消费,实现非常丰富的告警功能
alarm-dog-monitor 监控模块 哮天犬不做监控,但想抽象出一系列的监控模型,这是一个监控探索模块
alarm-dog-noticer 消息通知SDK 提供各模块消息通知功能,包括后台邮件发送、告警接口自监控告警发送、告警消费告警发送等
alarm-dog-php-sdk PHP告警SDK 对告警接口封装,提供PHP语言快速接入能力
alarm-dog-golang-sdk Golang告警SDK 对告警接口封装,提供Golang语言快速接入能力
alarm-dog-java-sdk Java告警SDK 对告警接口封装,提供Java语言快速接入能力
alarm-dog-docs 使用文档 提供文档使用说明
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].