Merge pull request #12814 from slashpai/puppetdb

PUPPETDB SD: Validate HTTP config
This commit is contained in:
Julien Pivotto 2023-09-08 15:00:21 +02:00 committed by GitHub
commit 738e0dbaf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View file

@ -1829,6 +1829,10 @@ var expectedErrors = []struct {
filename: "puppetdb_no_scheme.bad.yml", filename: "puppetdb_no_scheme.bad.yml",
errMsg: "URL scheme must be 'http' or 'https'", errMsg: "URL scheme must be 'http' or 'https'",
}, },
{
filename: "puppetdb_token_file.bad.yml",
errMsg: "at most one of bearer_token & bearer_token_file must be configured",
},
{ {
filename: "hetzner_role.bad.yml", filename: "hetzner_role.bad.yml",
errMsg: "unknown role", errMsg: "unknown role",

View file

@ -0,0 +1,7 @@
scrape_configs:
- job_name: puppetdb
puppetdb_sd_configs:
- url: http://puppet
query: 'resources { type = "Package" and title = "httpd" }'
bearer_token: foo
bearer_token_file: foo

View file

@ -115,7 +115,7 @@ func (c *SDConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
if c.Query == "" { if c.Query == "" {
return fmt.Errorf("query missing") return fmt.Errorf("query missing")
} }
return nil return c.HTTPClientConfig.Validate()
} }
// Discovery provides service discovery functionality based // Discovery provides service discovery functionality based