Skip to content
Merged
Show file tree
Hide file tree
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
24 changes: 23 additions & 1 deletion config/serverless.es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,29 @@ telemetry.labels.serverless: search

# Alerts and LLM config
xpack.actions.enabledActionTypes:
['.email', '.index', '.slack', '.slack_api', '.jira', '.jira-cloud', '.webhook', '.teams', '.gen-ai', '.bedrock', '.gemini', '.inference', '.mcp', '.notion', '.github', '.google_drive', '.google_calendar', '.sharepoint-online']
[
'.email',
'.index',
'.slack',
'.slack_api',
'.jira',
'.jira-cloud',
'.webhook',
'.teams',
'.gen-ai',
'.bedrock',
'.gemini',
'.inference',
'.mcp',
'.notion',
'.github',
'.google_drive',
'.google_calendar',
'.sharepoint-online',
'.http',
'.http-system',
'.workflows',
]

# Customize empty page state for analytics apps
no_data_page.analyticsNoDataPageFlavor: 'serverless_search'
Expand Down
2 changes: 2 additions & 0 deletions config/serverless.oblt.logs_essentials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ xpack.actions.enabledActionTypes:
'.servicenow',
'.tines',
'.torq',
'.http',
'.http-system',
]

xpack.alerting.enabledRuleTypes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ export default function ({ getService }: FtrProviderContext) {
);
});

it('limit set of available connectors', async () => {
it('limit set of available connectors for rules', async () => {
const resp = await supertestAdminWithCookieCredentials
.get('/api/actions/connector_types')
.query({ feature_id: 'alerting' })
.set(svlCommonApi.getInternalRequestHeader())
.expect(200);
const listIds = resp.body
Expand All @@ -45,7 +46,6 @@ export default function ({ getService }: FtrProviderContext) {
'.teams',
'.torq',
'.opsgenie',
'.tines',
'.resilient',
]);
});
Expand Down
Loading