Skip to content

Commit

Permalink
[Monitoring] Monitor beat version (#73932)
Browse files Browse the repository at this point in the history
  • Loading branch information
graphaelli authored Jun 9, 2021
1 parent ef721c8 commit f725f99
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public final class MonitoringTemplateUtils {
* Note that the templates were last updated in 7.11.0, but the versions were not updated, meaning that upgrades
* to 7.11.0 would not have updated the templates. See https://github.com/elastic/elasticsearch/pull/69317.
*/
public static final int LAST_UPDATED_VERSION = Version.V_7_12_0.id;
public static final int LAST_UPDATED_VERSION = Version.V_7_14_0.id;

/**
* Current version of templates used in their name to differentiate from breaking changes (separate from product version).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"index_patterns": [ ".monitoring-alerts-${monitoring.template.version}" ],
"version": 7120099,
"version": 7140099,
"settings": {
"index": {
"number_of_shards": 1,
Expand Down
5 changes: 4 additions & 1 deletion x-pack/plugin/core/src/main/resources/monitoring-beats.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"index.number_of_replicas": 0,
"index.number_of_shards": 1
},
"version": 7120099,
"version": 7140099,
"mappings": {
"_doc": {
"dynamic": false,
Expand Down Expand Up @@ -291,6 +291,9 @@
"type": "long"
}
}
},
"version": {
"type": "keyword"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugin/core/src/main/resources/monitoring-es.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"index_patterns": [ ".monitoring-es-${monitoring.template.version}-*" ],
"version": 7120099,
"version": 7140099,
"settings": {
"index.number_of_shards": 1,
"index.number_of_replicas": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"index_patterns": [ ".monitoring-kibana-${monitoring.template.version}-*" ],
"version": 7120099,
"version": 7140099,
"settings": {
"index.number_of_shards": 1,
"index.number_of_replicas": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"index_patterns": [ ".monitoring-logstash-${monitoring.template.version}-*" ],
"version": 7120099,
"version": 7140099,
"settings": {
"index.number_of_shards": 1,
"index.number_of_replicas": 0,
Expand Down

0 comments on commit f725f99

Please sign in to comment.