File tree Expand file tree Collapse file tree 3 files changed +127
-1
lines changed
core/template-resources/src/main/resources
monitoring/src/main/java/org/elasticsearch/xpack/monitoring Expand file tree Collapse file tree 3 files changed +127
-1
lines changed Original file line number Diff line number Diff line change 786
786
},
787
787
"sampling" : {
788
788
"properties" : {
789
+ "tail" : {
790
+ "properties" : {
791
+ "dynamic_service_groups" : {
792
+ "type" : " long"
793
+ },
794
+ "events" : {
795
+ "properties" : {
796
+ "dropped" : {
797
+ "type" : " long"
798
+ },
799
+ "failed_writes" : {
800
+ "type" : " long"
801
+ },
802
+ "head_unsampled" : {
803
+ "type" : " long"
804
+ },
805
+ "processed" : {
806
+ "type" : " long"
807
+ },
808
+ "sampled" : {
809
+ "type" : " long"
810
+ },
811
+ "stored" : {
812
+ "type" : " long"
813
+ }
814
+ }
815
+ },
816
+ "storage" : {
817
+ "properties" : {
818
+ "lsm_size" : {
819
+ "type" : " long"
820
+ },
821
+ "value_log_size" : {
822
+ "type" : " long"
823
+ }
824
+ }
825
+ }
826
+ }
827
+ },
789
828
"transactions_dropped" : {
790
829
"type" : " long"
791
830
}
2219
2258
},
2220
2259
"sampling" : {
2221
2260
"properties" : {
2261
+ "tail" : {
2262
+ "properties" : {
2263
+ "dynamic_service_groups" : {
2264
+ "type" : " alias" ,
2265
+ "path" : " beat.stats.apm_server.sampling.tail.dynamic_service_groups"
2266
+ },
2267
+ "events" : {
2268
+ "properties" : {
2269
+ "dropped" : {
2270
+ "type" : " alias" ,
2271
+ "path" : " beat.stats.apm_server.sampling.tail.events.dropped"
2272
+ },
2273
+ "failed_writes" : {
2274
+ "type" : " alias" ,
2275
+ "path" : " beat.stats.apm_server.sampling.tail.events.failed_writes"
2276
+ },
2277
+ "head_unsampled" : {
2278
+ "type" : " alias" ,
2279
+ "path" : " beat.stats.apm_server.sampling.tail.events.head_unsampled"
2280
+ },
2281
+ "processed" : {
2282
+ "type" : " alias" ,
2283
+ "path" : " beat.stats.apm_server.sampling.tail.events.processed"
2284
+ },
2285
+ "sampled" : {
2286
+ "type" : " alias" ,
2287
+ "path" : " beat.stats.apm_server.sampling.tail.events.sampled"
2288
+ },
2289
+ "stored" : {
2290
+ "type" : " alias" ,
2291
+ "path" : " beat.stats.apm_server.sampling.tail.events.stored"
2292
+ }
2293
+ }
2294
+ },
2295
+ "storage" : {
2296
+ "properties" : {
2297
+ "lsm_size" : {
2298
+ "type" : " alias" ,
2299
+ "path" : " beat.stats.apm_server.sampling.tail.storage.lsm_size"
2300
+ },
2301
+ "value_log_size" : {
2302
+ "type" : " alias" ,
2303
+ "path" : " beat.stats.apm_server.sampling.tail.storage.value_log_size"
2304
+ }
2305
+ }
2306
+ }
2307
+ }
2308
+ },
2222
2309
"transactions_dropped" : {
2223
2310
"type" : " alias" ,
2224
2311
"path" : " beat.stats.apm_server.sampling.transactions_dropped"
Original file line number Diff line number Diff line change 966
966
},
967
967
"sampling" : {
968
968
"properties" : {
969
+ "tail" : {
970
+ "properties" : {
971
+ "dynamic_service_groups" : {
972
+ "type" : " long"
973
+ },
974
+ "events" : {
975
+ "properties" : {
976
+ "dropped" : {
977
+ "type" : " long"
978
+ },
979
+ "failed_writes" : {
980
+ "type" : " long"
981
+ },
982
+ "head_unsampled" : {
983
+ "type" : " long"
984
+ },
985
+ "processed" : {
986
+ "type" : " long"
987
+ },
988
+ "sampled" : {
989
+ "type" : " long"
990
+ },
991
+ "stored" : {
992
+ "type" : " long"
993
+ }
994
+ }
995
+ },
996
+ "storage" : {
997
+ "properties" : {
998
+ "lsm_size" : {
999
+ "type" : " long"
1000
+ },
1001
+ "value_log_size" : {
1002
+ "type" : " long"
1003
+ }
1004
+ }
1005
+ }
1006
+ }
1007
+ },
969
1008
"transactions_dropped" : {
970
1009
"type" : " long"
971
1010
}
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public class MonitoringTemplateRegistry extends IndexTemplateRegistry {
77
77
* writes monitoring data in ECS format as of 8.0. These templates define the ECS schema as well as alias fields for the old monitoring
78
78
* mappings that point to the corresponding ECS fields.
79
79
*/
80
- public static final int STACK_MONITORING_REGISTRY_VERSION = 8_00_00_99 + 18 ;
80
+ public static final int STACK_MONITORING_REGISTRY_VERSION = 8_00_00_99 + 21 ;
81
81
private static final String STACK_MONITORING_REGISTRY_VERSION_VARIABLE = "xpack.stack.monitoring.template.release.version" ;
82
82
private static final String STACK_TEMPLATE_VERSION = "8" ;
83
83
private static final String STACK_TEMPLATE_VERSION_VARIABLE = "xpack.stack.monitoring.template.version" ;
You can’t perform that action at this time.
0 commit comments