Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
oceanbase
obagent
提交
f640b64a
O
obagent
项目概览
oceanbase
/
obagent
1 年多 前同步成功
通知
3
Star
15
Fork
4
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
O
obagent
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f640b64a
编写于
12月 16, 2021
作者:
C
chris-sun-star
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
close wait
上级
784775cf
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
22 addition
and
14 deletion
+22
-14
plugins/inputs/oceanbase/log/error_log_input.go
plugins/inputs/oceanbase/log/error_log_input.go
+12
-8
plugins/outputs/prometheus/alertmanager.go
plugins/outputs/prometheus/alertmanager.go
+10
-6
未找到文件。
plugins/inputs/oceanbase/log/error_log_input.go
浏览文件 @
f640b64a
...
...
@@ -79,12 +79,13 @@ type Config struct {
}
type
ErrorLogInput
struct
{
config
*
Config
logAnalyzer
ILogAnalyzer
logProcessQueue
map
[
ServiceType
]
*
processQueue
ctx
context
.
Context
cancel
context
.
CancelFunc
metricBufferChan
chan
[]
metric
.
Metric
config
*
Config
logAnalyzer
ILogAnalyzer
logProcessQueue
map
[
ServiceType
]
*
processQueue
ctx
context
.
Context
cancel
context
.
CancelFunc
tbackgroundTaskWaitGroup
sync
.
WaitGroup
metricBufferChan
chan
[]
metric
.
Metric
}
func
(
e
*
ErrorLogInput
)
SampleConfig
()
string
{
...
...
@@ -123,10 +124,12 @@ func (e *ErrorLogInput) Init(config map[string]interface{}) error {
}
for
service
:=
range
e
.
config
.
LogServiceConfig
{
e
.
backgroundTaskWaitGroup
.
Add
(
1
)
go
e
.
doCollect
(
service
)
}
// start go routine to add log file to logProcessQueue
e
.
backgroundTaskWaitGroup
.
Add
(
1
)
go
e
.
watchFile
()
log
.
Info
(
"error log input init with config"
,
e
.
config
)
...
...
@@ -135,6 +138,7 @@ func (e *ErrorLogInput) Init(config map[string]interface{}) error {
}
func
(
e
*
ErrorLogInput
)
doCollect
(
service
ServiceType
)
{
defer
e
.
backgroundTaskWaitGroup
.
Done
()
for
{
select
{
case
<-
e
.
ctx
.
Done
()
:
...
...
@@ -221,7 +225,6 @@ func (e *ErrorLogInput) processLogLine(service ServiceType, line string) metric.
}
func
(
e
*
ErrorLogInput
)
isFiltered
(
service
ServiceType
,
line
string
)
bool
{
// TODO: compile first
c
,
found
:=
e
.
config
.
LogServiceConfig
[
service
]
if
found
{
if
c
.
ExcludeRegexes
==
nil
{
...
...
@@ -238,6 +241,7 @@ func (e *ErrorLogInput) isFiltered(service ServiceType, line string) bool {
}
func
(
e
*
ErrorLogInput
)
watchFile
()
{
defer
e
.
backgroundTaskWaitGroup
.
Done
()
for
{
select
{
case
<-
e
.
ctx
.
Done
()
:
...
...
@@ -297,7 +301,6 @@ func (e *ErrorLogInput) watchFileChanges() {
fileDesc
:
newFileDesc
,
isRenamed
:
false
,
})
// TODO: should set all node renamed except last one
queue
.
setRenameTrueExceptTail
()
}
}
else
{
...
...
@@ -315,6 +318,7 @@ func (e *ErrorLogInput) watchFileChanges() {
func
(
e
*
ErrorLogInput
)
Close
()
error
{
e
.
cancel
()
e
.
backgroundTaskWaitGroup
.
Wait
()
return
nil
}
...
...
plugins/outputs/prometheus/alertmanager.go
浏览文件 @
f640b64a
...
...
@@ -19,11 +19,11 @@ import (
"fmt"
"math/rand"
"net/http"
"sync"
"time"
"github.com/pkg/errors"
// "github.com/avast/retry-go/v3"
log
"github.com/sirupsen/logrus"
"gopkg.in/yaml.v3"
...
...
@@ -51,11 +51,12 @@ type AlertmanagerOutputConfig struct {
}
type
AlertmanagerOutput
struct
{
config
*
AlertmanagerOutputConfig
httpClient
*
http
.
Client
taskChan
chan
[]
metric
.
Metric
ctx
context
.
Context
cancelFunc
context
.
CancelFunc
config
*
AlertmanagerOutputConfig
httpClient
*
http
.
Client
taskChan
chan
[]
metric
.
Metric
ctx
context
.
Context
cancelFunc
context
.
CancelFunc
backgroundTaskWaitGroup
sync
.
WaitGroup
}
func
(
a
*
AlertmanagerOutput
)
Init
(
config
map
[
string
]
interface
{})
error
{
...
...
@@ -79,6 +80,7 @@ func (a *AlertmanagerOutput) Init(config map[string]interface{}) error {
a
.
httpClient
.
Timeout
=
a
.
config
.
HttpTimeout
}
a
.
backgroundTaskWaitGroup
.
Add
(
1
)
go
a
.
schedule
()
log
.
Infof
(
"alertmanager output inited with config : %v"
,
a
.
config
)
...
...
@@ -88,6 +90,7 @@ func (a *AlertmanagerOutput) Init(config map[string]interface{}) error {
func
(
a
*
AlertmanagerOutput
)
Close
()
error
{
a
.
cancelFunc
()
close
(
a
.
taskChan
)
a
.
backgroundTaskWaitGroup
.
Wait
()
return
nil
}
...
...
@@ -112,6 +115,7 @@ func (a *AlertmanagerOutput) Write(metrics []metric.Metric) error {
}
func
(
a
*
AlertmanagerOutput
)
schedule
()
{
a
.
backgroundTaskWaitGroup
.
Done
()
for
{
select
{
case
<-
a
.
ctx
.
Done
()
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录