Skip to content

Commit

Permalink
Change defaults for error rate trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
dgieselaar committed Mar 24, 2020
1 parent 5ff8d75 commit ecf61d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export function ErrorRateAlertTrigger(props: Props) {
const { setAlertParams, setAlertProperty, alertParams } = props;

const defaults = {
threshold: 2,
windowSize: 5,
threshold: 25,
windowSize: 1,
windowUnit: 'm'
};

Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/apm/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import { tutorialProvider } from './tutorial';
import { CloudSetup } from '../../cloud/server';
import { getInternalSavedObjectsClient } from './lib/helpers/get_internal_saved_objects_client';
import { LicensingPluginSetup } from '../../licensing/public';
import { createApmTelemetry } from './lib/apm_telemetry';
import { registerApmAlerts } from './lib/alerts/register_apm_alerts';

export interface LegacySetup {
Expand Down

0 comments on commit ecf61d6

Please sign in to comment.