From 069149491fda90a8622035a1087e70eaaf3aa21f Mon Sep 17 00:00:00 2001 From: Konstantinos Andrikopoulos Date: Tue, 2 Jul 2024 02:09:10 +0200 Subject: pkg/mgrconfig: add user agent config option --- pkg/mgrconfig/config.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pkg/mgrconfig') diff --git a/pkg/mgrconfig/config.go b/pkg/mgrconfig/config.go index 2a7153c7a..0909cd605 100644 --- a/pkg/mgrconfig/config.go +++ b/pkg/mgrconfig/config.go @@ -96,9 +96,10 @@ type Config struct { // Mailx is the only supported mailer. Please set it up prior to using this function. EmailAddrs []string `json:"email_addrs,omitempty"` - DashboardClient string `json:"dashboard_client,omitempty"` - DashboardAddr string `json:"dashboard_addr,omitempty"` - DashboardKey string `json:"dashboard_key,omitempty"` + DashboardClient string `json:"dashboard_client,omitempty"` + DashboardAddr string `json:"dashboard_addr,omitempty"` + DashboardKey string `json:"dashboard_key,omitempty"` + DashboardUserAgent string `json:"dashboard_user_agent,omitempty"` // If set, only consult dashboard if it needs reproducers for crashes, // but otherwise don't send any info to dashboard (default: false). DashboardOnlyRepro bool `json:"dashboard_only_repro,omitempty"` -- cgit mrf-deployment