2022-10-10 22:15:40 +02:00
|
|
|
package frontend
|
|
|
|
|
|
|
|
import (
|
2022-10-14 19:45:55 +02:00
|
|
|
"encoding/json"
|
2022-10-14 19:55:35 +02:00
|
|
|
"github.com/openziti-test-kitchen/zrok/model"
|
2022-10-14 19:40:29 +02:00
|
|
|
"github.com/openziti-test-kitchen/zrok/zrokdir"
|
|
|
|
"github.com/openziti/sdk-golang/ziti"
|
|
|
|
"github.com/openziti/sdk-golang/ziti/config"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/sirupsen/logrus"
|
2022-10-10 22:15:40 +02:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2022-10-10 22:56:01 +02:00
|
|
|
type metricsAgent struct {
|
2022-10-14 19:55:35 +02:00
|
|
|
metrics *model.Metrics
|
2022-10-10 22:56:01 +02:00
|
|
|
updates chan metricsUpdate
|
2022-10-14 19:40:29 +02:00
|
|
|
zCtx ziti.Context
|
2022-10-10 22:15:40 +02:00
|
|
|
}
|
|
|
|
|
2022-10-10 22:56:01 +02:00
|
|
|
type metricsUpdate struct {
|
|
|
|
id string
|
|
|
|
bytesRead int64
|
|
|
|
bytesWritten int64
|
2022-10-10 22:15:40 +02:00
|
|
|
}
|
|
|
|
|
2022-10-14 19:40:29 +02:00
|
|
|
func newMetricsAgent(identityName string) (*metricsAgent, error) {
|
|
|
|
zif, err := zrokdir.ZitiIdentityFile(identityName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error getting '%v' identity file", identityName)
|
|
|
|
}
|
|
|
|
zCfg, err := config.NewFromFile(zif)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error loading '%v' identity", identityName)
|
|
|
|
}
|
|
|
|
logrus.Infof("loaded '%v' identity", identityName)
|
2022-10-10 22:56:01 +02:00
|
|
|
return &metricsAgent{
|
2022-10-14 19:55:35 +02:00
|
|
|
metrics: &model.Metrics{},
|
2022-10-10 22:56:01 +02:00
|
|
|
updates: make(chan metricsUpdate, 10240),
|
2022-10-14 19:40:29 +02:00
|
|
|
zCtx: ziti.NewContextWithConfig(zCfg),
|
|
|
|
}, nil
|
2022-10-10 22:15:40 +02:00
|
|
|
}
|
|
|
|
|
2022-10-10 22:56:01 +02:00
|
|
|
func (ma *metricsAgent) run() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case update := <-ma.updates:
|
2022-10-14 19:55:35 +02:00
|
|
|
ma.metrics.PushSession(update.id, model.SessionMetrics{
|
|
|
|
BytesRead: update.bytesRead,
|
|
|
|
BytesWritten: update.bytesWritten,
|
|
|
|
LastUpdate: time.Now().UnixMilli(),
|
|
|
|
})
|
2022-10-10 23:11:18 +02:00
|
|
|
|
|
|
|
case <-time.After(5 * time.Second):
|
2022-10-14 19:45:55 +02:00
|
|
|
if metricsJson, err := json.MarshalIndent(ma.metrics, "", " "); err == nil {
|
|
|
|
logrus.Info(string(metricsJson))
|
|
|
|
} else {
|
|
|
|
logrus.Errorf("error marshaling metrics: %v", err)
|
2022-10-10 23:11:18 +02:00
|
|
|
}
|
2022-10-10 22:56:01 +02:00
|
|
|
}
|
|
|
|
}
|
2022-10-10 22:15:40 +02:00
|
|
|
}
|