Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion schemas/sdk_metadata.sql
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ INSERT INTO sdk_feature_info (id, name, description) VALUES
('contexts', 'Contexts and context kinds', 'Evaluate flags based on contexts. A context is a generalized way of referring to the people, services, machines, or other resources that encounter feature flags. SDKs without this feature only support flag evaluation for users.'),
('experimentation', 'Experimentation', 'Connect a flag with one or more metrics to measure end-user behavior for different variations of a flag. Requires minimum SDK versions, but no SDK configuration.'),
('variationDetail', 'Flag evaluation reasons', 'Receive information about how a flag variation was calculated, for example, because it matched a specific targeting rule.'),
('allFlags', 'Getting all flags', 'Return the flag variations for all feature flags for a given context.'),
('allFlags', 'Generate bootstrap details', 'Return the flag variations for all feature flags for a given context.'),
('hooks', 'Hooks', 'Define callbacks that are executed by the SDK at various points of interest, usually for metrics or tracing.'),
('migrations', 'Migration flags', 'Configure how to read and write data for an old and new system, determine which stage of a migration the application is in, execute the correct read and write calls for each stage.'),
('multiEnv', 'Multiple environments', 'Evaluate flags from multiple environments using a single client instance'),
Expand All @@ -129,6 +129,9 @@ INSERT INTO sdk_feature_info (id, name, description) VALUES
('secureMode', 'Secure mode', 'For clent-side SDKs, require a hash, signed with the SDK key for the LaunchDarkly environment, to evaluate flag variations. For server-side or edge SDKs, generate a secure mode hash.'),
('track', 'Sending custom events', 'Record actions taken in your application as events. You can connect to these events to metrics for use in experiments.'),
('storingData', 'Storing data', 'Configure an external database as a feature store. Persist flag data across application restarts.'),
('storingDataConsul', 'Storing data (Consul)', 'Configure Consul as a feature store. Persist flag data across application restarts.'),
('storingDataDynamodb', 'Storing data (DynamoDB)', 'Configure DynamoDB as a feature store. Persist flag data across application restarts.'),
('storingDataRedis', 'Storing data (Redis)', 'Configure Redis as a feature store. Persist flag data across application restarts.'),
('flagChanges', 'Subscribing to flag changes', 'Use a listener pattern to subscribe to flag change notifications.'),
('testDataSource', 'Test data sources', 'Mock data of an SDK. Useful for unit tests; cannot be used in production.'),
('webProxy', 'Web proxy configuration', 'Configure the SDK to connect to LaunchDarkly through a web proxy.'),
Expand Down
Loading