tebakaja's picture
feat: add node exporter proxy feature
d3c13b7
raw
history blame
302 Bytes
package exporter
import "context"
type ExporterService interface {
ExporterMetricsService(ctx context.Context) (string, error)
// ExporterVersionInfoService(ctx context.Context) (string, error)
// ExporterHealthCheckService(ctx context.Context) (string, error)
}
type ExporterServiceImpl struct{}