mirror of
https://github.com/openziti/zrok.git
synced 2025-06-30 14:30:30 +02:00
metrics infrastructure (#128)
This commit is contained in:
17
controller/metrics/websocketSource.go
Normal file
17
controller/metrics/websocketSource.go
Normal file
@ -0,0 +1,17 @@
|
||||
package metrics
|
||||
|
||||
import "github.com/michaelquigley/cf"
|
||||
|
||||
type WebsocketSourceConfig struct {
|
||||
WebsocketEndpoint string
|
||||
}
|
||||
|
||||
func loadWebsocketSourceConfig(v interface{}, opts *cf.Options) (interface{}, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
type websocketSource struct{}
|
||||
|
||||
func (s *websocketSource) Start() (chan struct{}, error) {
|
||||
return nil, nil
|
||||
}
|
Reference in New Issue
Block a user