Skip to content

Commit

Permalink
add missing error type mapping for apm-server monitoring (#36273) (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
graphaelli authored Dec 11, 2018
1 parent e5940ee commit ed60ff4
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 @@ -28,7 +28,7 @@ public final class MonitoringTemplateUtils {
* <p>
* It may be possible for this to diverge between templates and pipelines, but for now they're the same.
*/
public static final int LAST_UPDATED_VERSION = Version.V_6_5_0.id;
public static final int LAST_UPDATED_VERSION = Version.V_6_5_3.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": 6050099,
"version": 6050399,
"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
@@ -1,6 +1,6 @@
{
"index_patterns": [ ".monitoring-beats-${monitoring.template.version}-*" ],
"version": 6050099,
"version": 6050399,
"settings": {
"index.number_of_shards": 1,
"index.number_of_replicas": 0,
Expand Down Expand Up @@ -295,6 +295,9 @@
"unauthorized": {
"type": "long"
},
"internal": {
"type": "long"
},
"decode": {
"type": "long"
},
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": 6050099,
"version": 6050399,
"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": 6050099,
"version": 6050399,
"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": 6050099,
"version": 6050399,
"settings": {
"index.number_of_shards": 1,
"index.number_of_replicas": 0,
Expand Down

0 comments on commit ed60ff4

Please sign in to comment.