Skip to content

Commit 988e2c1

Browse files
authored
add plugin start log in sdk (#1831)
1 parent 4f19015 commit 988e2c1

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

plugins/wasm-go/pkg/wrapper/log_wrapper.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,12 @@ type Log interface {
4444
Errorf(format string, args ...interface{})
4545
Critical(msg string)
4646
Criticalf(format string, args ...interface{})
47+
resetID(pluginID string)
4748
}
4849

4950
type DefaultLog struct {
5051
pluginName string
52+
pluginID string
5153
}
5254

5355
func (l *DefaultLog) log(level LogLevel, msg string) {
@@ -56,7 +58,7 @@ func (l *DefaultLog) log(level LogLevel, msg string) {
5658
if requestID == "" {
5759
requestID = "nil"
5860
}
59-
msg = fmt.Sprintf("[%s] [%s] %s", l.pluginName, requestID, msg)
61+
msg = fmt.Sprintf("[%s] [%s] [%s] %s", l.pluginName, l.pluginID, requestID, msg)
6062
switch level {
6163
case LogLevelTrace:
6264
proxywasm.LogTrace(msg)
@@ -79,7 +81,7 @@ func (l *DefaultLog) logFormat(level LogLevel, format string, args ...interface{
7981
if requestID == "" {
8082
requestID = "nil"
8183
}
82-
format = fmt.Sprintf("[%s] [%s] %s", l.pluginName, requestID, format)
84+
format = fmt.Sprintf("[%s] [%s] [%s] %s", l.pluginName, l.pluginID, requestID, format)
8385
switch level {
8486
case LogLevelTrace:
8587
proxywasm.LogTracef(format, args...)
@@ -143,3 +145,7 @@ func (l *DefaultLog) Critical(msg string) {
143145
func (l *DefaultLog) Criticalf(format string, args ...interface{}) {
144146
l.logFormat(LogLevelCritical, format, args...)
145147
}
148+
149+
func (l *DefaultLog) resetID(pluginID string) {
150+
l.pluginID = pluginID
151+
}

plugins/wasm-go/pkg/wrapper/plugin_wrapper.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const (
3232
CustomLogKey = "custom_log"
3333
AILogKey = "ai_log"
3434
TraceSpanTagPrefix = "trace_span_tag."
35+
PluginIDKey = "_plugin_id_"
3536
)
3637

3738
type HttpContext interface {
@@ -255,7 +256,7 @@ func parseEmptyPluginConfig[PluginConfig any](gjson.Result, *PluginConfig, Log)
255256
}
256257

257258
func NewCommonVmCtx[PluginConfig any](pluginName string, options ...CtxOption[PluginConfig]) *CommonVmCtx[PluginConfig] {
258-
logger := &DefaultLog{pluginName}
259+
logger := &DefaultLog{pluginName, "nil"}
259260
opts := append([]CtxOption[PluginConfig]{WithLogger[PluginConfig](logger)}, options...)
260261
return NewCommonVmCtxWithOptions(pluginName, opts...)
261262
}
@@ -314,7 +315,10 @@ func (ctx *CommonPluginCtx[PluginConfig]) OnPluginStart(int) types.OnPluginStart
314315
}
315316
jsonData = gjson.ParseBytes(data)
316317
}
317-
318+
pluginID := jsonData.Get(PluginIDKey).String()
319+
if pluginID != "" {
320+
ctx.vm.log.resetID(pluginID)
321+
}
318322
var parseOverrideConfig func(gjson.Result, PluginConfig, *PluginConfig) error
319323
if ctx.vm.parseRuleConfig != nil {
320324
parseOverrideConfig = func(js gjson.Result, global PluginConfig, cfg *PluginConfig) error {
@@ -329,15 +333,18 @@ func (ctx *CommonPluginCtx[PluginConfig]) OnPluginStart(int) types.OnPluginStart
329333
)
330334
if err != nil {
331335
ctx.vm.log.Warnf("parse rule config failed: %v", err)
336+
ctx.vm.log.Error("plugin start failed")
332337
return types.OnPluginStartStatusFailed
333338
}
334339
if globalOnTickFuncs != nil {
335340
ctx.onTickFuncs = globalOnTickFuncs
336341
if err := proxywasm.SetTickPeriodMilliSeconds(100); err != nil {
337342
ctx.vm.log.Error("SetTickPeriodMilliSeconds failed, onTick functions will not take effect.")
343+
ctx.vm.log.Error("plugin start failed")
338344
return types.OnPluginStartStatusFailed
339345
}
340346
}
347+
ctx.vm.log.Error("plugin start successfully")
341348
return types.OnPluginStartStatusOK
342349
}
343350

0 commit comments

Comments
 (0)