mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 12:47:36 +08:00
129 lines
3.1 KiB
Go
129 lines
3.1 KiB
Go
|
|
||
|
// RAINBOND, Application Management Platform
|
||
|
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
|
||
|
|
||
|
// This program is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU General Public License as published by
|
||
|
// the Free Software Foundation, either version 3 of the License, or
|
||
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
||
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
||
|
// must be obtained first.
|
||
|
|
||
|
// This program is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU General Public License for more details.
|
||
|
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
package conf
|
||
|
|
||
|
type Conf struct {
|
||
|
Entry EntryConf
|
||
|
EventStore EventStoreConf
|
||
|
Log LogConf
|
||
|
WebSocket WebSocketConf
|
||
|
WebHook WebHookConf
|
||
|
ClusterMode bool
|
||
|
Cluster ClusterConf
|
||
|
Kubernetes KubernetsConf
|
||
|
}
|
||
|
type WebHookConf struct {
|
||
|
ConsoleURL string
|
||
|
ConsoleToken string
|
||
|
}
|
||
|
type DBConf struct {
|
||
|
Type string
|
||
|
URL string
|
||
|
PoolSize int
|
||
|
PoolMaxSize int
|
||
|
HomePath string
|
||
|
}
|
||
|
|
||
|
type WebSocketConf struct {
|
||
|
BindIP string
|
||
|
BindPort int
|
||
|
SSLBindPort int
|
||
|
EnableCompression bool
|
||
|
ReadBufferSize int
|
||
|
WriteBufferSize int
|
||
|
MaxRestartCount int
|
||
|
TimeOut string
|
||
|
SSL bool
|
||
|
CertFile string
|
||
|
KeyFile string
|
||
|
PrometheusMetricPath string
|
||
|
}
|
||
|
|
||
|
type LogConf struct {
|
||
|
LogLevel string
|
||
|
LogOutType string
|
||
|
LogPath string
|
||
|
}
|
||
|
|
||
|
type EntryConf struct {
|
||
|
EventLogServer EventLogServerConf
|
||
|
DockerLogServer DockerLogServerConf
|
||
|
MonitorMessageServer MonitorMessageServerConf
|
||
|
}
|
||
|
|
||
|
type EventLogServerConf struct {
|
||
|
BindIP string
|
||
|
BindPort int
|
||
|
CacheMessageSize int
|
||
|
}
|
||
|
|
||
|
type DockerLogServerConf struct {
|
||
|
BindIP string
|
||
|
BindPort int
|
||
|
CacheMessageSize int
|
||
|
Mode string
|
||
|
}
|
||
|
|
||
|
type DiscoverConf struct {
|
||
|
Type string
|
||
|
EtcdAddr []string
|
||
|
EtcdUser string
|
||
|
EtcdPass string
|
||
|
ClusterMode bool
|
||
|
InstanceIP string
|
||
|
HomePath string
|
||
|
DockerLogPort int
|
||
|
WebPort int
|
||
|
}
|
||
|
|
||
|
type PubSubConf struct {
|
||
|
PubBindIP string
|
||
|
PubBindPort int
|
||
|
ClusterMode bool
|
||
|
}
|
||
|
|
||
|
type EventStoreConf struct {
|
||
|
EventLogPersistenceLength int64
|
||
|
MessageType string
|
||
|
GarbageMessageSaveType string
|
||
|
GarbageMessageFile string
|
||
|
PeerEventMaxLogNumber int64 //每个event最多日志条数。
|
||
|
PeerEventMaxCacheLogNumber int
|
||
|
PeerDockerMaxCacheLogNumber int64
|
||
|
ClusterMode bool
|
||
|
HandleMessageCoreNumber int
|
||
|
HandleSubMessageCoreNumber int
|
||
|
HandleDockerLogCoreNumber int
|
||
|
DB DBConf
|
||
|
}
|
||
|
type KubernetsConf struct {
|
||
|
Master string
|
||
|
}
|
||
|
type ClusterConf struct {
|
||
|
PubSub PubSubConf
|
||
|
Discover DiscoverConf
|
||
|
}
|
||
|
|
||
|
type MonitorMessageServerConf struct {
|
||
|
SubAddress []string
|
||
|
SubSubscribe string
|
||
|
CacheMessageSize int
|
||
|
}
|