github.com/netdata/go.d.plugin@v0.58.1/pkg/web/web.go (about)

     1  // SPDX-License-Identifier: GPL-3.0-or-later
     2  
     3  package web
     4  
     5  // HTTP is a struct with embedded Request and Client.
     6  // This structure intended to be part of the module configuration.
     7  // Supported configuration file formats: YAML.
     8  type HTTP struct {
     9  	Request `yaml:",inline"`
    10  	Client  `yaml:",inline"`
    11  }