36 Star 396 Fork 71

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
wrap.go 6.44 KB
一键复制 编辑 原始数据 按行查看 历史
Aiwantaozi 提交于 2018-06-13 13:16 . add logging ssl
package utils
import (
"fmt"
"net"
"net/url"
"strings"
"time"
"github.com/pkg/errors"
"github.com/rancher/types/apis/management.cattle.io/v3"
loggingconfig "github.com/rancher/rancher/pkg/controllers/user/logging/config"
)
type WrapLogging struct {
CurrentTarget string
WrapSyslog
WrapSplunk
WrapElasticsearch
WrapKafka
}
type WrapClusterLogging struct {
v3.ClusterLoggingSpec
WrapEmbedded
WrapLogging
}
type WrapProjectLogging struct {
v3.ProjectLoggingSpec
GrepNamespace string
WrapLogging
WrapProjectName string
}
type WrapEmbedded struct {
DateFormat string
}
type WrapElasticsearch struct {
DateFormat string
Host string
Scheme string
}
type WrapSplunk struct {
Host string
Port string
Scheme string
}
type WrapKafka struct {
Brokers string
Zookeeper string
}
type WrapSyslog struct {
Host string
Port string
}
func (w *WrapClusterLogging) Validate() error {
_, _, err := GetWrapConfig(w.ElasticsearchConfig, w.SplunkConfig, w.SyslogConfig, w.KafkaConfig, w.EmbeddedConfig)
return err
}
func (w *WrapProjectLogging) Validate() error {
_, _, err := GetWrapConfig(w.ElasticsearchConfig, w.SplunkConfig, w.SyslogConfig, w.KafkaConfig, nil)
return err
}
func ToWrapClusterLogging(clusterLogging v3.ClusterLoggingSpec) (*WrapClusterLogging, error) {
wp := WrapClusterLogging{
ClusterLoggingSpec: clusterLogging,
}
wrapLogging, wem, err := GetWrapConfig(clusterLogging.ElasticsearchConfig, clusterLogging.SplunkConfig, clusterLogging.SyslogConfig, clusterLogging.KafkaConfig, clusterLogging.EmbeddedConfig)
if err != nil {
return nil, err
}
wp.WrapLogging = wrapLogging
wp.WrapEmbedded = wem
return &wp, nil
}
func ToWrapProjectLogging(grepNamespace string, projectLogging v3.ProjectLoggingSpec) (*WrapProjectLogging, error) {
wp := WrapProjectLogging{
ProjectLoggingSpec: projectLogging,
GrepNamespace: grepNamespace,
WrapProjectName: strings.Replace(projectLogging.ProjectName, ":", "_", -1),
}
wrapLogging, _, err := GetWrapConfig(projectLogging.ElasticsearchConfig, projectLogging.SplunkConfig, projectLogging.SyslogConfig, projectLogging.KafkaConfig, nil)
if err != nil {
return nil, err
}
wp.WrapLogging = wrapLogging
return &wp, nil
}
func GetWrapConfig(es *v3.ElasticsearchConfig, sp *v3.SplunkConfig, sl *v3.SyslogConfig, kf *v3.KafkaConfig, em *v3.EmbeddedConfig) (wrapLogging WrapLogging, wem WrapEmbedded, err error) {
if es != nil {
var h, s string
h, s, err = parseEndpoint(es.Endpoint)
if err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
wrapLogging.WrapElasticsearch = WrapElasticsearch{
Host: h,
Scheme: s,
DateFormat: getDateFormat(es.DateFormat),
}
wrapLogging.CurrentTarget = loggingconfig.Elasticsearch
}
if sp != nil {
var h, s, host, port string
h, s, err = parseEndpoint(sp.Endpoint)
if err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
host, port, err = net.SplitHostPort(h)
if err != nil {
return
}
wrapLogging.WrapSplunk = WrapSplunk{
Host: host,
Port: port,
Scheme: s,
}
wrapLogging.CurrentTarget = loggingconfig.Splunk
}
if sl != nil {
err = testReachable(sl.Protocol, sl.Endpoint)
if err != nil {
return
}
var host, port string
host, port, err = net.SplitHostPort(sl.Endpoint)
if err != nil {
return
}
wrapLogging.WrapSyslog = WrapSyslog{
Host: host,
Port: port,
}
wrapLogging.CurrentTarget = loggingconfig.Syslog
}
if kf != nil {
if len(kf.BrokerEndpoints) == 0 && kf.ZookeeperEndpoint == "" {
err = errors.New("one of the kafka endpoint must be set")
return
}
if len(kf.BrokerEndpoints) != 0 {
var bs []string
var h string
for _, v := range kf.BrokerEndpoints {
h, _, err = parseEndpoint(v)
if err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
bs = append(bs, h)
}
wrapLogging.WrapKafka = WrapKafka{
Brokers: strings.Join(bs, ","),
}
} else {
if kf.ZookeeperEndpoint != "" {
var h string
if h, _, err = parseEndpoint(kf.ZookeeperEndpoint); err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
wrapLogging.WrapKafka = WrapKafka{
Zookeeper: h,
}
}
}
wrapLogging.CurrentTarget = loggingconfig.Kafka
}
if em != nil {
if em.LimitsCPU != 0 && em.LimitsCPU < em.RequestsCPU {
err = fmt.Errorf("limits cpu %d is less than request cpu %d", em.LimitsCPU, em.RequestsCPU)
return
}
if em.LimitsMemery != 0 && em.LimitsMemery < em.RequestsMemery {
err = fmt.Errorf("limits memory %d is less than request memory %d", em.LimitsMemery, em.RequestsMemery)
return
}
wem = WrapEmbedded{
DateFormat: getDateFormat(em.DateFormat),
}
wrapLogging.CurrentTarget = loggingconfig.Embedded
}
return
}
func parseEndpoint(endpoint string) (host string, scheme string, err error) {
u, err := url.ParseRequestURI(endpoint)
if err != nil {
return "", "", errors.Wrapf(err, "invalid endpoint %s", endpoint)
}
if u.Host == "" || u.Scheme == "" {
return "", "", fmt.Errorf("invalid endpoint %s, empty host or schema", endpoint)
}
return u.Host, u.Scheme, nil
}
func getDateFormat(dateformat string) string {
ToRealMap := map[string]string{
"YYYY-MM-DD": "%Y-%m-%d",
"YYYY-MM": "%Y-%m",
"YYYY": "%Y",
}
if _, ok := ToRealMap[dateformat]; ok {
return ToRealMap[dateformat]
}
return "%Y-%m-%d"
}
func testReachable(network string, url string) error {
timeout := time.Duration(10 * time.Second)
conn, err := net.DialTimeout(network, url, timeout)
if err != nil {
return fmt.Errorf("url %s unreachable, error: %v", url, err)
}
conn.Close()
return nil
}
func GetClusterTarget(spec v3.ClusterLoggingSpec) string {
if spec.EmbeddedConfig != nil {
return loggingconfig.Embedded
} else if spec.ElasticsearchConfig != nil {
return loggingconfig.Elasticsearch
} else if spec.SplunkConfig != nil {
return loggingconfig.Splunk
} else if spec.KafkaConfig != nil {
return loggingconfig.Kafka
} else if spec.SyslogConfig != nil {
return loggingconfig.Syslog
}
return "none"
}
func GetProjectTarget(spec v3.ProjectLoggingSpec) string {
if spec.ElasticsearchConfig != nil {
return loggingconfig.Elasticsearch
} else if spec.SplunkConfig != nil {
return loggingconfig.Splunk
} else if spec.KafkaConfig != nil {
return loggingconfig.Kafka
} else if spec.SyslogConfig != nil {
return loggingconfig.Syslog
}
return "none"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.0.7-rc6

搜索帮助

344bd9b3 5694891 D2dac590 5694891