N9E java sdk,采集应用数据上报N9E collector 或transfer。
sea-monitor默认情况下以SDK形式嵌入到应用,方便研发人员使用;
支持PUSH和Pull两种模式,push模式是异步上报到N9E-collector,pull模式需要自己采集日志
- 应用启动后,初始化SeaMonitor类,启动消息发送线程
- 当调用SeaMonitor API时,数据点即Metrics,会放入队列,消息发送线程会周期性的将数据发送至远端
- 在N9E monapi端定义告警策略,集成钉钉通知
├── sea-monitor // 监控SDK
├── sea-monitor-boot-starter // spring-boot工程集成
├── sea-monitor-boot-starter-demo // spring-boot工程示例
└── sea-monitor-web-demo // 常规spring-web工程示例
支持的中间件以及API
- Sea-Monitor SDK API
- spring & spring-boot 等Java工程集成
- 直达异常链路
- 系统(全局)级监控
- JVM监控
- Tomcat监控
- Dubbo监控
- DB连接池监控
- Http异常监控
- SQL监控
- Redis连接池监控
- 线程池监控
- RocketMQ-Broker监控
更多请参考这里
MetricDTO metricDTO = new MetricDTO();
metricDTO.setMetric(MetricEnum.HTTP_REQUEST_ERROR.getKey());
metricDTO.setValue(1);
metricDTO.setErrorFlag(true);
metricDTO.setTraceIdFlag(true);
SeaMonitor.logMetric(metricDTO);
SeaMonitor.logCount(MetricEnum.HTTP_REQUEST_ERROR_COUNT.getKey());
适用于定制化周期性指标上报,统计周期1min
- 在
META-INF/service/
目录下新建文件com.github.seaframework.monitor.heartbeat.StatusExtension
实现接口com.github.seaframework.monitor.heartbeat.StatusExtension
META-INF/service/com.github.seaframework.monitor.heartbeat.StatusExtension
文件中存放对应的实现类即可
- SDK的实现参考了CAT-SDK
- 感谢N9E团队的支持
您的支持是我最大的动力