rules: add evaluationTimestamp when copy state. (#7775)

Signed-off-by: johncming <johncming@yahoo.com>
pull/7807/head
johncming 4 years ago committed by GitHub
parent 5a7d398d19
commit 362080ba28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -500,6 +500,7 @@ func nameAndLabels(rule Rule) string {
// first is matched with the first, second with the second etc.
func (g *Group) CopyState(from *Group) {
g.evaluationDuration = from.evaluationDuration
g.evaluationTimestamp = from.evaluationTimestamp
ruleMap := make(map[string][]int, len(from.rules))

@ -657,6 +657,7 @@ func TestCopyState(t *testing.T) {
testutil.Equals(t, want, newGroup.seriesInPreviousEval)
testutil.Equals(t, oldGroup.rules[0], newGroup.rules[3])
testutil.Equals(t, oldGroup.evaluationDuration, newGroup.evaluationDuration)
testutil.Equals(t, oldGroup.evaluationTimestamp, newGroup.evaluationTimestamp)
testutil.Equals(t, []labels.Labels{{{Name: "l1", Value: "v3"}}}, newGroup.staleSeries)
}

Loading…
Cancel
Save