satellite/durability: report bus_factor with the new reports

New instance based satellites are reporting durability alerts like `class=last_net, value=192.168.0.0`.

Bus factor will be reported as `class=bus_factor value=last_net`.

Change-Id: I0130866fa8e50b3d2876f580a78383bb1c609159
This commit is contained in:
Márton Elek 2023-11-29 10:50:34 +01:00 committed by Storj Robot
parent 5c79f59b79
commit 9e6c421cc5
2 changed files with 2 additions and 1 deletions

View File

@ -208,6 +208,7 @@ func (c *Report) Finish(ctx context.Context) error {
for name, stat := range c.healthStat {
c.reporter(reportTime, c.class, name, stat)
}
c.reporter(reportTime, "bus_factor", c.class, &c.busFactor)
return nil
}

View File

@ -67,7 +67,7 @@ func TestDurabilityIntegration(t *testing.T) {
_, err := rangedLoopService.RunOnce(ctx)
require.NoError(t, err)
require.Len(t, result, 15)
require.Len(t, result, 19)
// one or two pieces are controlled out of the 5-6 --> 3 or 4 pieces are available without HU nodes
require.Equal(t, result["HU"].Min(), 4)