mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-06 14:37:39 +03:00
WIP metrics
This commit is contained in:
parent
bc0e72e3ef
commit
2783a52cad
7 changed files with 489 additions and 2 deletions
|
@ -83,6 +83,12 @@ func (s *Server) execManager() {
|
|||
"emails_sent_failure": sentMailFailure,
|
||||
}).
|
||||
Info("Server stats")
|
||||
if s.httpMetricsServer != nil {
|
||||
metrics.messagesCached.Set(float64(messagesCached))
|
||||
metrics.visitors.Set(float64(visitorsCount))
|
||||
metrics.subscribers.Set(float64(subscribers))
|
||||
metrics.topics.Set(float64(topicsCount))
|
||||
}
|
||||
}
|
||||
|
||||
func (s *Server) pruneVisitors() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue