package ldclient import ( "time" "github.com/launchdarkly/go-sdk-common/v3/ldvalue" ldevents "github.com/launchdarkly/go-sdk-events/v2" "github.com/launchdarkly/go-server-sdk/v6/ldcomponents" "github.com/launchdarkly/go-server-sdk/v6/subsystems" ) func createDiagnosticsManager( context subsystems.ClientContext, sdkKey string, config Config, waitFor time.Duration, ) *ldevents.DiagnosticsManager { id := ldevents.NewDiagnosticID(sdkKey) return ldevents.NewDiagnosticsManager( id, makeDiagnosticConfigData(context, config, waitFor), makeDiagnosticSDKData(), time.Now(), nil, ) } func makeDiagnosticConfigData(context subsystems.ClientContext, config Config, waitFor time.Duration) ldvalue.Value { builder := ldvalue.ObjectBuild(). Set("startWaitMillis", durationToMillis(waitFor)) // Allow each pluggable component to describe its own relevant properties. mergeComponentProperties(builder, context, config.HTTP, ldcomponents.HTTPConfiguration(), "") mergeComponentProperties(builder, context, config.DataSource, ldcomponents.StreamingDataSource(), "") mergeComponentProperties(builder, context, config.DataStore, ldcomponents.InMemoryDataStore(), "dataStoreType") mergeComponentProperties(builder, context, config.Events, ldcomponents.SendEvents(), "") return builder.Build() } var allowedDiagnosticComponentProperties = map[string]ldvalue.ValueType{ //nolint:gochecknoglobals "allAttributesPrivate": ldvalue.BoolType, "connectTimeoutMillis": ldvalue.NumberType, "customBaseURI": ldvalue.BoolType, "customEventsURI": ldvalue.BoolType, "customStreamURI": ldvalue.BoolType, "diagnosticRecordingIntervalMillis": ldvalue.NumberType, "eventsCapacity": ldvalue.NumberType, "eventsFlushIntervalMillis": ldvalue.NumberType, "pollingIntervalMillis": ldvalue.NumberType, "reconnectTimeMillis": ldvalue.NumberType, "socketTimeoutMillis": ldvalue.NumberType, "streamingDisabled": ldvalue.BoolType, "userKeysCapacity": ldvalue.NumberType, "userKeysFlushIntervalMillis": ldvalue.NumberType, "usingProxy": ldvalue.BoolType, "usingRelayDaemon": ldvalue.BoolType, } // Attempts to add relevant configuration properties, if any, from a customizable component: // - If the component does not implement DiagnosticDescription, set the defaultPropertyName property to // "custom". // - If it does implement DiagnosticDescription or DiagnosticDescriptionExt, call the corresponding // interface method to get a value. // - If the value is a string, then set the defaultPropertyName property to that value. // - If the value is an object, then copy all of its properties as long as they are ones we recognize // and have the expected type. func mergeComponentProperties( builder *ldvalue.ObjectBuilder, context subsystems.ClientContext, component interface{}, defaultComponent interface{}, defaultPropertyName string, ) { if component == nil { component = defaultComponent } var componentDesc ldvalue.Value if dd, ok := component.(subsystems.DiagnosticDescription); ok { componentDesc = dd.DescribeConfiguration(context) } if !componentDesc.IsNull() { if componentDesc.Type() == ldvalue.StringType && defaultPropertyName != "" { builder.Set(defaultPropertyName, componentDesc) } else if componentDesc.Type() == ldvalue.ObjectType { for _, name := range componentDesc.Keys(nil) { if allowedType, ok := allowedDiagnosticComponentProperties[name]; ok { value := componentDesc.GetByKey(name) if value.IsNull() || value.Type() == allowedType { builder.Set(name, value) } } } } } else if defaultPropertyName != "" { builder.SetString(defaultPropertyName, "custom") } } func makeDiagnosticSDKData() ldvalue.Value { return ldvalue.ObjectBuild(). Set("name", ldvalue.String("go-server-sdk")). Set("version", ldvalue.String(Version)). Build() } func durationToMillis(d time.Duration) ldvalue.Value { return ldvalue.Float64(float64(uint64(d / time.Millisecond))) }