Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.3release - cherry-picking from main to 1.x branch #192

Merged
merged 23 commits into from
Mar 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5bbf0a1
OpenSearch 1.1.0 release (#103)
annie3431 Sep 10, 2021
d4dc436
Updates to workflow, unit tests, and some appearance (#114)
annie3431 Sep 15, 2021
3f4e338
Cherry-pick commits from main branch to 1.x branch (#131)
annie3431 Oct 12, 2021
9ff7822
Cherry-picking commits from main to 1.x branch for 1.2 release (#142)
AWSHurneyt Nov 5, 2021
052b128
Added DCO section to CONTRIBUTING.md and GitHub workflows. Updated co…
AWSHurneyt Nov 9, 2021
b0315b5
support creating monitor for anomaly detector with custom result inde…
ylwu-amzn Nov 9, 2021
9c02e0d
Bumping version to 1.3. Signed-off-by: AWSHurneyt <hurneyt@amazon.com…
AWSHurneyt Dec 18, 2021
a85dec5
initial commit (#150)
CEHENKLE Dec 31, 2021
f15a3d1
Add .whitesource configuration file (#153)
mend-for-github-com[bot] Jan 14, 2022
dab2efe
Implemented a toast to display successful attempts to acknowledge ale…
AWSHurneyt Jan 27, 2022
cb98e0a
Adding basic unit tests (#151)
annie3431 Jan 28, 2022
aacf413
Fix the error handling when config index is not found (#173)
annie3431 Feb 11, 2022
c2f76f8
Updated copyright notices and headers. (#168)
AWSHurneyt Feb 17, 2022
ecd47f9
Refactored acknowledge alerts button on Alerts by trigger dashboard p…
AWSHurneyt Feb 17, 2022
6588090
Adding a few more basic unit tests (#180)
annie3431 Feb 28, 2022
15fc4cc
Remove node version declaration in package.json (#166)
annie3431 Mar 1, 2022
cb6dbae
Update DestinationsService.js (#182)
Mar 5, 2022
e4c83cf
Add backport workflow (#176)
Mar 8, 2022
7b6ad7c
Configure test workflows to run on 1.x branches (#183)
Mar 8, 2022
7480540
Add 1.3 release notes (#175) (#185)
opensearch-trigger-bot[bot] Mar 9, 2022
26ac128
Add backport documentation link (#184) (#187)
opensearch-trigger-bot[bot] Mar 10, 2022
a5d42d7
Implemented support for cluster metrics monitors (#162) (#189)
AWSHurneyt Mar 11, 2022
751e78b
Merge branch '1.x' into 1.3release-1.x-merge
AWSHurneyt Mar 11, 2022
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
64 changes: 64 additions & 0 deletions cypress/fixtures/sample_cluster_metrics_monitor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"name": "sample_cluster_metrics_health_monitor",
"type": "monitor",
"monitor_type": "cluster_metrics_monitor",
"enabled": true,
"schedule": {
"period": {
"unit": "MINUTES",
"interval": 1
}
},
"inputs": [
{
"uri": {
"api_type": "CLUSTER_HEALTH",
"path": "_cluster/health/",
"path_params": "",
"url": "http://localhost:9200/_cluster/health/"
}
}
],
"triggers": [],
"ui_metadata": {
"schedule": {
"timezone": null,
"frequency": "interval",
"period": {
"unit": "MINUTES",
"interval": 1
},
"daily": 0,
"weekly": {
"tue": false,
"wed": false,
"thur": false,
"sat": false,
"fri": false,
"mon": false,
"sun": false
},
"monthly": {
"type": "day",
"day": 1
},
"cronExpression": "0 */1 * * *"
},
"search": {
"searchType": "clusterMetrics",
"timeField": "",
"aggregations": [],
"groupBy": [],
"bucketValue": 1,
"bucketUnitOfTime": "h",
"where": {
"fieldName": [],
"fieldRangeEnd": 0,
"fieldRangeStart": 0,
"fieldValue": "",
"operator": "is"
}
},
"monitor_type": "cluster_metrics_monitor"
}
}
Loading