1234567891011121314151617181920 |
- package elastic
- import (
- "fmt"
- )
- const (
- ES_URL = "http://es-cn-nif227b580019rgw6.public.elasticsearch.aliyuncs.com:9200"
- ES_USERNAME = "elastic"
- ES_PASSWORD = "hongze@2021"
-
-
- )
- type tracelog struct{}
- func (tracelog) Printf(format string, v ...interface{}) {
- fmt.Printf(format, v...)
- }
|