Skip to content
Snippets Groups Projects
Unverified Commit a55456b5 authored by Daniel Nelson's avatar Daniel Nelson
Browse files

Check parser initialization earlier

parent 6c656d92
No related branches found
No related tags found
No related merge requests found
...@@ -88,6 +88,10 @@ func (*HTTP) Description() string { ...@@ -88,6 +88,10 @@ func (*HTTP) Description() string {
// Gather takes in an accumulator and adds the metrics that the Input // Gather takes in an accumulator and adds the metrics that the Input
// gathers. This is called every "interval" // gathers. This is called every "interval"
func (h *HTTP) Gather(acc telegraf.Accumulator) error { func (h *HTTP) Gather(acc telegraf.Accumulator) error {
if h.parser == nil {
return errors.New("Parser is not set")
}
if h.client == nil { if h.client == nil {
tlsCfg, err := internal.GetTLSConfig( tlsCfg, err := internal.GetTLSConfig(
h.SSLCert, h.SSLKey, h.SSLCA, h.InsecureSkipVerify) h.SSLCert, h.SSLKey, h.SSLCA, h.InsecureSkipVerify)
...@@ -170,10 +174,6 @@ func (h *HTTP) gatherURL( ...@@ -170,10 +174,6 @@ func (h *HTTP) gatherURL(
return err return err
} }
if h.parser == nil {
return errors.New("Parser is not set")
}
metrics, err := h.parser.Parse(b) metrics, err := h.parser.Parse(b)
if err != nil { if err != nil {
return err return err
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment