Documentation ¶
Index ¶
- Constants
- Variables
- func DuPaths() []string
- func Hostname() (string, error)
- func IP() string
- func InitLocalIps()
- func InitLog()
- func InitRootDir()
- func InitRpcClients()
- func IsTrustable(remoteAddr string) bool
- func Logger() *log.Logger
- func ParseConfig(cfg string)
- func ReportPorts() []int64
- func ReportProcs() map[string]map[int]string
- func ReportUrls() map[string]string
- func SendMetrics(metrics []*model.MetricValue, resp *model.TransferResponse)
- func SendToTransfer(metrics []*model.MetricValue)
- func SetDuPaths(paths []string)
- func SetReportPorts(ports []int64)
- func SetReportProcs(procs map[string]map[int]string)
- func SetReportUrls(urls map[string]string)
- func SetTrustableIps(ipStr string)
- func TrustableIps() []string
- type CollectorConfig
- type GlobalConfig
- type HeartbeatConfig
- type HttpConfig
- type IIsConfig
- type MsSQLConfig
- type SingleConnRpcClient
- type TransferConfig
Constants ¶
View Source
const ( VERSION = "1.0.1" COLLECT_INTERVAL = time.Second NET_PORT_LISTEN = "net.port.listen" DU_BS = "du.bs" PROC_NUM = "proc.num" )
changelog: 1.0.0 windows-agent 1.0.1 ifstat use ifname instead ifdescription
Variables ¶
View Source
var ( TransferClientsLock *sync.RWMutex = new(sync.RWMutex) TransferClients map[string]*SingleConnRpcClient = map[string]*SingleConnRpcClient{} )
View Source
var (
ConfigFile string
)
View Source
var LocalIps []string
View Source
var (
Root string
)
Functions ¶
func InitLocalIps ¶
func InitLocalIps()
func InitRootDir ¶
func InitRootDir()
func InitRpcClients ¶
func InitRpcClients()
func IsTrustable ¶
func ParseConfig ¶
func ParseConfig(cfg string)
func ReportPorts ¶
func ReportPorts() []int64
func ReportProcs ¶
func ReportUrls ¶
func SendMetrics ¶
func SendMetrics(metrics []*model.MetricValue, resp *model.TransferResponse)
func SendToTransfer ¶
func SendToTransfer(metrics []*model.MetricValue)
func SetDuPaths ¶
func SetDuPaths(paths []string)
func SetReportPorts ¶
func SetReportPorts(ports []int64)
func SetReportProcs ¶
func SetReportUrls ¶
func SetTrustableIps ¶
func SetTrustableIps(ipStr string)
func TrustableIps ¶
func TrustableIps() []string
Types ¶
type CollectorConfig ¶
type CollectorConfig struct {
IfacePrefix []string `json:"ifacePrefix"`
}
type GlobalConfig ¶
type GlobalConfig struct { Debug bool `json:"debug"` Hostname string `json:"hostname"` IP string `json:"ip"` IIs *IIsConfig `json:"iis"` MsSQL *MsSQLConfig `json:"mssql"` Logfile string `json:"logfile"` Heartbeat *HeartbeatConfig `json:"heartbeat"` Transfer *TransferConfig `json:"transfer"` Http *HttpConfig `json:"http"` Collector *CollectorConfig `json:"collector"` IgnoreMetrics map[string]bool `json:"ignore"` }
func Config ¶
func Config() *GlobalConfig
type HeartbeatConfig ¶
type HttpConfig ¶
type MsSQLConfig ¶
type SingleConnRpcClient ¶
type SingleConnRpcClient struct { sync.Mutex RpcServer string Timeout time.Duration // contains filtered or unexported fields }
var (
HbsClient *SingleConnRpcClient
)
func (*SingleConnRpcClient) Call ¶
func (this *SingleConnRpcClient) Call(method string, args interface{}, reply interface{}) error
Click to show internal directories.
Click to hide internal directories.