mirror of
https://github.com/aceld/kis-flow.git
synced 2025-01-22 23:20:24 +08:00
16 lines
204 B
Go
16 lines
204 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/aceld/kis-flow/metrics"
|
|
)
|
|
|
|
func TestPrometheusServer(t *testing.T) {
|
|
|
|
err := metrics.RunMetricsService("0.0.0.0:20004")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|