Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
B
byh-alarm-service
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
包
包
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
杨凯
byh-alarm-service
Commits
bf546a32
提交
bf546a32
authored
8月 11, 2023
作者:
杨凯
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:新增告警接收接口
上级
ff5fdc99
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
41 行增加
和
41 行删除
+41
-41
AlarmServiceImpl.java
...ebaiyihui/alarm/server/service/Impl/AlarmServiceImpl.java
+41
-41
没有找到文件。
alarm-server/src/main/java/com/ebaiyihui/alarm/server/service/Impl/AlarmServiceImpl.java
浏览文件 @
bf546a32
...
...
@@ -42,47 +42,47 @@ public class AlarmServiceImpl implements AlarmService {
@Override
public
String
receive
(
List
<
AlarmMessage
>
alarmMessages
)
{
for
(
AlarmMessage
alarmMessage
:
alarmMessages
)
{
String
name
=
alarmMessage
.
getName
();
String
message
=
alarmMessage
.
getAlarmMessage
();
String
scope
=
alarmMessage
.
getScope
();
// 过滤一下不发送服务通知逻辑
if
(
SERVICE
.
equals
(
scope
))
{
if
(
Objects
.
nonNull
(
projProperties
.
getNotNotifyService
())
&&
projProperties
.
getNotNotifyService
().
contains
(
name
))
{
return
"success"
;
}
}
// 过滤一下不发送服务通知接口逻辑
if
(
ENDPOINT_RELATION
.
equalsIgnoreCase
(
scope
))
{
// 获取路径地址
String
tempName
=
name
.
substring
(
name
.
indexOf
(
"/"
),
name
.
length
());
String
pathUrl
=
tempName
.
substring
(
0
,
tempName
.
indexOf
(
" "
));
if
(
Objects
.
nonNull
(
projProperties
.
getNotNotifyService
())
&&
projProperties
.
getNotNotifyUrl
().
contains
(
pathUrl
))
{
return
"success"
;
}
}
// 获取服务名称
String
serviceNme
=
name
.
substring
(
name
.
indexOf
(
"byh"
),
name
.
length
());
List
<
ServiceInfo
>
serviceInfos
=
projProperties
.
getServiceInfo
();
for
(
ServiceInfo
serviceInfo
:
serviceInfos
)
{
// 相应的服务通知对应人员
if
(
serviceInfo
.
getServiceNames
().
contains
(
serviceNme
))
{
// message += "<at user_id=\\\"ou_6cb2f35f9bf8e7d7e977483801ab13de\\\">杨凯</at>";
message
+=
"<at user_id=\\\""
+
serviceInfo
.
getServiceNotifyName
()
+
"\\\"></at>"
;
alarmMessage
.
setAlarmMessage
(
message
);
}
String
sendMessage
=
"{\"msg_type\":\"text\",\"content\":{\"text\":\"Apache SkyWalking Alarm: \\n %s.\"}}"
;
String
requestBody
=
getRequestBody
(
sendMessage
,
alarmMessage
);
try
{
HttpKit
.
jsonPost
(
webHookUrl
,
requestBody
);
}
catch
(
Exception
e
)
{
return
"fail"
;
}
}
}
//
for (AlarmMessage alarmMessage : alarmMessages) {
//
String name = alarmMessage.getName();
//
String message = alarmMessage.getAlarmMessage();
//
//
String scope = alarmMessage.getScope();
//
// 过滤一下不发送服务通知逻辑
//
if (SERVICE.equals(scope)) {
//
if (Objects.nonNull(projProperties.getNotNotifyService()) && projProperties.getNotNotifyService().contains(name)) {
//
return "success";
//
}
//
}
//
// 过滤一下不发送服务通知接口逻辑
//
if (ENDPOINT_RELATION.equalsIgnoreCase(scope)) {
//
// 获取路径地址
//
String tempName = name.substring(name.indexOf("/"), name.length());
//
String pathUrl = tempName.substring(0, tempName.indexOf(" "));
//
if (Objects.nonNull(projProperties.getNotNotifyService()) && projProperties.getNotNotifyUrl().contains(pathUrl)) {
//
return "success";
//
}
//
}
//
//
// 获取服务名称
//
String serviceNme = name.substring(name.indexOf("byh"), name.length());
//
List<ServiceInfo> serviceInfos = projProperties.getServiceInfo();
//
for (ServiceInfo serviceInfo : serviceInfos) {
//
// 相应的服务通知对应人员
//
if (serviceInfo.getServiceNames().contains(serviceNme)) {
//
// message += "<at user_id=\\\"ou_6cb2f35f9bf8e7d7e977483801ab13de\\\">杨凯</at>";
//
message += "<at user_id=\\\"" + serviceInfo.getServiceNotifyName() + "\\\"></at>";
//
alarmMessage.setAlarmMessage(message);
//
}
//
String sendMessage = "{\"msg_type\":\"text\",\"content\":{\"text\":\"Apache SkyWalking Alarm: \\n %s.\"}}";
//
String requestBody = getRequestBody(sendMessage, alarmMessage);
//
try {
//
HttpKit.jsonPost(webHookUrl, requestBody);
//
} catch (Exception e) {
//
return "fail";
//
}
//
}
//
//
}
return
"success"
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论