mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
34 lines
779 B
Go
34 lines
779 B
Go
|
package execution
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/sirupsen/logrus"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/logstore"
|
||
|
)
|
||
|
|
||
|
var _ logstore.LogRecord = (*Record)(nil)
|
||
|
|
||
|
type Record struct {
|
||
|
LogDate time.Time `json:"logDate"`
|
||
|
Took time.Duration `json:"took"`
|
||
|
Message string `json:"message"`
|
||
|
LogLevel logrus.Level `json:"logLevel"`
|
||
|
InstanceID string `json:"instanceId"`
|
||
|
ActionID string `json:"actionId,omitempty"`
|
||
|
Metadata map[string]interface{} `json:"metadata,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (e Record) Normalize() logstore.LogRecord {
|
||
|
e.Message = cutString(e.Message, 2000)
|
||
|
return &e
|
||
|
}
|
||
|
|
||
|
func cutString(str string, pos int) string {
|
||
|
if len(str) <= pos {
|
||
|
return str
|
||
|
}
|
||
|
return str[:pos]
|
||
|
}
|