Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
js-jankisalvi committed Jan 2, 2025
1 parent 03456f5 commit 12a9e52
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import { formatDurationFromTimeUnitChar } from '@kbn/observability-plugin/common
import { ML_ANOMALY_SEVERITY } from '@kbn/ml-anomaly-utils/anomaly_severity';
import { ML_ANOMALY_THRESHOLD } from '@kbn/ml-anomaly-utils/anomaly_threshold';
import { ApmRuleType } from '@kbn/rule-data-utils';
import { ErrorCountRuleParams } from '@kbn/response-ops-rule-params/error_count';
import { TransactionDurationRuleParams } from '@kbn/response-ops-rule-params/transaction_duration';
import { AnomalyRuleParams } from '@kbn/response-ops-rule-params/apm_anomaly';
import { TransactionErrorRateRuleParams } from '@kbn/response-ops-rule-params/transaction_error_rate';
import type { ErrorCountRuleParams } from '@kbn/response-ops-rule-params/error_count';
import type { TransactionDurationRuleParams } from '@kbn/response-ops-rule-params/transaction_duration';
import type { AnomalyRuleParams } from '@kbn/response-ops-rule-params/apm_anomaly';
import type { TransactionErrorRateRuleParams } from '@kbn/response-ops-rule-params/transaction_error_rate';
import {
ERROR_GROUP_ID,
ERROR_GROUP_NAME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,13 @@ import {
getEnvironmentEsField,
getEnvironmentLabel,
} from '../../../../../common/environment_filter_values';
import type { THRESHOLD_MET_GROUP } from '../../../../../common/rules/apm_rule_types';
import type {
THRESHOLD_MET_GROUP,
ApmRuleParamsType,
} from '../../../../../common/rules/apm_rule_types';
import {
ANOMALY_ALERT_SEVERITY_TYPES,
APM_SERVER_FEATURE_ID,
ApmRuleParamsType,
formatAnomalyReason,
RULE_TYPES_CONFIG,
} from '../../../../../common/rules/apm_rule_types';
Expand Down

0 comments on commit 12a9e52

Please sign in to comment.