Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
K
koishi-plugin-alertmanager
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
3rdeye
koishi-plugin-alertmanager
Commits
5d2a6628
Commit
5d2a6628
authored
Mar 19, 2022
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add resolvedMessage
parent
be268655
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/config.ts
src/config.ts
+7
-1
No files found.
src/config.ts
View file @
5d2a6628
...
...
@@ -77,6 +77,12 @@ export class Instance {
})
title
:
string
;
@
SchemaProperty
({
description
:
'
解除警报的提示信息。
'
,
default
:
'
警报
'
,
})
resolvedMessage
:
string
;
formatAlert
(
dto
:
AlertDto
)
{
const
{
alerts
}
=
dto
;
let
text
=
`
${
segment
(
'
markdown
'
)}
#
${
this
.
title
}
`
;
...
...
@@ -89,7 +95,7 @@ export class Instance {
}
text
+=
`\n`
;
if
(
alert
.
status
===
'
resolved
'
)
{
text
+=
'
已解除警报。
'
;
text
+=
this
.
resolvedMessage
;
continue
;
}
text
+=
`
${
alert
.
annotations
.
summary
}
\n\n
${
alert
.
annotations
.
description
}
`
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment