2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
2018-12-12 23:50:35 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2018-12-12 23:50:35 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-12-12 23:50:35 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-12 23:50:35 +01:00
|
|
|
|
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"code.vikunja.io/api/pkg/log"
|
|
|
|
"encoding/gob"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SecondsUntilInactive defines the seconds until a user is considered inactive
|
|
|
|
const SecondsUntilInactive = 60
|
|
|
|
|
|
|
|
// ActiveUsersKey is the key used to store active users in redis
|
|
|
|
const ActiveUsersKey = `activeusers`
|
|
|
|
|
|
|
|
// ActiveUser defines an active user
|
|
|
|
type ActiveUser struct {
|
|
|
|
UserID int64
|
|
|
|
LastSeen time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
promauto.NewGaugeFunc(prometheus.GaugeOpts{
|
|
|
|
Name: "vikunja_active_users",
|
|
|
|
Help: "The currently active users on this node",
|
|
|
|
}, func() float64 {
|
|
|
|
|
|
|
|
allActiveUsers, err := GetActiveUsers()
|
|
|
|
if err != nil {
|
2019-07-20 20:12:10 +02:00
|
|
|
log.Error(err.Error())
|
2018-12-12 23:50:35 +01:00
|
|
|
}
|
|
|
|
activeUsersCount := 0
|
|
|
|
for _, u := range allActiveUsers {
|
|
|
|
if time.Since(u.LastSeen) < SecondsUntilInactive*time.Second {
|
|
|
|
activeUsersCount++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return float64(activeUsersCount)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetActiveUsers returns the active users from redis
|
|
|
|
func GetActiveUsers() (users []*ActiveUser, err error) {
|
|
|
|
|
|
|
|
activeUsersR, err := r.Get(ActiveUsersKey).Bytes()
|
|
|
|
if err != nil {
|
|
|
|
if err.Error() == "redis: nil" {
|
|
|
|
return users, nil
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
_, err = b.Write(activeUsersR)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
d := gob.NewDecoder(&b)
|
|
|
|
if err := d.Decode(&users); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetActiveUsers sets the active users from redis
|
|
|
|
func SetActiveUsers(users []*ActiveUser) (err error) {
|
|
|
|
var b bytes.Buffer
|
|
|
|
e := gob.NewEncoder(&b)
|
|
|
|
if err := e.Encode(users); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r.Set(ActiveUsersKey, b.Bytes(), 0).Err()
|
|
|
|
}
|