UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

89 lines 3.46 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const events_1 = require("../types/events"); const dataDogDefinition = { name: 'datadog', displayName: 'Datadog', description: 'Allows Unleash to post updates to Datadog.', documentationUrl: 'https://docs.getunleash.io/docs/addons/datadog', howTo: 'The Datadog integration allows Unleash to post Updates to Datadog when a feature flag is updated.', parameters: [ { name: 'url', displayName: 'Datadog Events URL', description: "Default URL: https://api.datadoghq.com/api/v1/events. Needs to be changed if your're not using the US1 site.", type: 'url', required: false, sensitive: false, }, { name: 'apiKey', displayName: 'Datadog API key', placeholder: 'j96c23b0f12a6b3434a8d710110bd862', description: '(Required) API key to connect to Datadog', type: 'text', required: true, sensitive: true, }, { name: 'sourceTypeName', displayName: 'Datadog Source Type Name', description: '(Optional) source_type_name parameter to be included in Datadog events. Valid values: https://docs.datadoghq.com/integrations/faq/list-of-api-source-attribute-value/', type: 'text', required: false, sensitive: false, }, { name: 'customHeaders', displayName: 'Extra HTTP Headers', placeholder: `{ "SOME_CUSTOM_HTTP_HEADER": "SOME_VALUE", "SOME_OTHER_CUSTOM_HTTP_HEADER": "SOME_OTHER_VALUE" }`, description: '(Optional) Used to add extra HTTP Headers to the request the plugin fires off. This must be a valid json object of key-value pairs where both the key and the value are strings', required: false, sensitive: true, type: 'textfield', }, { name: 'bodyTemplate', displayName: 'Body template', placeholder: `{ "event": "{{event.type}}", "createdBy": "{{event.createdBy}}", "featureToggle": "{{event.data.name}}", "timestamp": "{{event.data.createdAt}}" }`, description: '(Optional) The default format is a markdown string formatted by Unleash. You may override the format of the body using a mustache template.', required: false, sensitive: false, type: 'textfield', }, ], events: [ events_1.FEATURE_CREATED, events_1.FEATURE_UPDATED, events_1.FEATURE_ARCHIVED, events_1.FEATURE_REVIVED, events_1.FEATURE_STALE_ON, events_1.FEATURE_STALE_OFF, events_1.FEATURE_ENVIRONMENT_ENABLED, events_1.FEATURE_ENVIRONMENT_DISABLED, events_1.FEATURE_STRATEGY_REMOVE, events_1.FEATURE_STRATEGY_UPDATE, events_1.FEATURE_STRATEGY_ADD, events_1.FEATURE_METADATA_UPDATED, events_1.FEATURE_PROJECT_CHANGE, events_1.FEATURE_ENVIRONMENT_VARIANTS_UPDATED, events_1.FEATURE_POTENTIALLY_STALE_ON, ], tagTypes: [ { name: 'datadog', description: 'All Datadog tags added to a specific feature are sent to datadog event stream.', icon: 'D', }, ], }; exports.default = dataDogDefinition; //# sourceMappingURL=datadog-definition.js.map