1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
testing.go 448 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ikhtiyor 提交于 2018-01-10 02:32 . [Metricbeat] new uWSGI module (#6006)
package uwsgi
import "os"
// GetEnvTCPServer returns uwsgi stat server host with tcp mode
func GetEnvTCPServer() string {
env := os.Getenv("UWSGI_STAT_TCP_SERVER")
if len(env) == 0 {
env = "tcp://127.0.0.1:9191"
}
return env
}
// GetEnvHTTPServer returns uwsgi stat server host with http mode
func GetEnvHTTPServer() string {
env := os.Getenv("UWSGI_STAT_HTTP_SERVER")
if len(env) == 0 {
env = "http://127.0.0.1:9192"
}
return env
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.2.0

搜索帮助