Live: improved channel state (#27672)

This commit is contained in:
Ryan McKinley
2020-09-23 08:02:01 -07:00
committed by GitHub
parent 83050b9ccc
commit 93a01eb1d9
13 changed files with 914 additions and 218 deletions
+2 -2
View File
@@ -86,8 +86,8 @@ func (hs *HTTPServer) Init() error {
hs.Live = node
// Spit random walk to example
go live.RunRandomCSV(hs.Live, "random-2s-stream", 2000, 0)
go live.RunRandomCSV(hs.Live, "random-flakey-stream", 400, .6)
go live.RunRandomCSV(hs.Live, "grafana/testdata/random-2s-stream", 2000, 0)
go live.RunRandomCSV(hs.Live, "grafana/testdata/random-flakey-stream", 400, .6)
}
hs.macaron = hs.newMacaron()