@@ -60,7 +60,7 @@ Parca Agent supports specifying configuration through command-line flags or a YA
6060
6161[ embedmd ] :# ( dist/help.txt )
6262``` txt
63- Usage: parca-agent
63+ Usage: parca-agent [flags]
6464
6565Flags:
6666 -h, --help Show context-sensitive help.
9090 --block-profile-rate=0 Sample rate for block profile.
9191 --profiling-duration=5s The agent profiling duration to use. Leave
9292 this empty to use the defaults.
93+ --profiling-label-ttl=10m The interval at which the agent will refresh
94+ the labels of a tid.
9395 --profiling-cpu-sampling-frequency=19
9496 The frequency at which profiling data is
9597 collected, e.g., 19 samples per second.
@@ -127,6 +129,15 @@ Flags:
127129 [deprecated] Add /proc/[pid]/cmdline as a
128130 label, which may expose sensitive information
129131 like secrets in profiling data.
132+ --metadata-disable-cpu-label
133+ Disable adding the cpu label to profiling
134+ data.
135+ --metadata-disable-thread-id-label
136+ Disable adding the thread_id label to
137+ profiling data.
138+ --metadata-disable-thread-comm-label
139+ Disable adding the thread_comm label to
140+ profiling data.
130141 --local-store-directory=STRING
131142 The local directory to store the profiling
132143 data.
@@ -165,6 +176,16 @@ Flags:
165176 --remote-store-grpc-max-connection-retries=5
166177 The maximum number of retries to establish a
167178 gRPC connection.
179+ --remote-store-grpc-headers=KEY=VALUE;...
180+ Additional gRPC headers to send with each
181+ request (key=value pairs).
182+ --remote-store-client-cert=STRING
183+ Client certificate for mTLS
184+ --remote-store-client-key=STRING
185+ Client key for mTLS
186+ --remote-store-use-v2-schema
187+ Use v2 Arrow schema with inline stacktraces
188+ and ListView deduplication (experimental).
168189 --debuginfo-directories=/usr/lib/debug,...
169190 Ordered list of local directories to search
170191 for debuginfo files.
@@ -215,15 +236,16 @@ Flags:
215236 [deprecated] Disable Python unwinder.
216237 --ruby-unwinding-disable [deprecated] Disable Ruby unwinder.
217238 --java-unwinding-disable [deprecated] Disable Java unwinder.
218- --collect-custom-labels Attempt to collect custom labels (e.g.
219- trace ID) from the process.
239+ --instrument-cuda-launch instrument calls to cudaLaunchKernel.
220240 --analytics-opt-out Opt out of sending anonymous usage
221241 statistics.
222242 --telemetry-disable-panic-reporting
223243
224244 --telemetry-stderr-buffer-size-kb=4096
225245
226- --bpf-verbose-logging Enable verbose BPF logging.
246+ --bpf-verbose-logging Enable verbose BPF logging from eBPF code to
247+ ebpf trace_pipe.
248+ --bpf-log-trace-pipe Copy bpf trace_pipe to info logging.
227249 --bpf-events-buffer-size=8192
228250 Size in pages of the events buffer.
229251 --bpf-map-scale-factor=0 Scaling factor for eBPF map sizes. Every
@@ -245,6 +267,8 @@ Flags:
245267 mode.
246268 --off-cpu-threshold=0 The probability (0.0-1.0) of off-CPU event
247269 being recorded.
270+ --enable-oom-prof Enable OOMProf profiling integration.
271+ --enable-oom-prof-allocs Enable OOMProf alloc counts.
248272```
249273
250274</p >
0 commit comments