Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

es_index_name.go 227B

1234567891011
  1. package helpers
  2. import (
  3. "strings"
  4. "time"
  5. )
  6. // 创建索引名(按服务名和日期)
  7. func GetIndexName(serviceName string) string {
  8. return strings.ToLower("log-"+serviceName) + "-" + time.Now().Format("2006-01-02")
  9. }