mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-16 12:16:36 +00:00
* telemetry: keep the reported version in the daily history The version only ever lived on the instance record, which holds a cluster's latest report, so there was no way to ask what anything ran last Tuesday. Record it per sample, and let the daily axis carry strings as well as counts. State written before this has no version on its samples. The newest sample is the report the instance record itself came from, so fill that one in on load rather than starting a version series a day late. * telemetry: serve the fleet's version make-up over time /api/versions gives how many clusters ran each release per day, on the same axis and hold-forward rule as the cluster sizes. Releases are ordered by number rather than by size: the caller stacks them, and a stack whose order changes with the counts is unreadable over time. The tail past the limit is summed into "other" so the stack still adds up. Days with no version are dropped before the axis is built, so the series spans the days it knows a version for instead of climbing out of blanks. * telemetry: draw version distribution as a stacked growth chart The pie only ever showed today. Stacked over 30 days the height is the confirmed fleet and each band is a release, so one chart carries the growth and the rollouts at once. Newest release on the floor, so the band being read is anchored to the axis instead of riding on everything below it. Eight fixed hues instead of the evenly spaced ones the cluster stacks use: evenly spaced put a green and a cyan close enough to be hard to tell apart, which matters for a set you read rather than a wall of anonymous ids. Versions past the eighth fold into "other", and each band carries its own number so the chart reads without matching colours against the legend.
109 lines
2.7 KiB
Go
109 lines
2.7 KiB
Go
package storage
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// persistedState is the on-disk snapshot of the in-memory instance map.
|
|
type persistedState struct {
|
|
Instances map[string]*telemetryData `json:"instances"`
|
|
Histories map[string][]HistorySample `json:"histories,omitempty"`
|
|
}
|
|
|
|
// LoadState restores the instance map and Prometheus gauges from a state file
|
|
// written by SaveStateIfDirty. A missing file is not an error. Original
|
|
// ReceivedAt timestamps are preserved so cleanup and the active-cluster
|
|
// windows stay correct across restarts.
|
|
func (s *PrometheusStorage) LoadState(path string) (int, error) {
|
|
b, err := os.ReadFile(path)
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
return 0, nil
|
|
}
|
|
return 0, err
|
|
}
|
|
|
|
var state persistedState
|
|
if err := json.Unmarshal(b, &state); err != nil {
|
|
return 0, fmt.Errorf("parse %s: %w", path, err)
|
|
}
|
|
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
loaded := 0
|
|
for id, instance := range state.Instances {
|
|
if instance == nil || instance.TelemetryData == nil || instance.TelemetryData.TopologyId == "" {
|
|
continue
|
|
}
|
|
s.instances[id] = instance
|
|
s.setClusterMetrics(instance.TelemetryData)
|
|
loaded++
|
|
}
|
|
for id, h := range state.Histories {
|
|
instance, ok := s.instances[id]
|
|
if !ok || len(h) == 0 {
|
|
continue
|
|
}
|
|
// State written before versions were recorded carries none on its
|
|
// samples. The newest sample is the report the instance record itself
|
|
// came from, so that day's version is known and the version series can
|
|
// start there rather than a day after the upgrade.
|
|
if newest := len(h) - 1; h[newest].Version == "" {
|
|
h[newest].Version = instance.TelemetryData.Version
|
|
}
|
|
s.histories[id] = h
|
|
}
|
|
s.updateStats()
|
|
return loaded, nil
|
|
}
|
|
|
|
// SaveStateIfDirty writes the instance map to path if it changed since the
|
|
// last successful save. The write is atomic (temp file + rename).
|
|
func (s *PrometheusStorage) SaveStateIfDirty(path string) error {
|
|
s.mu.Lock()
|
|
if !s.dirty {
|
|
s.mu.Unlock()
|
|
return nil
|
|
}
|
|
b, err := json.Marshal(&persistedState{Instances: s.instances, Histories: s.histories})
|
|
if err != nil {
|
|
s.mu.Unlock()
|
|
return err
|
|
}
|
|
s.dirty = false
|
|
s.mu.Unlock()
|
|
|
|
if err := s.writeAtomically(path, b); err != nil {
|
|
s.mu.Lock()
|
|
s.dirty = true
|
|
s.mu.Unlock()
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *PrometheusStorage) writeAtomically(path string, b []byte) error {
|
|
dir := filepath.Dir(path)
|
|
if err := os.MkdirAll(dir, 0755); err != nil {
|
|
return err
|
|
}
|
|
tmp, err := os.CreateTemp(dir, filepath.Base(path)+".tmp-*")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if _, err := tmp.Write(b); err != nil {
|
|
tmp.Close()
|
|
os.Remove(tmp.Name())
|
|
return err
|
|
}
|
|
if err := tmp.Close(); err != nil {
|
|
os.Remove(tmp.Name())
|
|
return err
|
|
}
|
|
return os.Rename(tmp.Name(), path)
|
|
}
|