Experimental feature: elastic exporter (#713)

This commit is contained in:
Igor Gov
2022-01-30 09:22:13 +02:00
committed by GitHub
parent 5536e5bb44
commit 0f3dd66d2d
9 changed files with 141 additions and 3 deletions

View File

@@ -43,6 +43,13 @@ type MizuAgentConfig struct {
StandaloneMode bool `json:"standaloneMode"`
ServiceMap bool `json:"serviceMap"`
OAS bool `json:"oas"`
Elastic ElasticConfig `json:"elastic"`
}
type ElasticConfig struct {
User string `yaml:"user,omitempty" default:"" readonly:""`
Password string `yaml:"password,omitempty" default:"" readonly:""`
Url string `yaml:"url,omitempty" default:"" readonly:""`
}
type WebSocketMessageMetadata struct {