2020-04-27 21:26:13 +08:00
|
|
|
package grlogs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/astaxie/beego/logs"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
)
|
|
|
|
|
2020-04-28 10:37:47 +08:00
|
|
|
var adatperMapper = map[Adapter]func(l *Logger, level Level) error{
|
2020-04-27 21:26:13 +08:00
|
|
|
|
2020-04-28 10:37:47 +08:00
|
|
|
AdapterFile: func(l *Logger, level Level) error {
|
2020-04-27 21:26:13 +08:00
|
|
|
if wd, err := os.Getwd(); err == nil {
|
|
|
|
c := FileLogConfig{
|
|
|
|
Filename: path.Join(wd, fmt.Sprintf("runtime/logs/%s.log", l.Lable)),
|
|
|
|
Level: level,
|
|
|
|
Maxlines: 0,
|
|
|
|
Daily: true,
|
|
|
|
Maxdays: 7,
|
|
|
|
Color: true,
|
|
|
|
Rotate: true,
|
|
|
|
}
|
2020-04-28 10:37:47 +08:00
|
|
|
|
2020-04-27 21:26:13 +08:00
|
|
|
return l.SetLogger(logs.AdapterFile, c.String())
|
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-04-28 10:37:47 +08:00
|
|
|
AdapterConsole: func(l *Logger, level Level) error {
|
2020-04-27 21:26:13 +08:00
|
|
|
c := ConsoleLogConfig{Level: level}
|
|
|
|
return l.SetLogger(logs.AdapterConsole, c.String())
|
|
|
|
},
|
|
|
|
|
2020-04-28 10:37:47 +08:00
|
|
|
AdapterElasticSearch: func(l *Logger, level Level) error {
|
2020-04-27 21:26:13 +08:00
|
|
|
|
|
|
|
dsn := "http://es-cn-0pp1mm3hq000dnbh4.public.elasticsearch.aliyuncs.com:9200/"
|
2020-04-28 18:47:31 +08:00
|
|
|
if os.Getenv(envkey) == "prod" || os.Getenv(envkey) == "" || os.Getenv(envkey) == "gray" {
|
2020-04-28 14:32:56 +08:00
|
|
|
dsn = "http://es-cn-0pp1mm3hq000dnbh4.elasticsearch.aliyuncs.com:9200/"
|
2020-04-27 21:26:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
c := EsConfig{
|
2020-04-28 14:32:56 +08:00
|
|
|
Username: "elastic",
|
|
|
|
Password: "Hellogaore@",
|
|
|
|
Dsn: dsn,
|
|
|
|
Level: level,
|
|
|
|
Index: os.Getenv("GRLOG_APP_NAME"),
|
2020-04-27 21:26:13 +08:00
|
|
|
}
|
2020-04-28 14:32:56 +08:00
|
|
|
|
2020-04-27 21:26:13 +08:00
|
|
|
return l.SetLogger(logs.AdapterEs, c.String())
|
|
|
|
},
|
2020-05-04 21:10:20 +08:00
|
|
|
|
|
|
|
AdapterAliLs: func(l *Logger, level Level) error {
|
|
|
|
|
2020-05-05 16:10:42 +08:00
|
|
|
var project string = "gaore-app-logstore"
|
|
|
|
var endpoint string
|
|
|
|
|
|
|
|
if os.Getenv(envkey) == "prod" || os.Getenv(envkey) == "" || os.Getenv(envkey) == "gray" {
|
|
|
|
endpoint = project + ".cn-shenzhen-intranet.log.aliyuncs.com"
|
|
|
|
} else if os.Getenv(envkey) == "dev" {
|
|
|
|
endpoint = project + ".cn-shenzhen.log.aliyuncs.com"
|
|
|
|
}
|
|
|
|
|
2020-05-04 21:10:20 +08:00
|
|
|
c := AliLSConfig{
|
2020-05-05 16:10:42 +08:00
|
|
|
Project: project,
|
|
|
|
Endpoint: endpoint,
|
2020-05-04 21:10:20 +08:00
|
|
|
KeyID: "LTAI4GCHwcqtrFD4DHRHxR4k",
|
|
|
|
KeySecret: "Ln19xfVYy6OMlJeF9aBvFl4fhRUKBl",
|
|
|
|
LogStore: "gaore-app-logstore",
|
2020-05-05 16:10:42 +08:00
|
|
|
Topics: []string{os.Getenv("GRLOG_APP_NAME")},
|
2020-05-04 21:10:20 +08:00
|
|
|
Source: "",
|
|
|
|
Level: level,
|
|
|
|
FlushWhen: 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
return l.SetLogger(logs.AdapterAliLS, c.String())
|
|
|
|
},
|
2020-04-27 21:26:13 +08:00
|
|
|
}
|