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
Copy file name to clipboardExpand all lines: cmd/parca-agent/main.go
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -152,11 +152,11 @@ type FlagsRemoteStore struct {
152
152
153
153
// FlagsDebuginfo contains flags to configure debuginfo.
154
154
typeFlagsDebuginfostruct {
155
-
Directories []string`default:"/usr/lib/debug" help:"Ordered list of local directories to search for debuginfo files. Defaults to /usr/lib/debug."`
156
-
TempDirstring`default:"/tmp" help:"The local directory path to store the interim debuginfo files."`
157
-
Stripbool`default:"true" help:"Only upload information needed for symbolization. If false the exact binary the agent sees will be uploaded unmodified."`
UploadTimeoutDuration time.Duration`default:"2m" help:"The timeout duration to cancel upload requests."`
155
+
Directories []string`kong:"help='Ordered list of local directories to search for debuginfo files.',default='/usr/lib/debug'"`
156
+
TempDirstring`kong:"help='The local directory path to store the interim debuginfo files.',default='/tmp'"`
157
+
Stripbool`kong:"help='Only upload information needed for symbolization. If false the exact binary the agent sees will be uploaded unmodified.',default='true'"`
158
+
UploadCacheDuration time.Duration`kong:"help='The duration to cache debuginfo upload exists checks for.',default='5m'"`
159
+
UploadTimeoutDuration time.Duration`kong:"help='The timeout duration to cancel upload requests.',default='2m'"`
160
160
}
161
161
162
162
// FlagsSymbolizer contains flags to configure symbolization.
0 commit comments