add gc scheduler metrics: collection count

Signed-off-by: Paco Xu <paco.xu@daocloud.io>
This commit is contained in:
Paco Xu 2022-06-06 18:21:49 +08:00
parent 455b45708c
commit 012d68ff90
2 changed files with 42 additions and 6 deletions

34
gc/scheduler/metrics.go Normal file
View File

@ -0,0 +1,34 @@
/*
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package scheduler
import "github.com/docker/go-metrics"
var (
// collectionCounter metrics for counter of gc scheduler collections.
collectionCounter metrics.LabeledCounter
// gcTimeHist histogram metrics for duration of gc scheduler collections.
gcTimeHist metrics.Timer
)
func init() {
ns := metrics.NewNamespace("containerd", "gc", nil)
collectionCounter = ns.NewLabeledCounter("collections", "counter of gc scheduler collections", "status")
gcTimeHist = ns.NewTimer("gc", "duration of gc scheduler collections")
metrics.Register(ns)
}

View File

@ -253,9 +253,8 @@ func (s *gcScheduler) run(ctx context.Context) {
nextCollection *time.Time nextCollection *time.Time
interval = time.Second interval = time.Second
gcTime time.Duration gcTimeSum time.Duration
collections int collections int
// TODO(dmcg): expose collection stats as metrics
triggered bool triggered bool
deletions int deletions int
@ -311,6 +310,7 @@ func (s *gcScheduler) run(ctx context.Context) {
last := time.Now() last := time.Now()
if err != nil { if err != nil {
log.G(ctx).WithError(err).Error("garbage collection failed") log.G(ctx).WithError(err).Error("garbage collection failed")
collectionCounter.WithValues("fail").Inc()
// Reschedule garbage collection for same duration + 1 second // Reschedule garbage collection for same duration + 1 second
schedC, nextCollection = schedule(nextCollection.Sub(*lastCollection) + time.Second) schedC, nextCollection = schedule(nextCollection.Sub(*lastCollection) + time.Second)
@ -326,10 +326,12 @@ func (s *gcScheduler) run(ctx context.Context) {
continue continue
} }
log.G(ctx).WithField("d", stats.Elapsed()).Debug("garbage collected") gcTime := stats.Elapsed()
gcTimeHist.Update(gcTime)
gcTime += stats.Elapsed() log.G(ctx).WithField("d", gcTime).Debug("garbage collected")
gcTimeSum += gcTime
collections++ collections++
collectionCounter.WithValues("success").Inc()
triggered = false triggered = false
deletions = 0 deletions = 0
mutations = 0 mutations = 0
@ -340,7 +342,7 @@ func (s *gcScheduler) run(ctx context.Context) {
// This algorithm ensures that a gc is scheduled to allow enough // This algorithm ensures that a gc is scheduled to allow enough
// runtime in between gc to reach the pause threshold. // runtime in between gc to reach the pause threshold.
// Pause threshold is always 0.0 < threshold <= 0.5 // Pause threshold is always 0.0 < threshold <= 0.5
avg := float64(gcTime) / float64(collections) avg := float64(gcTimeSum) / float64(collections)
interval = time.Duration(avg/s.pauseThreshold - avg) interval = time.Duration(avg/s.pauseThreshold - avg)
} }