Revert "Analytics: Use Fullstory to get behavioral data (#53732)" (#53762)

This reverts commit 961479b111.
This commit is contained in:
Ivan Ortega Alba
2022-08-16 12:45:14 +02:00
committed by GitHub
parent 6988dcd7f5
commit 38c690ecb0
14 changed files with 0 additions and 63 deletions
-1
View File
@@ -118,7 +118,6 @@ func (hs *HTTPServer) getFrontendSettingsMap(c *models.ReqContext) (map[string]i
"profileEnabled": setting.ProfileEnabled,
"queryHistoryEnabled": hs.Cfg.QueryHistoryEnabled,
"googleAnalyticsId": setting.GoogleAnalyticsId,
"fullstoryOrgId": setting.FullstoryOrgId,
"rudderstackWriteKey": setting.RudderstackWriteKey,
"rudderstackDataPlaneUrl": setting.RudderstackDataPlaneUrl,
"rudderstackSdkUrl": setting.RudderstackSdkUrl,
-4
View File
@@ -262,9 +262,5 @@ var (
Description: "Replaces whitelabeling with the new custom branding feature",
State: FeatureStateAlpha,
},
{
Name: "fullstoryUserTracking",
Description: "Enables Fullstory cliend SDK to do user analytics",
},
}
)
-4
View File
@@ -194,8 +194,4 @@ const (
// FlagCustomBranding
// Replaces whitelabeling with the new custom branding feature
FlagCustomBranding = "customBranding"
// FlagFullstoryUserTracking
// Enables Fullstory cliend SDK to do user analytics
FlagFullstoryUserTracking = "fullstoryUserTracking"
)
-2
View File
@@ -137,7 +137,6 @@ var (
// analytics
GoogleAnalyticsId string
GoogleTagManagerId string
FullstoryOrgId string
RudderstackDataPlaneUrl string
RudderstackWriteKey string
RudderstackSdkUrl string
@@ -954,7 +953,6 @@ func (cfg *Cfg) Load(args CommandLineArgs) error {
cfg.CheckForPluginUpdates = analytics.Key("check_for_plugin_updates").MustBool(true)
GoogleAnalyticsId = analytics.Key("google_analytics_ua_id").String()
GoogleTagManagerId = analytics.Key("google_tag_manager_id").String()
FullstoryOrgId = analytics.Key("fullstory_org_id").String()
RudderstackWriteKey = analytics.Key("rudderstack_write_key").String()
RudderstackDataPlaneUrl = analytics.Key("rudderstack_data_plane_url").String()
RudderstackSdkUrl = analytics.Key("rudderstack_sdk_url").String()