mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-16 10:25:12 +01:00
11 lines
194 B
Go
11 lines
194 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"github.com/prometheus/client_golang/prometheus"
|
||
|
)
|
||
|
|
||
|
type routerOSCollector interface {
|
||
|
describe(ch chan<- *prometheus.Desc)
|
||
|
collect(ctx *collectorContext) error
|
||
|
}
|