Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -7338,6 +7338,130 @@
}
}
}
},
"elastic_detection_rule_customization_status": {
"properties": {
"alert_suppression": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized alert_suppression field"
}
},
"anomaly_threshold": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized anomaly_threshold field"
}
},
"data_view_id": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized data_view_id field"
}
},
"description": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized description field"
}
},
"filters": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized filters field"
}
},
"from": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized from field"
}
},
"index": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized index field"
}
},
"interval": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized interval field"
}
},
"investigation_fields": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized investigation_fields field"
}
},
"name": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized name field"
}
},
"new_terms_fields": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized new_terms_fields field"
}
},
"note": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized note field"
}
},
"query": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized query field"
}
},
"risk_score": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized risk_score field"
}
},
"severity": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized severity field"
}
},
"setup": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized setup field"
}
},
"tags": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized tags field"
}
},
"threat_query": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized threat_query field"
}
},
"threshold": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized threshold field"
}
},
"timeline_id": {
"type": "long",
"_meta": {
"description": "The number of prebuilt rules with customized timeline_id field"
}
}
}
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import type { DetectionMetrics } from './types';
import { getInitialMlJobUsage } from './ml_jobs/get_initial_usage';
import {
getInitialEventLogUsage,
getInitialRuleCustomizationStatus,
getInitialRuleUpgradeStatus,
getInitialRulesUsage,
getInitialSpacesUsage,
Expand All @@ -30,6 +31,7 @@ export const getInitialDetectionMetrics = (): DetectionMetrics => ({
detection_rule_usage: getInitialRulesUsage(),
detection_rule_status: getInitialEventLogUsage(),
elastic_detection_rule_upgrade_status: getInitialRuleUpgradeStatus(),
elastic_detection_rule_customization_status: getInitialRuleCustomizationStatus(),
spaces_usage: getInitialSpacesUsage(),
},
legacy_siem_signals: getInitialLegacySiemSignalsUsage(),
Expand Down
Loading