forked from open-telemetry/opentelemetry-ebpf-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli_flags.go
132 lines (105 loc) · 5.24 KB
/
cli_flags.go
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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package main
import (
"flag"
"fmt"
"os"
"time"
"github.com/peterbourgon/ff/v3"
"go.opentelemetry.io/ebpf-profiler/internal/controller"
"go.opentelemetry.io/ebpf-profiler/tracer"
)
const (
// Default values for CLI flags
defaultArgSamplesPerSecond = 20
defaultArgReporterInterval = 5.0 * time.Second
defaultArgMonitorInterval = 5.0 * time.Second
defaultClockSyncInterval = 3 * time.Minute
defaultProbabilisticThreshold = tracer.ProbabilisticThresholdMax
defaultProbabilisticInterval = 1 * time.Minute
defaultArgSendErrorFrames = false
// This is the X in 2^(n + x) where n is the default hardcoded map size value
defaultArgMapScaleFactor = 0
)
// Help strings for command line arguments
var (
noKernelVersionCheckHelp = "Disable checking kernel version for eBPF support. " +
"Use at your own risk, to run the agent on older kernels with backported eBPF features."
copyrightHelp = "Show copyright and short license text."
collAgentAddrHelp = "The collection agent address in the format of host:port."
verboseModeHelp = "Enable verbose logging and debugging capabilities."
tracersHelp = "Comma-separated list of interpreter tracers to include."
mapScaleFactorHelp = fmt.Sprintf("Scaling factor for eBPF map sizes. "+
"Every increase by 1 doubles the map size. Increase if you see eBPF map size errors. "+
"Default is %d corresponding to 4GB of executable address space, max is %d.",
defaultArgMapScaleFactor, controller.MaxArgMapScaleFactor)
disableTLSHelp = "Disable encryption for data in transit."
bpfVerifierLogLevelHelp = "Log level of the eBPF verifier output (0,1,2). Default is 0."
versionHelp = "Show version."
probabilisticThresholdHelp = fmt.Sprintf("If set to a value between 1 and %d will enable "+
"probabilistic profiling: "+
"every probabilistic-interval a random number between 0 and %d is "+
"chosen. If the given probabilistic-threshold is greater than this "+
"random number, the agent will collect profiles from this system for "+
"the duration of the interval.",
tracer.ProbabilisticThresholdMax-1, tracer.ProbabilisticThresholdMax-1)
probabilisticIntervalHelp = "Time interval for which probabilistic profiling will be " +
"enabled or disabled."
pprofHelp = "Listening address (e.g. localhost:6060) to serve pprof information."
samplesPerSecondHelp = "Set the frequency (in Hz) of stack trace sampling."
reporterIntervalHelp = "Set the reporter's interval in seconds."
monitorIntervalHelp = "Set the monitor interval in seconds."
clockSyncIntervalHelp = "Set the sync interval with the realtime clock. " +
"If zero, monotonic-realtime clock sync will be performed once, " +
"on agent startup, but not periodically."
sendErrorFramesHelp = "Send error frames (devfiler only, breaks Kibana)"
)
// Package-scope variable, so that conditionally compiled other components can refer
// to the same flagset.
func parseArgs() (*controller.Config, error) {
var args controller.Config
fs := flag.NewFlagSet("ebpf-profiler", flag.ExitOnError)
// Please keep the parameters ordered alphabetically in the source-code.
fs.UintVar(&args.BpfVerifierLogLevel, "bpf-log-level", 0, bpfVerifierLogLevelHelp)
fs.StringVar(&args.CollAgentAddr, "collection-agent", "", collAgentAddrHelp)
fs.BoolVar(&args.Copyright, "copyright", false, copyrightHelp)
fs.BoolVar(&args.DisableTLS, "disable-tls", false, disableTLSHelp)
fs.UintVar(&args.MapScaleFactor, "map-scale-factor",
defaultArgMapScaleFactor, mapScaleFactorHelp)
fs.DurationVar(&args.MonitorInterval, "monitor-interval", defaultArgMonitorInterval,
monitorIntervalHelp)
fs.DurationVar(&args.ClockSyncInterval, "clock-sync-interval", defaultClockSyncInterval,
clockSyncIntervalHelp)
fs.BoolVar(&args.NoKernelVersionCheck, "no-kernel-version-check", false,
noKernelVersionCheckHelp)
fs.StringVar(&args.PprofAddr, "pprof", "", pprofHelp)
fs.DurationVar(&args.ProbabilisticInterval, "probabilistic-interval",
defaultProbabilisticInterval, probabilisticIntervalHelp)
fs.UintVar(&args.ProbabilisticThreshold, "probabilistic-threshold",
defaultProbabilisticThreshold, probabilisticThresholdHelp)
fs.DurationVar(&args.ReporterInterval, "reporter-interval", defaultArgReporterInterval,
reporterIntervalHelp)
fs.IntVar(&args.SamplesPerSecond, "samples-per-second", defaultArgSamplesPerSecond,
samplesPerSecondHelp)
fs.BoolVar(&args.SendErrorFrames, "send-error-frames", defaultArgSendErrorFrames,
sendErrorFramesHelp)
fs.StringVar(&args.Tracers, "t", "all", "Shorthand for -tracers.")
fs.StringVar(&args.Tracers, "tracers", "all", tracersHelp)
fs.BoolVar(&args.VerboseMode, "v", false, "Shorthand for -verbose.")
fs.BoolVar(&args.VerboseMode, "verbose", false, verboseModeHelp)
fs.BoolVar(&args.Version, "version", false, versionHelp)
fs.Usage = func() {
fs.PrintDefaults()
}
args.Fs = fs
return &args, ff.Parse(fs, os.Args[1:],
ff.WithEnvVarPrefix("OTEL_PROFILING_AGENT"),
ff.WithConfigFileFlag("config"),
ff.WithConfigFileParser(ff.PlainParser),
// This will ignore configuration file (only) options that the current HA
// does not recognize.
ff.WithIgnoreUndefined(true),
ff.WithAllowMissingConfigFile(true),
)
}