36 Star 396 Fork 71

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
splunk.go 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
Dan Ramich 提交于 2019-06-12 13:38 . goimport linting changes
package utils
import (
"bytes"
"crypto/tls"
"fmt"
"net/http"
"net/url"
"path"
"github.com/pkg/errors"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config/dialer"
)
var (
httpTestData = []byte(`{"event": "` + testMessage + `", "sourcetype": "rancher"}`)
)
type splunkTestWrap struct {
*v3.SplunkConfig
}
func (w *splunkTestWrap) TestReachable(dial dialer.Dialer, includeSendTestLog bool) error {
url, err := url.Parse(w.Endpoint)
if err != nil {
return errors.Wrapf(err, "couldn't parse url %s", w.Endpoint)
}
isTLS := url.Scheme == "https"
var tlsConfig *tls.Config
if isTLS {
tlsConfig, err = buildTLSConfig(w.Certificate, w.ClientCert, w.ClientKey, w.ClientKeyPass, "", url.Hostname(), w.SSLVerify)
if err != nil {
return err
}
}
if !includeSendTestLog {
conn, err := newTCPConn(dial, url.Host, tlsConfig, true)
if err != nil {
return err
}
conn.Close()
return nil
}
url.Path = path.Join(url.Path, "/services/collector")
req, err := http.NewRequest(http.MethodPost, url.String(), bytes.NewReader(httpTestData))
if err != nil {
return errors.Wrap(err, "create request failed")
}
req.Header.Set("Authorization", fmt.Sprintf("Splunk %s", w.Token))
return testReachableHTTP(dial, req, tlsConfig)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.7-rc4

搜索帮助

344bd9b3 5694891 D2dac590 5694891