码迷,mamicode.com
首页 > 其他好文 > 详细

monitor.go

时间:2017-08-31 10:55:28      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:main   bsp   int   nbsp   end   fprintf   info   tar   pac   

package main

import (
    "fmt"
    "net/http"
)

// 查询监控信息的接口
func statsHandler(w http.ResponseWriter, r *http.Request) {
    _str := ""
    for _, v := range BackendSvrs {
        _str += fmt.Sprintf("Server:%s FailTimes:%d isUp:%t\n", v.identify, v.failTimes, v.isLive)
    }
    fmt.Fprintf(w, "%s", _str)
}

// 初始化监控服务地址
func initStats() {
    Log.Infof("Start monitor on addr %s", Config.Stats)

    go func() {
        http.HandleFunc("/stats", statsHandler)
        http.ListenAndServe(Config.Stats, nil)
    }()
}

monitor.go

标签:main   bsp   int   nbsp   end   fprintf   info   tar   pac   

原文地址:http://www.cnblogs.com/zhangboyu/p/7456737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!