Skip to content

Commit

Permalink
1.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nsano-rururu committed Jun 9, 2021
1 parent e3aa072 commit 270f3a4
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 4 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- Interactively build alerts for your Elasticsearch data using a query builder
- Preview results in an interactive chart
- Test your alerts against historical data
- Send notifications to Slack, MS Teams, Email, Telegram, Jira, Line Notify, Mattermost, Command, Gitter, Amazon SNS, Amazon SES, Zabbix, Twilio, PagerTree, Exotel, GoogleChat, Stomp, Splunk On-Call (Formerly VictorOps), ServiceNow, Chatwork, Discord, TheHive, Alerta, Datadog or an HTTP POST endpoint
- Send notifications to Slack, MS Teams, Email, Telegram, Jira, Line Notify, Mattermost, Command, Gitter, Amazon SNS, Amazon SES, Zabbix, Twilio, PagerTree, Exotel, GoogleChat, Stomp, Splunk On-Call (Formerly VictorOps), ServiceNow, Chatwork, Discord, TheHive, Alerta, Datadog, Rocket.Chat or an HTTP POST endpoint
- Supports the Any, Blacklist, Whitelist, Change, Frequency, Flatline, Spike, Cardinality, New Term, and Metric Aggregation rule types
- View logs of when your alerts check, fire and fail

Expand Down Expand Up @@ -324,6 +324,17 @@ Please see https://elastalert2.readthedocs.io/en/latest/ruletypes.html#mattermos
mattermost_webhook_url: 'https://xxxxxx/hooks/xxxxxxxxxxxxxxxx'
```

#### How to setup Rocket.Chat?

Please see https://elastalert2.readthedocs.io/en/latest/ruletypes.html#rocket-chat for how to configure your `BaseRule.config` file.

- Replace rocket_chat_webhook_url with the URL of your webhook.
- Describe the following settings in BaseRule.config. Please set other settings on the screen.

```yaml
rocket_chat_webhook_url: 'https://xxxxxx/xxxxx/xxxxxxxxxxxxxxxx'
```

#### How to setup Email?

Sorry Not Support email_format.
Expand Down
86 changes: 84 additions & 2 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,94 @@

Some version upgrades require further configuration. Version specific upgrade instructions are below.

## -> 1.8.7

**kibana discover**

- kibana 7.13 support

**New options**

- Add options for Rocket.Chat.
https://elastalert2.readthedocs.io/en/latest/ruletypes.html#rocket-chat

```yaml
rocket_chat_webhook_url: 'https://xxxxxx/xxxxx/xxxxxxxxxxxxxxxx'
```
- New options for Amazon SES.
https://elastalert2.readthedocs.io/en/latest/ruletypes.html#aws-ses-amazon-simple-email-service
**./praeco/aws/config**
For example:
```
[default]
region = ap-northeast-1
```

**./praeco/aws/credentials**

For example:
```
[default]
aws_access_key_id = xxxxxxxxxxxxxxxxx
aws_secret_access_key = xxxxxxxxxxxxxxxxxxxxxxxxx
```

**Part of docker-compose.yml**

For example:
```yaml
elastalert:
container_name: elastalert
image: praecoapp/elastalert-server:latest
ports:
- 3030:3030
- 3333:3333
restart: always
volumes:
- ./elastalert/config/elastalert.yaml:/opt/elastalert/config.yaml
- ./elastalert/config/api.config.json:/opt/elastalert-server/config/config.json
- ./elastalert/rules:/opt/elastalert/rules
- ./elastalert/rule_templates:/opt/elastalert/rule_templates
- ./elastalert/aws/config:/home/node/.aws/config
- ./elastalert/aws/credentials:/home/node/.aws/credentials
```
**Add UI Setting**
**Mattermost**
- mattermostAttachKibanaDiscoverUrl
- mattermostKibanaDiscoverColor
- mattermostKibanaDiscoverTitle
- mattermost_title
- mattermost_title_link
- mattermost_footer
- mattermost_footer_icon
- mattermost_image_url
- mattermost_thumb_url
- mattermost_author_name
- mattermost_author_link
- mattermost_author_icon
**Slack**
- slack_footer
- slack_footer_icon
- slack_image_url
- slack_thumb_url
- slack_author_name
- slack_author_link
- slack_author_icon
- slack_msg_pretext
## -> 1.8.6
- New options for Datadog added.
- Add options for Datadog.
https://github.com/jertel/elastalert2/blob/master/docs/source/ruletypes.rst#datadog
- Add Support for Twilio Copilot.
- Add options for Twilio Copilot.
https://github.com/jertel/elastalert2/blob/master/docs/source/ruletypes.rst#twilio
## -> 1.8.5
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "praeco",
"version": "1.8.6",
"version": "1.8.7",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit 270f3a4

Please sign in to comment.