mirror of
https://github.com/openziti/zrok.git
synced 2025-06-01 23:55:44 +02:00
parent
095024c179
commit
83c12e30cb
@ -36,15 +36,22 @@ type metricsAgent struct {
|
|||||||
cfg *MetricsConfig
|
cfg *MetricsConfig
|
||||||
influx influxdb2.Client
|
influx influxdb2.Client
|
||||||
writeApi api.WriteAPIBlocking
|
writeApi api.WriteAPIBlocking
|
||||||
|
envCache map[string]*envCacheEntry
|
||||||
zCtx ziti.Context
|
zCtx ziti.Context
|
||||||
zListener edge.Listener
|
zListener edge.Listener
|
||||||
shutdown chan struct{}
|
shutdown chan struct{}
|
||||||
joined chan struct{}
|
joined chan struct{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type envCacheEntry struct {
|
||||||
|
env string
|
||||||
|
lastAccess time.Time
|
||||||
|
}
|
||||||
|
|
||||||
func newMetricsAgent(cfg *MetricsConfig) *metricsAgent {
|
func newMetricsAgent(cfg *MetricsConfig) *metricsAgent {
|
||||||
ma := &metricsAgent{
|
ma := &metricsAgent{
|
||||||
cfg: cfg,
|
cfg: cfg,
|
||||||
|
envCache: make(map[string]*envCacheEntry),
|
||||||
shutdown: make(chan struct{}),
|
shutdown: make(chan struct{}),
|
||||||
joined: make(chan struct{}),
|
joined: make(chan struct{}),
|
||||||
}
|
}
|
||||||
|
@ -80,6 +80,7 @@ func (ma *metricsAgent) pushUpdate(mu metricsUpdate) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (ma *metricsAgent) sendMetrics() error {
|
func (ma *metricsAgent) sendMetrics() error {
|
||||||
|
if len(ma.accum) > 0 {
|
||||||
m := &model.Metrics{
|
m := &model.Metrics{
|
||||||
Namespace: ma.cfg.Identity,
|
Namespace: ma.cfg.Identity,
|
||||||
Sessions: ma.accum,
|
Sessions: ma.accum,
|
||||||
@ -103,5 +104,6 @@ func (ma *metricsAgent) sendMetrics() error {
|
|||||||
logrus.Infof("sent %d bytes of metrics data", n)
|
logrus.Infof("sent %d bytes of metrics data", n)
|
||||||
ma.accum = make(map[string]model.SessionMetrics)
|
ma.accum = make(map[string]model.SessionMetrics)
|
||||||
ma.lastSend = time.Now()
|
ma.lastSend = time.Now()
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user