141 lines
3.9 KiB
Go
141 lines
3.9 KiB
Go
package main
|
|
|
|
// echo -n "test out the server" | nc localhost 3333
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"math/rand"
|
|
"net"
|
|
"net/http"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/golang/glog"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
)
|
|
|
|
var (
|
|
numCurrentClients int64
|
|
totalClients prometheus.Counter
|
|
totalBytes prometheus.Counter
|
|
totalSeconds prometheus.Counter
|
|
clientIP *prometheus.CounterVec
|
|
clientBytes *prometheus.CounterVec
|
|
clientSeconds *prometheus.CounterVec
|
|
)
|
|
|
|
func main() {
|
|
intervalMs := flag.Int("interval_ms", 1000, "Message millisecond delay")
|
|
bannerMaxLength := flag.Int64("line_length", 32, "Maximum banner line length")
|
|
maxClients := flag.Int64("max_clients", 4096, "Maximum number of clients")
|
|
connType := flag.String("conn_type", "tcp", "Connection type. Possible values are tcp, tcp4, tcp6")
|
|
connHost := flag.String("host", "0.0.0.0", "Listening address")
|
|
connPort := flag.String("port", "2222", "Listening port")
|
|
flag.Usage = func() {
|
|
fmt.Fprintf(flag.CommandLine.Output(), "Usage of %v \n", os.Args[0])
|
|
flag.PrintDefaults()
|
|
}
|
|
flag.Parse()
|
|
|
|
totalClients = prometheus.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "endlessh_total_clients",
|
|
Help: "Total number of clients that tried to connect to this host.",
|
|
},
|
|
)
|
|
totalBytes = prometheus.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "endlessh_total_bytes",
|
|
Help: "Total bytes sent to clients that tried to connect to this host.",
|
|
},
|
|
)
|
|
totalSeconds = prometheus.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "endlessh_total_seconds",
|
|
Help: "Total seconds clients spent on endlessh.",
|
|
},
|
|
)
|
|
clientIP = prometheus.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "endlessh_client_ip_geo",
|
|
Help: "Number of connections of clients.",
|
|
},
|
|
[]string{"ip", "geohash", "location"},
|
|
)
|
|
clientBytes = prometheus.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "endlessh_client_bytes",
|
|
Help: "Number of bytes sent to client.",
|
|
},
|
|
[]string{"ip"},
|
|
)
|
|
clientSeconds = prometheus.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "endlessh_client_seconds",
|
|
Help: "Seconds a client spends on endlessh.",
|
|
},
|
|
[]string{"ip"},
|
|
)
|
|
prometheus.MustRegister(totalClients)
|
|
prometheus.MustRegister(totalBytes)
|
|
prometheus.MustRegister(totalSeconds)
|
|
prometheus.MustRegister(clientIP)
|
|
prometheus.MustRegister(clientBytes)
|
|
prometheus.MustRegister(clientSeconds)
|
|
http.Handle("/metrics", promhttp.Handler())
|
|
|
|
rand.Seed(time.Now().UnixNano())
|
|
interval := time.Duration(*intervalMs) * time.Millisecond
|
|
// Listen for incoming connections.
|
|
if *connType == "tcp6" && *connHost == "0.0.0.0" {
|
|
*connHost = "[::]"
|
|
}
|
|
l, err := net.Listen(*connType, *connHost+":"+*connPort)
|
|
if err != nil {
|
|
glog.Errorf("Error listening: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
// Close the listener when the application closes.
|
|
defer l.Close()
|
|
glog.Infof("Listening on %v:%v", *connHost, *connPort)
|
|
|
|
clients := make(chan *client, *maxClients)
|
|
go func(clients chan *client, interval time.Duration, bannerMaxLength int64) {
|
|
for {
|
|
c, more := <-clients
|
|
if !more {
|
|
return
|
|
}
|
|
if time.Now().Before(c.next) {
|
|
time.Sleep(c.next.Sub(time.Now()))
|
|
}
|
|
err := c.Send(bannerMaxLength)
|
|
if err != nil {
|
|
c.Close()
|
|
continue
|
|
}
|
|
c.next = time.Now().Add(interval)
|
|
go func() { clients <- c }()
|
|
}
|
|
}(clients, interval, *bannerMaxLength)
|
|
go func(clients chan *client, interval time.Duration, maxClients int64) {
|
|
for {
|
|
// Listen for an incoming connection.
|
|
conn, err := l.Accept()
|
|
if err != nil {
|
|
glog.Errorf("Error accepting: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
// Handle connections in a new goroutine.
|
|
for numCurrentClients >= maxClients {
|
|
time.Sleep(interval)
|
|
}
|
|
clients <- NewClient(conn, interval, maxClients)
|
|
}
|
|
}(clients, interval, *maxClients)
|
|
glog.Infof("Listening HTTP on %v:%v", *connHost, "2112")
|
|
http.ListenAndServe(*connHost+":2112", nil)
|
|
}
|