Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
10b9770
Implement rule specific flapping for update and create
JiaweiWu Aug 7, 2024
b33f2c4
Add task runner portion
JiaweiWu Aug 13, 2024
79069a4
Merge branch 'main' into issue-190018-rule-specific-flapping-create-u…
elasticmachine Aug 13, 2024
e069e44
Fix bundle size
JiaweiWu Aug 14, 2024
d40c6f5
Improve validate logic
JiaweiWu Aug 14, 2024
ca3663b
Add more tests
JiaweiWu Aug 16, 2024
5db9580
Fix conflicts
JiaweiWu Aug 23, 2024
e6bd0ca
Integrate backend with frontend
JiaweiWu Aug 23, 2024
03d4fbe
[CI] Auto-commit changed files from 'node scripts/capture_oas_snapsho…
kibanamachine Aug 23, 2024
b5dec2b
Merge branch 'main' into issue-190018-rule-specific-flapping-create-u…
elasticmachine Aug 26, 2024
6521b98
Clean up flapping test after it has ran
JiaweiWu Aug 27, 2024
99f0926
Add new model schema version
JiaweiWu Aug 28, 2024
c80deab
[CI] Auto-commit changed files from 'node scripts/jest_integration -u…
kibanamachine Aug 28, 2024
ffe5f33
Merge branch 'main' into issue-190018-rule-specific-flapping-create-u…
JiaweiWu Sep 9, 2024
c226f51
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Sep 10, 2024
2ae41a5
Address comments
JiaweiWu Sep 10, 2024
c041027
Merge branch 'main' into issue-190018-rule-specific-flapping-create-u…
elasticmachine Sep 10, 2024
60b6776
Address comments
JiaweiWu Sep 16, 2024
2c6f4fa
Fix merge conflicts and address comments
JiaweiWu Sep 16, 2024
f13b052
[CI] Auto-commit changed files from 'node scripts/jest_integration -u…
kibanamachine Sep 16, 2024
a59f28a
Fix merge conflict
JiaweiWu Oct 8, 2024
0649f68
[CI] Auto-commit changed files from 'node scripts/jest_integration -u…
kibanamachine Oct 8, 2024
91c531a
[CI] Auto-commit changed files from 'make api-docs && make api-docs-s…
kibanamachine Oct 8, 2024
ad98c68
Merge branch 'main' into issue-190018-rule-specific-flapping-create-u…
elasticmachine Oct 8, 2024
55e75a1
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Oct 8, 2024
d762519
Merge branch 'main' into issue-190018-rule-specific-flapping-create-u…
elasticmachine Oct 8, 2024
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
126 changes: 126 additions & 0 deletions oas_docs/bundle.json
Original file line number Diff line number Diff line change
Expand Up @@ -1851,6 +1851,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down Expand Up @@ -2667,6 +2688,27 @@
"description": "Indicates whether you want to run the rule on an interval basis after it is created.",
"type": "boolean"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"name": {
"description": "The name of the rule. While this name does not have to be unique, a distinctive name can help you identify a rule.",
"type": "string"
Expand Down Expand Up @@ -3047,6 +3089,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down Expand Up @@ -3853,6 +3916,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"name": {
"description": "The name of the rule. While this name does not have to be unique, a distinctive name can help you identify a rule.",
"type": "string"
Expand Down Expand Up @@ -4226,6 +4310,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down Expand Up @@ -5692,6 +5797,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down
126 changes: 126 additions & 0 deletions oas_docs/bundle.serverless.json
Original file line number Diff line number Diff line change
Expand Up @@ -1851,6 +1851,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down Expand Up @@ -2667,6 +2688,27 @@
"description": "Indicates whether you want to run the rule on an interval basis after it is created.",
"type": "boolean"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"name": {
"description": "The name of the rule. While this name does not have to be unique, a distinctive name can help you identify a rule.",
"type": "string"
Expand Down Expand Up @@ -3047,6 +3089,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down Expand Up @@ -3853,6 +3916,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"name": {
"description": "The name of the rule. While this name does not have to be unique, a distinctive name can help you identify a rule.",
"type": "string"
Expand Down Expand Up @@ -4226,6 +4310,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down Expand Up @@ -5692,6 +5797,27 @@
],
"type": "object"
},
"flapping": {
"additionalProperties": false,
"nullable": true,
"properties": {
"look_back_window": {
"maximum": 20,
"minimum": 2,
"type": "number"
},
"status_change_threshold": {
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"look_back_window",
"status_change_threshold"
],
"type": "object"
},
"id": {
"description": "The identifier for the rule.",
"type": "string"
Expand Down
Loading