1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
|
// Copyright 2023 The gVisor 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 metric
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"hash"
"hash/adler32"
"io"
"os"
"runtime"
"strings"
"time"
"google.golang.org/protobuf/encoding/protojson"
"gvisor.dev/gvisor/pkg/atomicbitops"
"gvisor.dev/gvisor/pkg/log"
"gvisor.dev/gvisor/pkg/prometheus"
"gvisor.dev/gvisor/pkg/sync"
)
const (
// snapshotBufferSize is the number of snapshots within one item of the
// ringbuffer. Increasing this number means less context-switching
// overhead between collector and writer goroutines, but worse time
// precision, as the precise time is refreshed every this many snapshots.
snapshotBufferSize = 1024
// snapshotRingbufferSize is the number of items in the ringbuffer.
// Increasing this number means the writer has more slack to catch up
// if it falls behind, but it also means that the collector may need
// to wait for longer intervals when the writer does fall behind,
// adding more variance to the time gaps between collections.
snapshotRingbufferSize = 128
// MetricsPrefix is prepended before every metrics line.
MetricsPrefix = "GVISOR_METRICS\t"
// MetricsHashIndicator is prepended before the hash of the metrics
// data at the end of the metrics stream.
MetricsHashIndicator = "ADLER32\t"
// TimeColumn is the column header for the time column.
TimeColumn = "Time (ns)"
// MetricsMetaIndicator is prepended before every metrics metadata line
// after metricsPrefix.
MetricsMetaIndicator = "META\t"
// MetricsStartTimeIndicator is prepended before the start time of the
// metrics collection.
MetricsStartTimeIndicator = "START_TIME\t"
// MetricsStatsIndicator is prepended before the stats of the metrics
// collection process.
MetricsStatsIndicator = "STATS\t"
)
// CollectionStats contains statistics about the profiling metrics collection
// process itself.
type CollectionStats struct {
// mu protects the fields below.
mu sync.Mutex `json:"-"`
// CollectionRate is the rate at which the metrics are meant to be
// collected.
CollectionRateNanos uint64 `json:"collection_rate"`
// CheapStartNanos is the time at which the collector started in nanoseconds,
// as returned by CheapNowNano.
CheapStartNanos uint64 `json:"cheap_start_nanos"`
// CheapLastCollectionNanos is the time at which the last collection was
// meant to be performed, in nanoseconds as returned by CheapNowNano.
CheapLastCollectionNanos uint64 `json:"cheap_last_collection_nanos"`
// TotalSnapshots is the total number of snapshots successfully taken.
TotalSnapshots uint64 `json:"total_snapshots"`
// TotalSleepTimingError is the running sum of absolute difference in timing
// between when the collector was meant to start collecting a metric snapshot
// vs when it actually collected it. It should be divided by TotalSnapshots
// to get the average sleep timing error.
TotalSleepTimingErrorNanos uint64 `json:"total_sleep_timing_error"`
// TotalCollectionTimingError is the running sum of time spent doing actual
// metric collection, i.e. retrieving numerical values from metrics.
// The larger this duration is, the more time gap there is between the first
// metric being collected and the last within a single metric collection
// cycle. This can cause the metric data to be less accurate because all of
// these points will be recorded as having the same timestamp despite this
// not actually being the case.
// It should be divided by TotalSnapshots to get the average
// per-collection-cycle collection timing error.
TotalCollectionTimingErrorNanos uint64 `json:"total_collection_timing_error"`
// NumBackoffSleeps is the number of times the collector had to back off
// because the writer was too slow.
NumBackoffSleeps uint64 `json:"num_backoff_sleeps"`
// TotalBackoffSleep is the running sum of time the collector had to back
// off because the writer was too slow.
TotalBackoffSleepNanos uint64 `json:"total_backoff_sleep"`
}
var (
// profilingMetricsStarted indicates whether StartProfilingMetrics has
// been called.
profilingMetricsStarted atomicbitops.Bool
// stopProfilingMetrics is used to signal to the profiling metrics
// goroutine to stop recording and writing metrics.
stopProfilingMetrics atomicbitops.Bool
// doneProfilingMetrics is used to signal that the profiling metrics
// goroutines are finished. It carries information about the stats of
// the profiling metrics collection process.
doneProfilingMetrics chan *CollectionStats
// definedProfilingMetrics is the set of metrics known to be created for
// profiling (see condmetric_profiling.go).
definedProfilingMetrics []string
)
// snapshots is used to as temporary storage of metric data
// before it's written to the writer.
type snapshots struct {
numMetrics int
// startTime is the time at which collection started in nanoseconds.
startTime int64
// ringbuffer is used to store metric data.
ringbuffer [][]uint64
// curWriterIndex is the ringbuffer index currently being read by the
// writer. It should not be used by the collector.
curWriterIndex atomicbitops.Int32
}
// writeReq is the message sent between from the collector to the writer.
type writeReq struct {
ringbufferIdx int
// numLines indicates how many data lines are filled in the buffer.
numLines int
}
// ProfilingMetricsWriter is the interface for profiling metrics sinks.
type ProfilingMetricsWriter interface {
// Write from the io.Writer interface.
io.Writer
// WriteString from the io.StringWriter interface.
io.StringWriter
// Truncate truncates the underlying writer, if possible.
Truncate(size int64) error
// Close closes the writer.
Close() error
}
// ProfilingMetricsOptions is the set of options to profile metrics.
type ProfilingMetricsOptions[T ProfilingMetricsWriter] struct {
// Sink is the sink to write the profiling metrics data to.
Sink T
// Lossy specifies whether the sink is lossy, i.e. data may be dropped from
// too large logging volume. In this case, data integrity is desirable at the
// expense of extra CPU cost at data-writing time. The data will be prefixed
// with `MetricsPrefix` and the hash of the data will be appended at the end.
Lossy bool
// Metrics is the comma-separated list of metrics to profile.
Metrics string
// Rate is the rate at which the metrics are collected.
Rate time.Duration
}
// StartProfilingMetrics checks the ProfilingMetrics runsc flags and creates
// goroutines responsible for outputting the profiling metric data.
//
// Preconditions:
// - All metrics are registered.
// - Initialize/Disable has been called.
func StartProfilingMetrics[T ProfilingMetricsWriter](opts ProfilingMetricsOptions[T]) error {
if !initialized.Load() {
// Wait for initialization to complete to make sure that all
// metrics are registered.
return errors.New("metric initialization is not complete")
}
var values []func(fieldValues ...*FieldValue) uint64
var headers []string
var columnHeaders strings.Builder
columnHeaders.WriteString(TimeColumn)
numMetrics := 0
if len(opts.Metrics) > 0 {
metrics := strings.Split(opts.Metrics, ",")
numMetrics = len(metrics)
for _, name := range metrics {
name := strings.TrimSpace(name)
m, ok := allMetrics.uint64Metrics[name]
if !ok {
return fmt.Errorf("given profiling metric name '%s' does not correspond to a registered Uint64 metric", name)
}
if len(m.fields) > 0 {
// TODO(b/240280155): Add support for field values.
return fmt.Errorf("will not profile metric '%s' because it has metric fields which are not supported", name)
}
var metricMetadataHeader strings.Builder
metricMetadataHeader.WriteString(MetricsMetaIndicator)
metricMetadataHeader.WriteString(name)
metricMetadataHeader.WriteRune('\t')
metricMetadata, err := protojson.MarshalOptions{Multiline: false}.Marshal(m.metadata)
if err != nil {
return fmt.Errorf("failed to marshal metric schema for metric %q: %w", name, err)
}
metricMetadataHeader.Write(metricMetadata)
headers = append(headers, metricMetadataHeader.String())
columnHeaders.WriteRune('\t')
columnHeaders.WriteString(name)
values = append(values, m.value)
}
if opts.Lossy {
columnHeaders.WriteString("\tChecksum")
}
} else {
if len(definedProfilingMetrics) > 0 {
return fmt.Errorf("a value for --profiling-metrics was not specified; consider using a subset of '--profiling-metrics=%s'", strings.Join(definedProfilingMetrics, ","))
}
return fmt.Errorf("a value for --profiling-metrics was not specified; also no conditionally compiled metrics found, consider compiling runsc with --go_tag=condmetric_profiling")
}
headers = append(
headers,
fmt.Sprintf("%s%d", MetricsStartTimeIndicator, time.Now().UnixNano()),
columnHeaders.String(),
)
if !profilingMetricsStarted.CompareAndSwap(false, true) {
return errors.New("profiling metrics have already been started")
}
s := snapshots{
numMetrics: numMetrics,
ringbuffer: make([][]uint64, snapshotRingbufferSize),
// curWriterIndex is initialized to a valid index so that the
// collector cannot use up all indices before the writer even has
// a chance to start (as unlikely as that is).
curWriterIndex: atomicbitops.FromInt32(snapshotRingbufferSize - 1),
}
for i := 0; i < snapshotRingbufferSize; i++ {
s.ringbuffer[i] = make([]uint64, snapshotBufferSize*(numMetrics+1))
}
// Truncate the underlying sink if possible to delete any past profiling
// data in the file, if any, as it makes no sense to concatenate them or
// to overwrite them in-place.
// We ignore errors here because the sink may not be truncatable,
// e.g. when it is pointing to the stdout FD.
_ = opts.Sink.Truncate(0)
stopProfilingMetrics = atomicbitops.FromBool(false)
doneProfilingMetrics = make(chan *CollectionStats, 1)
writeCh := make(chan writeReq, snapshotRingbufferSize)
s.startTime = time.Now().UnixNano()
cheapStartTime := CheapNowNano()
stats := CollectionStats{
CollectionRateNanos: uint64(opts.Rate.Nanoseconds()),
CheapStartNanos: uint64(cheapStartTime),
}
go collectProfilingMetrics(&s, values, cheapStartTime, opts.Rate, writeCh, &stats)
if opts.Lossy {
lossySink := newLossyBufferedWriter(opts.Sink)
go writeProfilingMetrics[*lossyBufferedWriter[T]](lossySink, &s, headers, writeCh, &stats)
} else {
bufferedSink := newBufferedWriter(opts.Sink)
go writeProfilingMetrics[*bufferedWriter[T]](bufferedSink, &s, headers, writeCh, &stats)
}
log.Infof("Profiling metrics started.")
return nil
}
// collectProfilingMetrics will send metrics to the writeCh until it receives a
// signal via the stopProfilingMetrics channel.
func collectProfilingMetrics(s *snapshots, values []func(fieldValues ...*FieldValue) uint64, cheapStartTime int64, profilingRate time.Duration, writeCh chan<- writeReq, stats *CollectionStats) {
defer close(writeCh)
stats.mu.Lock()
defer stats.mu.Unlock()
numEntries := s.numMetrics + 1 // to account for the timestamp
ringbufferIdx := 0
curSnapshot := 0
var beforeCollectionTimestamp int64
// If we write faster than the writer can keep up, we back off.
// The backoff factor starts small but increases exponentially
// each time we find that we are still faster than the writer.
const (
// How much slower than the profiling rate we sleep for, as a
// multiplier for the profiling rate.
initialBackoffFactor = 1.0
// The exponential factor by which the backoff factor increases.
backoffFactorGrowth = 1.125
// The maximum backoff factor, i.e. the maximum multiplier of
// the profiling rate for which we sleep.
backoffFactorMax = 256.0
)
backoffFactor := initialBackoffFactor
stopCollecting := false
for nextCollection := cheapStartTime; !stopCollecting; nextCollection += profilingRate.Nanoseconds() {
if stopProfilingMetrics.Load() {
stopCollecting = true
stats.CheapLastCollectionNanos = uint64(nextCollection)
// Collect one last time before stopping.
}
// For small durations, just spin (and maybe yield). Otherwise sleep.
for {
const (
// When the next collection time is closer than `spinMaxNanos` away,
// we will spin in place waiting for the collection time to come.
// If it is further away, see `yieldMaxNanos`.
spinMaxNanos = 50_000
// When the next collection time is closer than `yieldMaxNanos` away,
// we will continuously call `runtime.Gosched` until the collection
// time comes.
// If it is further away, we will call `time.Sleep` (but see
// `wakeUpNanos`).
// Look at your kernel's CONFIG_HZ configuration to see what a good
// lower bound for this value should be.
yieldMaxNanos = 2_500_000
// When we decide to call `time.Sleep`, `wakeUpNanos` is the amount of
// time to *undersleep* by passed to `time.Sleep`, such that we are
// likely to wake up a bit before the actual next collection time.
wakeUpNanos = 100_000
)
beforeCollectionTimestamp = CheapNowNano()
nanosToNextCollection := nextCollection - beforeCollectionTimestamp
if nanosToNextCollection <= 0 {
// Collect now.
break
}
if nanosToNextCollection < spinMaxNanos {
continue // Spin.
}
if nanosToNextCollection < yieldMaxNanos {
// Yield then spin.
runtime.Gosched()
continue
}
// Sleep.
time.Sleep(time.Duration(nanosToNextCollection-wakeUpNanos) * time.Nanosecond)
}
ringBuf := s.ringbuffer[ringbufferIdx]
base := curSnapshot * numEntries
for i := 1; i < numEntries; i++ {
ringBuf[base+i] = values[i-1]()
}
afterCollectionTimestamp := CheapNowNano()
middleCollectionTimestamp := (beforeCollectionTimestamp + afterCollectionTimestamp) / 2
ringBuf[base] = uint64(middleCollectionTimestamp - cheapStartTime)
curSnapshot++
stats.TotalSnapshots++
stats.TotalSleepTimingErrorNanos += uint64(max(nextCollection-beforeCollectionTimestamp, beforeCollectionTimestamp-nextCollection))
stats.TotalCollectionTimingErrorNanos += uint64(afterCollectionTimestamp - beforeCollectionTimestamp)
if curSnapshot == snapshotBufferSize {
writeCh <- writeReq{ringbufferIdx: ringbufferIdx, numLines: curSnapshot}
curSnapshot = 0
// Block until the writer indicates that this part of the ringbuffer
// is available for writing.
for ringbufferIdx = (ringbufferIdx + 1) % snapshotRingbufferSize; ringbufferIdx == int(s.curWriterIndex.Load()); {
// Going too fast, stop collecting for a bit.
backoffSleep := profilingRate * time.Duration(backoffFactor)
log.Warningf("Profiling metrics collector exhausted the entire ringbuffer... backing off for %v to let writer catch up.", backoffSleep)
stats.NumBackoffSleeps++
stats.TotalBackoffSleepNanos += uint64(backoffSleep.Nanoseconds())
time.Sleep(backoffSleep)
backoffFactor = min(backoffFactor*backoffFactorGrowth, backoffFactorMax)
}
}
}
if curSnapshot != 0 {
writeCh <- writeReq{ringbufferIdx: ringbufferIdx, numLines: curSnapshot}
}
}
// bufferedMetricsWriter is a ProfilingMetricsWriter that buffers data
// before writing it to some underlying writer.
type bufferedMetricsWriter interface {
// We inherit from the ProfilingMetricsWriter interface.
// Note however that calls to WriteString should *not* contain any
// newline character, unless called through NewLine.
ProfilingMetricsWriter
// NewLine writes a newline character to the buffer.
// The writer may decide to flush the buffer at this point.
NewLine()
// Flush flushes the buffer to the underlying writer.
Flush()
}
const (
// Buffer size reasonable to use for a single line of metric data.
lineBufSize = 4 * 1024 // 4 KiB
// Buffer size for a buffered write to an underlying sink.
bufSize = 984 * 1024 // 984 KiB
// Number of lines to buffer before flushing to the underlying sink
// by a line-buffered writer.
bufferedLines = bufSize / lineBufSize
)
// bufferedWriter is a buffered metrics writer that wraps an underlying
// ProfilingMetricsWriter.
// It implements `bufferedMetricsWriter`.
type bufferedWriter[T ProfilingMetricsWriter] struct {
buf bytes.Buffer
underlying T
}
func newBufferedWriter[T ProfilingMetricsWriter](underlying T) *bufferedWriter[T] {
w := &bufferedWriter[T]{underlying: underlying}
w.buf.Grow(bufSize + lineBufSize)
return w
}
// Write implements bufferedMetricsWriter.Write.
func (w *bufferedWriter[T]) Write(s []byte) (int, error) {
return w.buf.Write(s)
}
// WriteString implements bufferedMetricsWriter.WriteString.
func (w *bufferedWriter[T]) WriteString(s string) (int, error) {
return w.buf.WriteString(s)
}
// NewLine implements bufferedMetricsWriter.NewLine.
func (w *bufferedWriter[T]) NewLine() {
w.buf.WriteString("\n")
if w.buf.Len() >= bufSize {
w.Flush()
}
}
// Flush implements bufferedMetricsWriter.Flush.
func (w *bufferedWriter[T]) Flush() {
w.underlying.WriteString(w.buf.String())
w.buf.Reset()
}
// Truncate implements bufferedMetricsWriter.Truncate.
func (w *bufferedWriter[T]) Truncate(size int64) error {
return w.underlying.Truncate(size)
}
// Close implements bufferedMetricsWriter.Close.
func (w *bufferedWriter[T]) Close() error {
w.Flush()
return w.underlying.Close()
}
// lossyBufferedWriter writes to an underlying ProfilingMetricsWriter
// and buffers data on a per-line basis. It adds a prefix to every line,
// and keeps track of the checksum of the data it has written (which is then
// also written to the underlying writer on `Close()`).
// The checksum covers all of the per-line data written after the line prefix,
// including the newline character of these lines, with the exception of
// the checksum data line itself.
// All lines are also checksummed individually, with the checksum covering
// the contents of the line after the line prefix but before the tab and
// line checksum itself at the end of the line.
// `lossyBufferedWriter` implements `bufferedMetricsWriter`.
type lossyBufferedWriter[T ProfilingMetricsWriter] struct {
lineBuf bytes.Buffer
flushBuf bytes.Buffer
lineHasher hash.Hash32
overallHasher hash.Hash32
lines int
longestLine int
underlying T
}
// newLossyBufferedWriter creates a new lossyBufferedWriter.
func newLossyBufferedWriter[T ProfilingMetricsWriter](underlying T) *lossyBufferedWriter[T] {
w := &lossyBufferedWriter[T]{
underlying: underlying,
lineHasher: adler32.New(),
overallHasher: adler32.New(),
longestLine: lineBufSize,
}
w.lineBuf.Grow(lineBufSize)
// `lineBufSize + 1` to account for the newline at the end of each line.
// `+ 2` to account for the newline at the beginning and end of each flush.
w.flushBuf.Grow((lineBufSize+1)*bufferedLines + 2)
w.flushBuf.WriteString("\n")
return w
}
// Write implements bufferedMetricsWriter.Write.
func (w *lossyBufferedWriter[T]) Write(s []byte) (int, error) {
return w.lineBuf.Write(s)
}
// WriteString implements bufferedMetricsWriter.WriteString.
func (w *lossyBufferedWriter[T]) WriteString(s string) (int, error) {
return w.lineBuf.WriteString(s)
}
// Flush implements bufferedMetricsWriter.Flush.
func (w *lossyBufferedWriter[T]) Flush() {
if w.lines > 0 {
// Ensure that we write a complete line atomically, as this
// may get parsed while being mixed with other logs that may not
// have clean line endings a the time we print this.
w.flushBuf.WriteString("\n")
w.underlying.WriteString(w.flushBuf.String())
if f, isFile := any(w.underlying).(*os.File); isFile {
// If we're dealing with a file, also call `sync(2)`.
f.Sync()
}
w.flushBuf.Reset()
w.flushBuf.WriteString("\n")
w.lines = 0
}
}
// NewLine implements bufferedMetricsWriter.NewLine.
func (w *lossyBufferedWriter[T]) NewLine() {
if lineLen := w.lineBuf.Len(); lineLen > w.longestLine {
wantTotalSize := (lineLen+1)*bufferedLines + 2
if growBy := wantTotalSize - w.flushBuf.Len(); growBy > 0 {
w.flushBuf.Grow(growBy)
}
w.longestLine = lineLen
}
line := w.lineBuf.String()
w.lineHasher.Reset()
w.lineHasher.Write([]byte(line))
lineHash := w.lineHasher.Sum32()
w.lineBuf.Reset()
w.flushBuf.WriteString(MetricsPrefix)
beforeLineIndex := w.flushBuf.Len()
w.flushBuf.WriteString(line)
w.flushBuf.WriteString("\t0x")
prometheus.WriteHex(&w.flushBuf, uint64(lineHash))
w.flushBuf.WriteString("\n")
afterLineIndex := w.flushBuf.Len()
// We ignore the effects that partial writes on the underlying writer
// would have on the hash computation here.
// This is OK because the goal of this writer is speed over correctness,
// and correctness is enforced by the reader of this data checking the
// hash at the end.
w.overallHasher.Write(w.flushBuf.Bytes()[beforeLineIndex:afterLineIndex])
w.lineBuf.Reset()
w.lines++
if w.lines >= bufferedLines || w.flushBuf.Len() >= bufSize {
w.Flush()
}
}
// Truncate implements bufferedMetricsWriter.Truncate.
func (w *lossyBufferedWriter[T]) Truncate(size int64) error {
return w.underlying.Truncate(size)
}
// Close implements bufferedMetricsWriter.Close.
// It writes the checksum of the data written to the underlying writer.
func (w *lossyBufferedWriter[T]) Close() error {
w.Flush()
w.flushBuf.WriteString(MetricsPrefix)
w.flushBuf.WriteString(MetricsHashIndicator)
w.flushBuf.WriteString("0x")
prometheus.WriteHex(&w.flushBuf, uint64(w.overallHasher.Sum32()))
w.flushBuf.WriteString("\n")
w.underlying.WriteString(w.flushBuf.String())
w.overallHasher.Reset()
w.lineBuf.Reset()
w.flushBuf.Reset()
return w.underlying.Close()
}
// writeProfilingMetrics will write to the ProfilingMetricsWriter on every
// request via writeReqs, until writeReqs is closed.
func writeProfilingMetrics[T bufferedMetricsWriter](sink T, s *snapshots, headers []string, writeReqs <-chan writeReq, stats *CollectionStats) {
numEntries := s.numMetrics + 1
for _, header := range headers {
sink.WriteString(header)
sink.NewLine()
}
for req := range writeReqs {
s.curWriterIndex.Store(int32(req.ringbufferIdx))
ringBuf := s.ringbuffer[req.ringbufferIdx]
for i := 0; i < req.numLines; i++ {
base := i * numEntries
// Write the time
prometheus.WriteInteger(sink, int64(ringBuf[base]))
// Then everything else
for j := 1; j < numEntries; j++ {
sink.WriteString("\t")
prometheus.WriteInteger(sink, int64(ringBuf[base+j]))
}
sink.NewLine()
}
}
sink.WriteString(MetricsStatsIndicator)
stats.WriteTo(sink)
sink.NewLine()
sink.Close()
doneProfilingMetrics <- stats
close(doneProfilingMetrics)
profilingMetricsStarted.Store(false)
}
// Log logs some statistics about the profiling metrics collection process.
func (s *CollectionStats) Log(infoFn func(format string, val ...any), warningFn func(format string, val ...any)) {
s.mu.Lock()
defer s.mu.Unlock()
captureDuration := time.Duration(s.CheapLastCollectionNanos-s.CheapStartNanos) * time.Nanosecond
collectionRate := time.Duration(s.CollectionRateNanos) * time.Nanosecond
totalSleepTimingError := time.Duration(s.TotalSleepTimingErrorNanos) * time.Nanosecond
totalCollectionTimingError := time.Duration(s.TotalCollectionTimingErrorNanos) * time.Nanosecond
totalBackoffSleep := time.Duration(s.TotalBackoffSleepNanos) * time.Nanosecond
expectedSnapshots := uint64(captureDuration / collectionRate)
if s.TotalSnapshots == expectedSnapshots+1 {
// Depending on the timing of when the stop signal was sent, the
// collection goroutine is expected to do an extra collection cycle,
// so we add one to the expected number of snapshots here to make it not
// look like the capture rate is >100%.
expectedSnapshots = s.TotalSnapshots
}
captureRate := 0.0
if expectedSnapshots > 0 {
captureRate = float64(s.TotalSnapshots) / float64(expectedSnapshots)
}
if captureRate < .99 {
warningFn("Captured %d snapshots out of %d expected (%.2f%% capture rate) over %v.", s.TotalSnapshots, expectedSnapshots, captureRate*100.0, captureDuration)
warningFn("This indicates that the profiling metrics writer is not keeping up with the metrics collection rate.")
warningFn("Ensure that the profiling metrics log is stored on a fast storage device, or consider reducing the metric profiling rate.")
} else {
infoFn("Captured %d snapshots out of %d expected (%.2f%% capture rate) over %v. This is acceptable.", s.TotalSnapshots, expectedSnapshots, captureRate*100.0, captureDuration)
}
averageSleepTimingError := totalSleepTimingError / time.Duration(s.TotalSnapshots)
sleepTimingErrorVsRate := float64(averageSleepTimingError) / float64(collectionRate)
if sleepTimingErrorVsRate > .1 {
warningFn("Average sleep timing error is high: %v (%.2f%% of the collection interval).", averageSleepTimingError, sleepTimingErrorVsRate*100.0)
warningFn("This means the profiling metrics collector is not waking up at the correct time to collect the next snapshot.")
warningFn("This may mean that the CPU is overloaded (e.g. from other processes running on the same machine or from the workload itself taking up all the cores).")
warningFn("Consider using a slower profiling rate, removing other background processes, or tweaking the sleep consts in profiling_metric.go.")
} else {
infoFn("Average sleep timing error: %v (%.2f%% of the collection interval). This is acceptable.", averageSleepTimingError, sleepTimingErrorVsRate*100.0)
}
averageCollectionTimingError := totalCollectionTimingError / time.Duration(s.TotalSnapshots)
collectionTimingErrorVsRate := float64(averageCollectionTimingError) / float64(collectionRate)
if collectionTimingErrorVsRate > .1 {
warningFn("Average collection timing error is high: %v (%.2f%% of the collection interval).", averageCollectionTimingError, collectionTimingErrorVsRate*100.0)
warningFn("This means the time between getting the value of the first metric vs the last metric within a single collection cycle is a too large fraction of the profiling rate.")
warningFn("This means there is significant drift between the time a value is reported as having vs the time it was actually scraped, relative to the profiling interval.")
warningFn("Consider using a slower profiling rate or profiling fewer metrics at a time.")
} else {
infoFn("Average collection timing error: %v (%.2f%% of the collection interval). This is acceptable.", averageCollectionTimingError, collectionTimingErrorVsRate*100.0)
}
if s.NumBackoffSleeps > 0 {
ratioLostToBackoff := float64(totalBackoffSleep) / float64(captureDuration)
if ratioLostToBackoff > .05 {
warningFn("Backed off %d times due to slow writer; total %v spent in backoff sleep (%.2f%% of the capture duration).")
warningFn("This indicates that the profiling metrics writer is not keeping up with the metrics collection rate.")
warningFn("Ensure that the profiling metrics log is stored on a fast storage device, or consider reducing the metric profiling rate.")
} else {
infoFn("Backed off %d times due to slow writer; total %v spent in backoff sleep (%.2f%% of the capture duration). This is acceptable.", s.NumBackoffSleeps, totalBackoffSleep, ratioLostToBackoff*100.0)
}
}
}
// WriteTo writes the statistics about the profiling metrics collection process
// to the given io.Writer.
func (s *CollectionStats) WriteTo(w io.Writer) (int64, error) {
s.mu.Lock()
marshalled, err := json.Marshal(s)
s.mu.Unlock()
if err != nil {
return 0, err
}
n, err := w.Write(marshalled)
return int64(n), err
}
// ParseCollectionStats parses the profiling metrics collection stats from the
// given line.
func ParseCollectionStats(line string) (*CollectionStats, error) {
line = strings.TrimPrefix(line, MetricsStatsIndicator)
var stats CollectionStats
if err := json.Unmarshal([]byte(line), &stats); err != nil {
return nil, err
}
return &stats, nil
}
// StopProfilingMetrics stops the profiling metrics goroutines. Call to make sure
// all metric data has been flushed.
// Note that calling this function prior to StartProfilingMetrics has no effect.
func StopProfilingMetrics() {
if !profilingMetricsStarted.Load() {
return
}
if !stopProfilingMetrics.CompareAndSwap(false, true) {
// If the CAS fails, this means the signal was already sent,
// so don't wait on doneProfilingMetrics.
return
}
stats := <-doneProfilingMetrics
log.Infof("Profiling metrics stopped.")
stats.Log(func(format string, val ...any) {
log.Infof("Profiling metrics: "+format, val...)
}, func(format string, val ...any) {
log.Warningf("Profiling metrics: "+format, val...)
})
}
|