1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-02 17:18:31 +00:00

Add Health to /stats, add irc reconnect

This commit is contained in:
Kane York 2016-06-02 08:16:16 -07:00
parent 88b356177a
commit d49c88a222
4 changed files with 63 additions and 9 deletions

View file

@ -37,7 +37,11 @@ var serverID int
var messageBufferPool sync.Pool
var lastBackendSuccess map[string]time.Time
func setupBackend(config *ConfigFile) {
serverID = config.ServerID
backendHTTPClient.Timeout = 60 * time.Second
backendURL = config.BackendURL
if responseCache != nil {
@ -48,13 +52,20 @@ func setupBackend(config *ConfigFile) {
announceStartupURL = fmt.Sprintf("%s%s", backendURL, bPathAnnounceStartup)
addTopicURL = fmt.Sprintf("%s%s", backendURL, bPathAddTopic)
postStatisticsURL = fmt.Sprintf("%s%s", backendURL, bPathAggStats)
epochTime := time.Unix(0, 0)
lastBackendSuccess = map[string]time.Time{
bPathAnnounceStartup: epochTime,
bPathAddTopic: epochTime,
bPathAggStats: epochTime,
bPathOtherCommand: epochTime,
}
Statistics.Health.Backend = lastBackendSuccess
messageBufferPool.New = New4KByteBuffer
var theirPublic, ourPrivate [32]byte
copy(theirPublic[:], config.BackendPublicKey)
copy(ourPrivate[:], config.OurPrivateKey)
serverID = config.ServerID
box.Precompute(&backendSharedKey, &theirPublic, &ourPrivate)
}
@ -197,6 +208,8 @@ func SendRemoteCommand(remoteCommand, data string, auth AuthInfo) (responseStr s
responseCache.Set(getCacheKey(remoteCommand, data), responseStr, duration)
}
lastBackendSuccess[bPathOtherCommand] = time.Now()
return
}
@ -211,6 +224,8 @@ func SendAggregatedData(sealedForm url.Values) error {
return httpError(resp.StatusCode)
}
lastBackendSuccess[bPathAggStats] = time.Now()
return resp.Body.Close()
}
@ -271,6 +286,8 @@ func sendTopicNotice(topic string, added bool) error {
return ErrBackendNotOK{Code: resp.StatusCode, Response: respStr}
}
lastBackendSuccess[bPathAddTopic] = time.Now()
return nil
}