You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2018. It is now read-only.
glog.V(4).Infof("Skipping rate calculations for %s - new batch (%s) was not scraped strictly after old batch (%s)", key, newMs.ScrapeTime, oldMs.ScrapeTime)
52
+
continue
53
+
}
54
+
if!newMs.CreateTime.Equal(oldMs.CreateTime) {
55
+
glog.V(4).Infof("Skipping rates for %s - different create time new:%v old:%v", key, newMs.CreateTime, oldMs.CreateTime)
56
+
// Create time for container must be the same.
57
+
continue
58
+
}
45
59
46
-
ifoldMs, found:=this.previousBatch.MetricSets[key]; found {
47
-
if!newMs.ScrapeTime.After(oldMs.ScrapeTime) {
48
-
// New must be strictly after old.
49
-
glog.V(4).Infof("Skipping rate calculations for %s - new batch (%s) was not scraped strictly after old batch (%s)", key, newMs.ScrapeTime, oldMs.ScrapeTime)
50
-
continue
51
-
}
52
-
if!newMs.CreateTime.Equal(oldMs.CreateTime) {
53
-
glog.V(4).Infof("Skipping rates for %s - different create time new:%v old:%v", key, newMs.CreateTime, oldMs.CreateTime)
0 commit comments