mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
* [Reporting] Replace Job Completion Notifier as NP Plugin * beautiful toasts * unit test * showNotifications returns observable * fix kibana.json * depends on links * no prettier ignore * Update content per feedback * Remove unnecessary wrapper * remove type annos and condense * use an observable of the stop method * rename the new platform plugin to match legacy * fix i18n config * additional plugin rename * i18n strings prefix change * try something with x-pack/.i18nrc.json * remove a few more notifier phrasing from plugin definition
10 lines
420 B
TypeScript
10 lines
420 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
export const reportingPollConfig = {
|
|
jobCompletionNotifier: { interval: 10000, intervalErrorMultiplier: 5 },
|
|
jobsRefresh: { interval: 5000, intervalErrorMultiplier: 5 },
|
|
};
|