Initial commit

This commit is contained in:
Cruise Zhao
2020-04-06 19:57:19 +08:00
commit 2fc86fd0a1
42 changed files with 4056 additions and 0 deletions

14
metric/alert.go Normal file
View File

@@ -0,0 +1,14 @@
package metric
import (
"sync"
"github.com/prometheus/client_golang/prometheus"
)
var singletonCounter prometheus.Counter
var once sync.Once
func SingletonCounter() {
}