]> git.scottworley.com Git - reliable-chat/commitdiff
Export the server start time
authorScott Worley <sworley@chkno.net>
Sun, 19 Aug 2012 05:56:00 +0000 (22:56 -0700)
committerScott Worley <sworley@chkno.net>
Sun, 19 Aug 2012 05:56:00 +0000 (22:56 -0700)
server/server.go

index 0c40784ed7b4efb657bd55b798c58f0366991a2b..8dce69be6d77cfbbae9d73e9d96bfac4f9215445 100644 (file)
@@ -30,6 +30,7 @@ var port = flag.Int("port", 21059, "Port to listen on")
 var localaddress = flag.String("localaddress", "", "Local address to bind to")
 var max_messages = flag.Int("maxmessages", 1000, "Maximum number of messages to retain")
 
+var start_time = expvar.NewInt("start_time")
 var speak_count = expvar.NewInt("speak_count")
 var fetch_count = expvar.NewInt("fetch_count")
 var fetch_wait_count = expvar.NewInt("fetch_wait_count")
@@ -162,6 +163,7 @@ func start_server(store Store) {
 
 func main() {
        flag.Parse()
+       start_time.Set(time.Now().UnixNano())
        store := start_store()
        start_server(store)
 }