mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-02 08:31:11 -08:00
Merge pull request #2093 from dominikschulz/spelling
Trivial spelling corrections
This commit is contained in:
commit
d93f73874f
|
@ -899,6 +899,7 @@ type EC2SDConfig struct {
|
||||||
SecretKey string `yaml:"secret_key,omitempty"`
|
SecretKey string `yaml:"secret_key,omitempty"`
|
||||||
RefreshInterval model.Duration `yaml:"refresh_interval,omitempty"`
|
RefreshInterval model.Duration `yaml:"refresh_interval,omitempty"`
|
||||||
Port int `yaml:"port"`
|
Port int `yaml:"port"`
|
||||||
|
|
||||||
// Catches all undefined fields and must be empty after parsing.
|
// Catches all undefined fields and must be empty after parsing.
|
||||||
XXX map[string]interface{} `yaml:",inline"`
|
XXX map[string]interface{} `yaml:",inline"`
|
||||||
}
|
}
|
||||||
|
@ -928,6 +929,7 @@ type AzureSDConfig struct {
|
||||||
ClientID string `yaml:"client_id,omitempty"`
|
ClientID string `yaml:"client_id,omitempty"`
|
||||||
ClientSecret string `yaml:"client_secret,omitempty"`
|
ClientSecret string `yaml:"client_secret,omitempty"`
|
||||||
RefreshInterval model.Duration `yaml:"refresh_interval,omitempty"`
|
RefreshInterval model.Duration `yaml:"refresh_interval,omitempty"`
|
||||||
|
|
||||||
// Catches all undefined fields and must be empty after parsing.
|
// Catches all undefined fields and must be empty after parsing.
|
||||||
XXX map[string]interface{} `yaml:",inline"`
|
XXX map[string]interface{} `yaml:",inline"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -360,7 +360,7 @@ func TestLoadConfig(t *testing.T) {
|
||||||
// Parse a valid file that sets a global scrape timeout. This tests whether parsing
|
// Parse a valid file that sets a global scrape timeout. This tests whether parsing
|
||||||
// an overwritten default field in the global config permanently changes the default.
|
// an overwritten default field in the global config permanently changes the default.
|
||||||
if _, err := LoadFile("testdata/global_timeout.good.yml"); err != nil {
|
if _, err := LoadFile("testdata/global_timeout.good.yml"); err != nil {
|
||||||
t.Errorf("Error parsing %s: %s", "testdata/conf.good.yml", err)
|
t.Errorf("Error parsing %s: %s", "testdata/global_timeout.good.yml", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
c, err := LoadFile("testdata/conf.good.yml")
|
c, err := LoadFile("testdata/conf.good.yml")
|
||||||
|
|
|
@ -290,6 +290,7 @@ func (n *Notifier) sendAll(alerts ...*model.Alert) int {
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
// Any HTTP status 2xx is OK.
|
||||||
if resp.StatusCode/100 != 2 {
|
if resp.StatusCode/100 != 2 {
|
||||||
return fmt.Errorf("bad response status %v", resp.Status)
|
return fmt.Errorf("bad response status %v", resp.Status)
|
||||||
}
|
}
|
||||||
|
|
|
@ -518,7 +518,7 @@ func (c *varbitChunk) addSecondSample(s model.SamplePair) ([]Chunk, error) {
|
||||||
return []Chunk{c}, nil
|
return []Chunk{c}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// addLastSample isa a helper method only used by c.add() and in other helper
|
// addLastSample is a helper method only used by c.add() and in other helper
|
||||||
// methods called by c.add(). It simply sets the given sample as the last sample
|
// methods called by c.add(). It simply sets the given sample as the last sample
|
||||||
// in the heador and declares the chunk closed. In other words, addLastSample
|
// in the heador and declares the chunk closed. In other words, addLastSample
|
||||||
// adds the very last sample added to this chunk ever, while setLastSample sets
|
// adds the very last sample added to this chunk ever, while setLastSample sets
|
||||||
|
|
Loading…
Reference in a new issue