tracker/stats/stats.go

185 lines
3.6 KiB
Go
Raw Normal View History

// Copyright 2014 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
// Package stats implements a means of tracking processing statistics for a
// BitTorrent tracker.
package stats
import "time"
const (
Announce = iota
Scrape
2014-07-21 17:42:05 +02:00
CompletedIPv4
NewLeechIPv4
DeletedLeechIPv4
ReapedLeechIPv4
NewSeedIPv4
DeletedSeedIPv4
ReapedSeedIPv4
CompletedIPv6
NewLeechIPv6
DeletedLeechIPv6
ReapedLeechIPv6
NewSeedIPv6
DeletedSeedIPv6
ReapedSeedIPv6
NewTorrent
DeletedTorrent
2014-07-21 17:42:05 +02:00
ReapedTorrent
AcceptedConnection
ClosedConnection
HandledRequest
ErroredRequest
)
2014-07-22 01:08:08 +02:00
// DefaultStats is a default instance of stats tracking that uses an unbuffered
// channel for broadcasting events.
var DefaultStats *Stats
func init() {
DefaultStats = New(0)
}
2014-07-21 17:42:05 +02:00
type PeerStats struct {
// Stats for all peers.
2014-07-22 07:12:41 +02:00
Completed uint64 `json:"completed"`
Joined uint64 `json:"joined"`
Left uint64 `json:"left"`
Reaped uint64 `json:"reaped"`
2014-07-21 17:42:05 +02:00
// Stats for seeds only (subset of total).
2014-07-22 07:12:41 +02:00
SeedsJoined uint64 `json:"seeds_joined"`
SeedsLeft uint64 `json:"seeds_left"`
SeedsReaped uint64 `json:"seeds_reaped"`
2014-07-21 17:42:05 +02:00
}
type Stats struct {
2014-07-22 07:12:41 +02:00
Start time.Time `json:"time"`
2014-07-21 17:42:05 +02:00
2014-07-22 07:12:41 +02:00
Announces uint64 `json:"announces"`
Scrapes uint64 `json:"scrapes"`
2014-07-21 17:42:05 +02:00
2014-07-22 07:12:41 +02:00
IPv4Peers PeerStats `json:"ipv4_peers"`
IPv6Peers PeerStats `json:"ipv6_peers"`
2014-07-21 17:42:05 +02:00
2014-07-22 07:12:41 +02:00
TorrentsAdded uint64 `json:"torrents_added"`
TorrentsRemoved uint64 `json:"torrents_removed"`
TorrentsReaped uint64 `json:"torrents_reaped"`
2014-07-21 17:42:05 +02:00
2014-07-22 07:12:41 +02:00
ActiveConnections uint64 `json:"active_connections"`
ConnectionsAccepted uint64 `json:"connections_accepted"`
BytesTransmitted uint64 `json:"bytes_transmitted"`
2014-07-21 17:42:05 +02:00
2014-07-22 07:12:41 +02:00
RequestsHandled uint64 `json:"requests_handled"`
RequestsErrored uint64 `json:"requests_errored"`
events chan int
}
func New(chanSize int) *Stats {
s := &Stats{
Start: time.Now(),
events: make(chan int, chanSize),
}
go s.handleEvents()
return s
}
func (s *Stats) Close() {
close(s.events)
}
func (s *Stats) Uptime() time.Duration {
return time.Since(s.Start)
}
func (s *Stats) RecordEvent(event int) {
s.events <- event
}
func (s *Stats) handleEvents() {
for event := range s.events {
switch event {
case Announce:
s.Announces++
case Scrape:
s.Scrapes++
2014-07-21 17:42:05 +02:00
case CompletedIPv4:
s.IPv4Peers.Completed++
case NewLeechIPv4:
s.IPv4Peers.Joined++
case DeletedLeechIPv4:
s.IPv4Peers.Left++
case ReapedLeechIPv4:
s.IPv4Peers.Reaped++
2014-07-21 17:42:05 +02:00
case NewSeedIPv4:
s.IPv4Peers.SeedsJoined++
s.IPv4Peers.Joined++
2014-07-21 17:42:05 +02:00
case DeletedSeedIPv4:
s.IPv4Peers.SeedsLeft++
s.IPv4Peers.Left++
2014-07-21 17:42:05 +02:00
case ReapedSeedIPv4:
s.IPv4Peers.SeedsReaped++
s.IPv4Peers.Reaped++
2014-07-21 17:42:05 +02:00
case CompletedIPv6:
s.IPv6Peers.Completed++
case NewLeechIPv6:
s.IPv6Peers.Joined++
case DeletedLeechIPv6:
s.IPv6Peers.Left++
case ReapedLeechIPv6:
s.IPv6Peers.Reaped++
2014-07-21 17:42:05 +02:00
case NewSeedIPv6:
s.IPv6Peers.SeedsJoined++
s.IPv6Peers.Joined++
2014-07-21 17:42:05 +02:00
case DeletedSeedIPv6:
s.IPv6Peers.SeedsLeft++
s.IPv6Peers.Left++
2014-07-21 17:42:05 +02:00
case ReapedSeedIPv6:
s.IPv6Peers.SeedsReaped++
s.IPv6Peers.Reaped++
2014-07-21 17:42:05 +02:00
case NewTorrent:
s.TorrentsAdded++
case DeletedTorrent:
s.TorrentsRemoved++
case ReapedTorrent:
s.TorrentsReaped++
2014-07-21 17:42:05 +02:00
case AcceptedConnection:
s.ConnectionsAccepted++
s.ActiveConnections++
2014-07-21 17:42:05 +02:00
case ClosedConnection:
s.ActiveConnections--
2014-07-21 17:42:05 +02:00
case HandledRequest:
s.RequestsHandled++
2014-07-21 17:42:05 +02:00
case ErroredRequest:
s.RequestsErrored++
default:
panic("stats: RecordEvent called with an unknown event")
}
}
}
2014-07-22 01:08:08 +02:00
// RecordEvent broadcasts an event to the default stats tracking.
func RecordEvent(event int) {
DefaultStats.RecordEvent(event)
}