Skip to content

Commit

Permalink
fix(7.10): chamilad#7
Browse files Browse the repository at this point in the history
  • Loading branch information
faust64 committed Feb 8, 2021
1 parent 8fa079c commit ee13071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporter/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type KibanaMetrics struct {
// provided by the KibanaCollector struct, and return the metrics as a
// KibanaMetrics representation.
func (c *KibanaCollector) scrape() (error, *KibanaMetrics) {
req, err := http.NewRequest(http.MethodGet, fmt.Sprintf("%s/api/status?extended", c.url), nil)
req, err := http.NewRequest(http.MethodGet, fmt.Sprintf("%s/api/status", c.url), nil)
if err != nil {
return errors.New(fmt.Sprintf("could not initialize a request to scrape metrics: %s", err)), nil
}
Expand Down

0 comments on commit ee13071

Please sign in to comment.