Skip to content

Instantly share code, notes, and snippets.

@tlinhart
Last active April 15, 2021 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlinhart/857a46ff46fd6d0afeb43fa04dd62920 to your computer and use it in GitHub Desktop.
Save tlinhart/857a46ff46fd6d0afeb43fa04dd62920 to your computer and use it in GitHub Desktop.
Elasticsearch cache testing
# GET /_cluster/settings
{
"persistent": {},
"transient": {}
}
# GET /_cluster/stats
{
"_nodes": {
"total": 1,
"successful": 1,
"failed": 0
},
"cluster_name": "es-test",
"cluster_uuid": "ZzobHNUiR86jwCS9iKZ7Qg",
"timestamp": 1618478780915,
"status": "yellow",
"indices": {
"count": 2,
"shards": {
"total": 2,
"primaries": 2,
"replication": 0,
"index": {
"shards": {
"min": 1,
"max": 1,
"avg": 1
},
"primaries": {
"min": 1,
"max": 1,
"avg": 1
},
"replication": {
"min": 0,
"max": 0,
"avg": 0
}
}
},
"docs": {
"count": 20503,
"deleted": 0
},
"store": {
"size_in_bytes": 15962350,
"reserved_in_bytes": 0
},
"fielddata": {
"memory_size_in_bytes": 0,
"evictions": 0
},
"query_cache": {
"memory_size_in_bytes": 3680,
"total_count": 709,
"hit_count": 673,
"miss_count": 36,
"cache_size": 1,
"cache_count": 4,
"evictions": 3
},
"completion": {
"size_in_bytes": 0
},
"segments": {
"count": 3,
"memory_in_bytes": 63180,
"terms_memory_in_bytes": 38720,
"stored_fields_memory_in_bytes": 1496,
"term_vectors_memory_in_bytes": 0,
"norms_memory_in_bytes": 4800,
"points_memory_in_bytes": 0,
"doc_values_memory_in_bytes": 18164,
"index_writer_memory_in_bytes": 0,
"version_map_memory_in_bytes": 0,
"fixed_bit_set_memory_in_bytes": 0,
"max_unsafe_auto_id_timestamp": -1,
"file_sizes": {}
},
"mappings": {
"field_types": [
{
"name": "boolean",
"count": 10,
"index_count": 1
},
{
"name": "date",
"count": 6,
"index_count": 2
},
{
"name": "float",
"count": 21,
"index_count": 2
},
{
"name": "keyword",
"count": 40,
"index_count": 2
},
{
"name": "long",
"count": 8,
"index_count": 1
},
{
"name": "object",
"count": 5,
"index_count": 2
},
{
"name": "text",
"count": 40,
"index_count": 2
}
]
},
"analysis": {
"char_filter_types": [],
"tokenizer_types": [],
"filter_types": [],
"analyzer_types": [],
"built_in_char_filters": [],
"built_in_tokenizers": [],
"built_in_filters": [],
"built_in_analyzers": []
},
"versions": [
{
"version": "7.12.0",
"index_count": 2,
"primary_shard_count": 2,
"total_primary_bytes": 15962350
}
]
},
"nodes": {
"count": {
"total": 1,
"coordinating_only": 0,
"data": 1,
"data_cold": 1,
"data_content": 1,
"data_frozen": 1,
"data_hot": 1,
"data_warm": 1,
"ingest": 1,
"master": 1,
"ml": 1,
"remote_cluster_client": 1,
"transform": 1,
"voting_only": 0
},
"versions": [
"7.12.0"
],
"os": {
"available_processors": 4,
"allocated_processors": 4,
"names": [
{
"name": "Linux",
"count": 1
}
],
"pretty_names": [
{
"pretty_name": "CentOS Linux 8",
"count": 1
}
],
"architectures": [
{
"arch": "amd64",
"count": 1
}
],
"mem": {
"total_in_bytes": 4136337408,
"free_in_bytes": 149934080,
"used_in_bytes": 3986403328,
"free_percent": 4,
"used_percent": 96
}
},
"process": {
"cpu": {
"percent": 0
},
"open_file_descriptors": {
"min": 296,
"max": 296,
"avg": 296
}
},
"jvm": {
"max_uptime_in_millis": 235672754,
"versions": [
{
"version": "15.0.1",
"vm_name": "OpenJDK 64-Bit Server VM",
"vm_version": "15.0.1+9",
"vm_vendor": "AdoptOpenJDK",
"bundled_jdk": true,
"using_bundled_jdk": true,
"count": 1
}
],
"mem": {
"heap_used_in_bytes": 1098756864,
"heap_max_in_bytes": 2147483648
},
"threads": 50
},
"fs": {
"total_in_bytes": 210301329408,
"free_in_bytes": 181866373120,
"available_in_bytes": 171112337408
},
"plugins": [
{
"name": "analysis-icu",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "The ICU Analysis plugin integrates the Lucene ICU module into Elasticsearch, adding ICU-related analysis components.",
"classname": "org.elasticsearch.plugin.analysis.icu.AnalysisICUPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
}
],
"network_types": {
"transport_types": {
"security4": 1
},
"http_types": {
"security4": 1
}
},
"discovery_types": {
"single-node": 1
},
"packaging_types": [
{
"flavor": "default",
"type": "docker",
"count": 1
}
],
"ingest": {
"number_of_pipelines": 1,
"processor_stats": {
"gsub": {
"count": 0,
"failed": 0,
"current": 0,
"time_in_millis": 0
},
"script": {
"count": 0,
"failed": 0,
"current": 0,
"time_in_millis": 0
}
}
}
}
}
# GET /_nodes/stats
{
"_nodes": {
"total": 1,
"successful": 1,
"failed": 0
},
"cluster_name": "es-test",
"nodes": {
"2Mza1iPeQViYFiuzaMMQvg": {
"timestamp": 1618480367749,
"name": "f09a1378ed75",
"transport_address": "172.17.0.11:9300",
"host": "172.17.0.11",
"ip": "172.17.0.11:9300",
"roles": [
"data",
"data_cold",
"data_content",
"data_frozen",
"data_hot",
"data_warm",
"ingest",
"master",
"ml",
"remote_cluster_client",
"transform"
],
"attributes": {
"ml.machine_memory": "4136337408",
"xpack.installed": "true",
"transform.node": "true",
"ml.max_open_jobs": "20",
"ml.max_jvm_size": "2147483648"
},
"indices": {
"docs": {
"count": 20503,
"deleted": 0
},
"store": {
"size_in_bytes": 15962350,
"reserved_in_bytes": 0
},
"indexing": {
"index_total": 20533,
"index_time_in_millis": 9923,
"index_current": 0,
"index_failed": 0,
"delete_total": 0,
"delete_time_in_millis": 0,
"delete_current": 0,
"noop_update_total": 0,
"is_throttled": false,
"throttle_time_in_millis": 0
},
"get": {
"total": 0,
"time_in_millis": 0,
"exists_total": 0,
"exists_time_in_millis": 0,
"missing_total": 0,
"missing_time_in_millis": 0,
"current": 0
},
"search": {
"open_contexts": 0,
"query_total": 795,
"query_time_in_millis": 1479,
"query_current": 0,
"fetch_total": 795,
"fetch_time_in_millis": 778,
"fetch_current": 0,
"scroll_total": 0,
"scroll_time_in_millis": 0,
"scroll_current": 0,
"suggest_total": 0,
"suggest_time_in_millis": 0,
"suggest_current": 0
},
"merges": {
"current": 0,
"current_docs": 0,
"current_size_in_bytes": 0,
"total": 23,
"total_time_in_millis": 16331,
"total_docs": 108700,
"total_size_in_bytes": 97379985,
"total_stopped_time_in_millis": 0,
"total_throttled_time_in_millis": 0,
"total_auto_throttle_in_bytes": 272629760
},
"refresh": {
"total": 255,
"total_time_in_millis": 9676,
"external_total": 252,
"external_total_time_in_millis": 9953,
"listeners": 0
},
"flush": {
"total": 3,
"periodic": 0,
"total_time_in_millis": 155
},
"warmer": {
"current": 0,
"total": 217,
"total_time_in_millis": 30
},
"query_cache": {
"memory_size_in_bytes": 3680,
"total_count": 709,
"hit_count": 673,
"miss_count": 36,
"cache_size": 1,
"cache_count": 4,
"evictions": 3
},
"fielddata": {
"memory_size_in_bytes": 0,
"evictions": 0
},
"completion": {
"size_in_bytes": 0
},
"segments": {
"count": 3,
"memory_in_bytes": 63180,
"terms_memory_in_bytes": 38720,
"stored_fields_memory_in_bytes": 1496,
"term_vectors_memory_in_bytes": 0,
"norms_memory_in_bytes": 4800,
"points_memory_in_bytes": 0,
"doc_values_memory_in_bytes": 18164,
"index_writer_memory_in_bytes": 0,
"version_map_memory_in_bytes": 0,
"fixed_bit_set_memory_in_bytes": 0,
"max_unsafe_auto_id_timestamp": -1,
"file_sizes": {}
},
"translog": {
"operations": 0,
"size_in_bytes": 110,
"uncommitted_operations": 0,
"uncommitted_size_in_bytes": 110,
"earliest_last_modified_age": 92377011
},
"request_cache": {
"memory_size_in_bytes": 0,
"evictions": 0,
"hit_count": 0,
"miss_count": 1
},
"recovery": {
"current_as_source": 0,
"current_as_target": 0,
"throttle_time_in_millis": 0
}
},
"os": {
"timestamp": 1618480367753,
"cpu": {
"percent": 3,
"load_average": {
"1m": 0,
"5m": 0.02,
"15m": 0.08
}
},
"mem": {
"total_in_bytes": 4136337408,
"free_in_bytes": 157425664,
"used_in_bytes": 3978911744,
"free_percent": 4,
"used_percent": 96
},
"swap": {
"total_in_bytes": 4136628224,
"free_in_bytes": 2068750336,
"used_in_bytes": 2067877888
},
"cgroup": {
"cpuacct": {
"control_group": "/",
"usage_nanos": 1181278269269
},
"cpu": {
"control_group": "/",
"cfs_period_micros": 100000,
"cfs_quota_micros": -1,
"stat": {
"number_of_elapsed_periods": 0,
"number_of_times_throttled": 0,
"time_throttled_nanos": 0
}
},
"memory": {
"control_group": "/",
"limit_in_bytes": "9223372036854771712",
"usage_in_bytes": "2680541184"
}
}
},
"process": {
"timestamp": 1618480367753,
"open_file_descriptors": 295,
"max_file_descriptors": 1048576,
"cpu": {
"percent": 0,
"total_in_millis": 1169220
},
"mem": {
"total_virtual_in_bytes": 6086230016
}
},
"jvm": {
"timestamp": 1618480367754,
"uptime_in_millis": 237259595,
"mem": {
"heap_used_in_bytes": 1174315824,
"heap_used_percent": 54,
"heap_committed_in_bytes": 2147483648,
"heap_max_in_bytes": 2147483648,
"non_heap_used_in_bytes": 174863376,
"non_heap_committed_in_bytes": 182153216,
"pools": {
"young": {
"used_in_bytes": 1061158912,
"max_in_bytes": 0,
"peak_used_in_bytes": 1283457024,
"peak_max_in_bytes": 0
},
"old": {
"used_in_bytes": 112937984,
"max_in_bytes": 2147483648,
"peak_used_in_bytes": 112937984,
"peak_max_in_bytes": 2147483648
},
"survivor": {
"used_in_bytes": 218928,
"max_in_bytes": 0,
"peak_used_in_bytes": 66786432,
"peak_max_in_bytes": 0
}
}
},
"threads": {
"count": 50,
"peak_count": 50
},
"gc": {
"collectors": {
"young": {
"collection_count": 201,
"collection_time_in_millis": 38577
},
"old": {
"collection_count": 0,
"collection_time_in_millis": 0
}
}
},
"buffer_pools": {
"mapped": {
"count": 9,
"used_in_bytes": 8517374,
"total_capacity_in_bytes": 8517374
},
"direct": {
"count": 36,
"used_in_bytes": 4652138,
"total_capacity_in_bytes": 4652137
},
"mapped - 'non-volatile memory'": {
"count": 0,
"used_in_bytes": 0,
"total_capacity_in_bytes": 0
}
},
"classes": {
"current_loaded_count": 22851,
"total_loaded_count": 22851,
"total_unloaded_count": 0
}
},
"thread_pool": {
"analyze": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"ccr": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"fetch_shard_started": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"fetch_shard_store": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"flush": {
"threads": 1,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 1,
"completed": 3
},
"force_merge": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"generic": {
"threads": 4,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 4,
"completed": 282883
},
"get": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"listener": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"management": {
"threads": 4,
"queue": 0,
"active": 1,
"rejected": 0,
"largest": 4,
"completed": 38816
},
"ml_datafeed": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"ml_job_comms": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"ml_utility": {
"threads": 3,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 3,
"completed": 236726
},
"refresh": {
"threads": 2,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 2,
"completed": 330446
},
"rollup_indexing": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"search": {
"threads": 7,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 7,
"completed": 1590
},
"search_throttled": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"searchable_snapshots_cache_fetch_async": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"searchable_snapshots_cache_prewarming": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"security-crypto": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"security-token-key": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"snapshot": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"system_read": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"system_write": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"transform_indexing": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"warmer": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"watcher": {
"threads": 0,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 0,
"completed": 0
},
"write": {
"threads": 4,
"queue": 0,
"active": 0,
"rejected": 0,
"largest": 4,
"completed": 277
}
},
"fs": {
"timestamp": 1618480367865,
"total": {
"total_in_bytes": 210301329408,
"free_in_bytes": 181866086400,
"available_in_bytes": 171112050688
},
"data": [
{
"path": "/usr/share/elasticsearch/data/nodes/0",
"mount": "/ (overlay)",
"type": "overlay",
"total_in_bytes": 210301329408,
"free_in_bytes": 181866086400,
"available_in_bytes": 171112050688
}
],
"io_stats": {}
},
"transport": {
"server_open": 0,
"total_outbound_connections": 0,
"rx_count": 0,
"rx_size_in_bytes": 0,
"tx_count": 0,
"tx_size_in_bytes": 0
},
"http": {
"current_open": 1,
"total_opened": 2068
},
"breakers": {
"request": {
"limit_size_in_bytes": 1288490188,
"limit_size": "1.1gb",
"estimated_size_in_bytes": 0,
"estimated_size": "0b",
"overhead": 1,
"tripped": 0
},
"fielddata": {
"limit_size_in_bytes": 858993459,
"limit_size": "819.1mb",
"estimated_size_in_bytes": 0,
"estimated_size": "0b",
"overhead": 1.03,
"tripped": 0
},
"in_flight_requests": {
"limit_size_in_bytes": 2147483648,
"limit_size": "2gb",
"estimated_size_in_bytes": 0,
"estimated_size": "0b",
"overhead": 2,
"tripped": 0
},
"model_inference": {
"limit_size_in_bytes": 1073741824,
"limit_size": "1gb",
"estimated_size_in_bytes": 0,
"estimated_size": "0b",
"overhead": 1,
"tripped": 0
},
"accounting": {
"limit_size_in_bytes": 2147483648,
"limit_size": "2gb",
"estimated_size_in_bytes": 63180,
"estimated_size": "61.6kb",
"overhead": 1,
"tripped": 0
},
"parent": {
"limit_size_in_bytes": 2040109465,
"limit_size": "1.8gb",
"estimated_size_in_bytes": 1174315824,
"estimated_size": "1gb",
"overhead": 1,
"tripped": 0
}
},
"script": {
"compilations": 1,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
"discovery": {
"cluster_state_queue": {
"total": 0,
"pending": 0,
"committed": 0
},
"published_cluster_states": {
"full_states": 2,
"incompatible_diffs": 0,
"compatible_diffs": 109
}
},
"ingest": {
"total": {
"count": 0,
"time_in_millis": 0,
"current": 0,
"failed": 0
},
"pipelines": {
"xpack_monitoring_6": {
"count": 0,
"time_in_millis": 0,
"current": 0,
"failed": 0,
"processors": [
{
"script": {
"type": "script",
"stats": {
"count": 0,
"time_in_millis": 0,
"current": 0,
"failed": 0
}
}
},
{
"gsub": {
"type": "gsub",
"stats": {
"count": 0,
"time_in_millis": 0,
"current": 0,
"failed": 0
}
}
}
]
},
"xpack_monitoring_7": {
"count": 0,
"time_in_millis": 0,
"current": 0,
"failed": 0,
"processors": []
}
}
},
"adaptive_selection": {
"2Mza1iPeQViYFiuzaMMQvg": {
"outgoing_searches": 0,
"avg_queue_size": 0,
"avg_service_time_ns": 933632,
"avg_response_time_ns": 1637284,
"rank": "1.6"
}
},
"script_cache": {
"sum": {
"compilations": 1,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
"contexts": [
{
"context": "aggregation_selector",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "aggs",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "aggs_combine",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "aggs_init",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "aggs_map",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "aggs_reduce",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "analysis",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "boolean_script_field_script_field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "bucket_aggregation",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "date_script_field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "double_script_field_script_field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "filter",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "geo_point_script_field_script_field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "ingest",
"compilations": 1,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "ingest_template",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "interval",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "ip_script_field_script_field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "long_script_field_script_field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "moving-function",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "number_sort",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "painless_test",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "processor_conditional",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "score",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "script_heuristic",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "similarity",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "similarity_weight",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "string_script_field_script_field",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "string_sort",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "template",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "terms_set",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "update",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "watcher_condition",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "watcher_transform",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
},
{
"context": "xpack_template",
"compilations": 0,
"cache_evictions": 0,
"compilation_limit_triggered": 0
}
]
},
"indexing_pressure": {
"memory": {
"current": {
"combined_coordinating_and_primary_in_bytes": 0,
"coordinating_in_bytes": 0,
"primary_in_bytes": 0,
"replica_in_bytes": 0,
"all_in_bytes": 0
},
"total": {
"combined_coordinating_and_primary_in_bytes": 33607639,
"coordinating_in_bytes": 33607639,
"primary_in_bytes": 34096623,
"replica_in_bytes": 0,
"all_in_bytes": 33607639,
"coordinating_rejections": 0,
"primary_rejections": 0,
"replica_rejections": 0
},
"limit_in_bytes": 214748364
}
}
}
}
}
# GET /_nodes
{
"_nodes": {
"total": 1,
"successful": 1,
"failed": 0
},
"cluster_name": "es-test",
"nodes": {
"2Mza1iPeQViYFiuzaMMQvg": {
"name": "f09a1378ed75",
"transport_address": "172.17.0.11:9300",
"host": "172.17.0.11",
"ip": "172.17.0.11",
"version": "7.12.0",
"build_flavor": "default",
"build_type": "docker",
"build_hash": "78722783c38caa25a70982b5b042074cde5d3b3a",
"total_indexing_buffer": 214748364,
"roles": [
"data",
"data_cold",
"data_content",
"data_frozen",
"data_hot",
"data_warm",
"ingest",
"master",
"ml",
"remote_cluster_client",
"transform"
],
"attributes": {
"ml.machine_memory": "4136337408",
"xpack.installed": "true",
"transform.node": "true",
"ml.max_open_jobs": "20",
"ml.max_jvm_size": "2147483648"
},
"settings": {
"cluster": {
"name": "es-test",
"election": {
"strategy": "supports_voting_only"
}
},
"node": {
"attr": {
"transform": {
"node": "true"
},
"xpack": {
"installed": "true"
},
"ml": {
"max_jvm_size": "2147483648",
"machine_memory": "4136337408",
"max_open_jobs": "20"
}
},
"name": "f09a1378ed75"
},
"path": {
"logs": "/usr/share/elasticsearch/logs",
"home": "/usr/share/elasticsearch"
},
"discovery": {
"type": "single-node"
},
"client": {
"type": "node"
},
"http": {
"type": "security4",
"type.default": "netty4"
},
"bootstrap": {
"memory_lock": "true"
},
"transport": {
"type": "security4",
"features": {
"x-pack": "true"
},
"type.default": "netty4"
},
"network": {
"host": "0.0.0.0"
}
},
"os": {
"refresh_interval_in_millis": 1000,
"name": "Linux",
"pretty_name": "CentOS Linux 8",
"arch": "amd64",
"version": "4.15.0-99-generic",
"available_processors": 4,
"allocated_processors": 4
},
"process": {
"refresh_interval_in_millis": 1000,
"id": 6,
"mlockall": true
},
"jvm": {
"pid": 6,
"version": "15.0.1",
"vm_name": "OpenJDK 64-Bit Server VM",
"vm_version": "15.0.1+9",
"vm_vendor": "AdoptOpenJDK",
"bundled_jdk": true,
"using_bundled_jdk": true,
"start_time_in_millis": 1618243109182,
"mem": {
"heap_init_in_bytes": 2147483648,
"heap_max_in_bytes": 2147483648,
"non_heap_init_in_bytes": 7667712,
"non_heap_max_in_bytes": 0,
"direct_max_in_bytes": 0
},
"gc_collectors": [
"G1 Young Generation",
"G1 Old Generation"
],
"memory_pools": [
"CodeHeap 'non-nmethods'",
"Metaspace",
"CodeHeap 'profiled nmethods'",
"Compressed Class Space",
"G1 Eden Space",
"G1 Old Gen",
"G1 Survivor Space",
"CodeHeap 'non-profiled nmethods'"
],
"using_compressed_ordinary_object_pointers": "true",
"input_arguments": [
"-Xshare:auto",
"-Des.networkaddress.cache.ttl=60",
"-Des.networkaddress.cache.negative.ttl=10",
"-XX:+AlwaysPreTouch",
"-Xss1m",
"-Djava.awt.headless=true",
"-Dfile.encoding=UTF-8",
"-Djna.nosys=true",
"-XX:-OmitStackTraceInFastThrow",
"-XX:+ShowCodeDetailsInExceptionMessages",
"-Dio.netty.noUnsafe=true",
"-Dio.netty.noKeySetOptimization=true",
"-Dio.netty.recycler.maxCapacityPerThread=0",
"-Dio.netty.allocator.numDirectArenas=0",
"-Dlog4j.shutdownHookEnabled=false",
"-Dlog4j2.disable.jmx=true",
"-Djava.locale.providers=SPI,COMPAT",
"--add-opens=java.base/java.io=ALL-UNNAMED",
"-XX:+UseG1GC",
"-Djava.io.tmpdir=/tmp/elasticsearch-3535539664959760134",
"-XX:+HeapDumpOnOutOfMemoryError",
"-XX:HeapDumpPath=data",
"-XX:ErrorFile=logs/hs_err_pid%p.log",
"-Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m",
"-Des.cgroups.hierarchy.override=/",
"-Xms2g",
"-Xmx2g",
"-XX:MaxDirectMemorySize=1073741824",
"-XX:G1HeapRegionSize=4m",
"-XX:InitiatingHeapOccupancyPercent=30",
"-XX:G1ReservePercent=15",
"-Des.path.home=/usr/share/elasticsearch",
"-Des.path.conf=/usr/share/elasticsearch/config",
"-Des.distribution.flavor=default",
"-Des.distribution.type=docker",
"-Des.bundled_jdk=true"
]
},
"thread_pool": {
"force_merge": {
"type": "fixed",
"size": 1,
"queue_size": -1
},
"ml_datafeed": {
"type": "scaling",
"core": 1,
"max": 512,
"keep_alive": "1m",
"queue_size": -1
},
"searchable_snapshots_cache_fetch_async": {
"type": "scaling",
"core": 0,
"max": 28,
"keep_alive": "30s",
"queue_size": -1
},
"fetch_shard_started": {
"type": "scaling",
"core": 1,
"max": 8,
"keep_alive": "5m",
"queue_size": -1
},
"listener": {
"type": "fixed",
"size": 2,
"queue_size": -1
},
"rollup_indexing": {
"type": "fixed",
"size": 1,
"queue_size": -1
},
"search": {
"type": "fixed_auto_queue_size",
"size": 7,
"queue_size": 1000
},
"security-crypto": {
"type": "fixed",
"size": 2,
"queue_size": 1000
},
"ccr": {
"type": "fixed",
"size": 32,
"queue_size": 100
},
"flush": {
"type": "scaling",
"core": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
},
"fetch_shard_store": {
"type": "scaling",
"core": 1,
"max": 8,
"keep_alive": "5m",
"queue_size": -1
},
"ml_utility": {
"type": "scaling",
"core": 1,
"max": 2048,
"keep_alive": "10m",
"queue_size": -1
},
"get": {
"type": "fixed",
"size": 4,
"queue_size": 1000
},
"system_read": {
"type": "fixed",
"size": 2,
"queue_size": 2000
},
"transform_indexing": {
"type": "fixed",
"size": 4,
"queue_size": 4
},
"write": {
"type": "fixed",
"size": 4,
"queue_size": 10000
},
"watcher": {
"type": "fixed",
"size": 20,
"queue_size": 1000
},
"security-token-key": {
"type": "fixed",
"size": 1,
"queue_size": 1000
},
"refresh": {
"type": "scaling",
"core": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
},
"system_write": {
"type": "fixed",
"size": 2,
"queue_size": 1000
},
"generic": {
"type": "scaling",
"core": 4,
"max": 128,
"keep_alive": "30s",
"queue_size": -1
},
"warmer": {
"type": "scaling",
"core": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
},
"management": {
"type": "scaling",
"core": 1,
"max": 5,
"keep_alive": "5m",
"queue_size": -1
},
"analyze": {
"type": "fixed",
"size": 1,
"queue_size": 16
},
"searchable_snapshots_cache_prewarming": {
"type": "scaling",
"core": 0,
"max": 16,
"keep_alive": "30s",
"queue_size": -1
},
"ml_job_comms": {
"type": "scaling",
"core": 4,
"max": 2048,
"keep_alive": "1m",
"queue_size": -1
},
"snapshot": {
"type": "scaling",
"core": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
},
"search_throttled": {
"type": "fixed_auto_queue_size",
"size": 1,
"queue_size": 100
}
},
"transport": {
"bound_address": [
"0.0.0.0:9300"
],
"publish_address": "172.17.0.11:9300",
"profiles": {}
},
"http": {
"bound_address": [
"0.0.0.0:9200"
],
"publish_address": "172.17.0.11:9200",
"max_content_length_in_bytes": 104857600
},
"plugins": [
{
"name": "analysis-icu",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "The ICU Analysis plugin integrates the Lucene ICU module into Elasticsearch, adding ICU-related analysis components.",
"classname": "org.elasticsearch.plugin.analysis.icu.AnalysisICUPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
}
],
"modules": [
{
"name": "aggs-matrix-stats",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Adds aggregations whose input are a list of numeric fields and output includes a matrix.",
"classname": "org.elasticsearch.search.aggregations.matrix.MatrixAggregationPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "analysis-common",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Adds \"built in\" analyzers to Elasticsearch.",
"classname": "org.elasticsearch.analysis.common.CommonAnalysisPlugin",
"extended_plugins": [
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "constant-keyword",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Module for the constant-keyword field type, which is a specialization of keyword for the case when all documents have the same value.",
"classname": "org.elasticsearch.xpack.constantkeyword.ConstantKeywordMapperPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "flattened",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Module for the flattened field type, which allows JSON objects to be flattened into a single field.",
"classname": "org.elasticsearch.xpack.flattened.FlattenedMapperPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "frozen-indices",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for the frozen indices functionality",
"classname": "org.elasticsearch.xpack.frozen.FrozenIndices",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "ingest-common",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Module for ingest processors that do not require additional security permissions or have large dependencies and resources",
"classname": "org.elasticsearch.ingest.common.IngestCommonPlugin",
"extended_plugins": [
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "ingest-geoip",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Ingest processor that uses looksup geo data based on ip adresses using the Maxmind geo database",
"classname": "org.elasticsearch.ingest.geoip.IngestGeoIpPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "ingest-user-agent",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Ingest processor that extracts information from a user agent",
"classname": "org.elasticsearch.ingest.useragent.IngestUserAgentPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "kibana",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Plugin exposing APIs for Kibana system indices",
"classname": "org.elasticsearch.kibana.KibanaPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "lang-expression",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Lucene expressions integration for Elasticsearch",
"classname": "org.elasticsearch.script.expression.ExpressionPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "lang-mustache",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Mustache scripting integration for Elasticsearch",
"classname": "org.elasticsearch.script.mustache.MustachePlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "lang-painless",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "An easy, safe and fast scripting language for Elasticsearch",
"classname": "org.elasticsearch.painless.PainlessPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "mapper-extras",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Adds advanced field mappers",
"classname": "org.elasticsearch.index.mapper.MapperExtrasPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "mapper-version",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for a field type to store sofware versions",
"classname": "org.elasticsearch.xpack.versionfield.VersionFieldPlugin",
"extended_plugins": [
"x-pack-core",
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "parent-join",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "This module adds the support parent-child queries and aggregations",
"classname": "org.elasticsearch.join.ParentJoinPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "percolator",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Percolator module adds capability to index queries and query these queries by specifying documents",
"classname": "org.elasticsearch.percolator.PercolatorPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "rank-eval",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "The Rank Eval module adds APIs to evaluate ranking quality.",
"classname": "org.elasticsearch.index.rankeval.RankEvalPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "reindex",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "The Reindex module adds APIs to reindex from one index to another or update documents in place.",
"classname": "org.elasticsearch.index.reindex.ReindexPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "repositories-metering-api",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Repositories metering API",
"classname": "org.elasticsearch.xpack.repositories.metering.RepositoriesMeteringPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "repository-encrypted",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - client-side encrypted repositories.",
"classname": "org.elasticsearch.repositories.encrypted.EncryptedRepositoryPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "repository-url",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Module for URL repository",
"classname": "org.elasticsearch.plugin.repository.url.URLRepositoryPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "search-business-rules",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for applying business rules to search result rankings",
"classname": "org.elasticsearch.xpack.searchbusinessrules.SearchBusinessRules",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "searchable-snapshots",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for the searchable snapshots functionality",
"classname": "org.elasticsearch.xpack.searchablesnapshots.SearchableSnapshots",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "snapshot-repo-test-kit",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for a test kit for snapshot repositories",
"classname": "org.elasticsearch.repositories.blobstore.testkit.SnapshotRepositoryTestKit",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "spatial",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for Basic Spatial features",
"classname": "org.elasticsearch.xpack.spatial.SpatialPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "transform",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin to transform data",
"classname": "org.elasticsearch.xpack.transform.Transform",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "transport-netty4",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Netty 4 based transport implementation",
"classname": "org.elasticsearch.transport.Netty4Plugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "unsigned-long",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Module for the unsigned long field type",
"classname": "org.elasticsearch.xpack.unsignedlong.UnsignedLongMapperPlugin",
"extended_plugins": [
"x-pack-core",
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "vectors",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for working with vectors",
"classname": "org.elasticsearch.xpack.vectors.Vectors",
"extended_plugins": [
"x-pack-core",
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "wildcard",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A plugin for a keyword field type with efficient wildcard search",
"classname": "org.elasticsearch.xpack.wildcard.Wildcard",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-aggregate-metric",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Module for the aggregate_metric field type, which allows pre-aggregated fields to be stored a single field.",
"classname": "org.elasticsearch.xpack.aggregatemetric.AggregateMetricMapperPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-analytics",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Analytics",
"classname": "org.elasticsearch.xpack.analytics.AnalyticsPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-async",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A module which handles common async operations",
"classname": "org.elasticsearch.xpack.async.AsyncResultsIndexPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-async-search",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A module which allows to track the progress of a search asynchronously.",
"classname": "org.elasticsearch.xpack.search.AsyncSearch",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-autoscaling",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Autoscaling",
"classname": "org.elasticsearch.xpack.autoscaling.Autoscaling",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-ccr",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - CCR",
"classname": "org.elasticsearch.xpack.ccr.Ccr",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-core",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Core",
"classname": "org.elasticsearch.xpack.core.XPackPlugin",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-data-streams",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Data Streams",
"classname": "org.elasticsearch.xpack.datastreams.DataStreamsPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-deprecation",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Deprecation",
"classname": "org.elasticsearch.xpack.deprecation.Deprecation",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-enrich",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Enrich",
"classname": "org.elasticsearch.xpack.enrich.EnrichPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-eql",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "The Elasticsearch plugin that powers EQL for Elasticsearch",
"classname": "org.elasticsearch.xpack.eql.plugin.EqlPlugin",
"extended_plugins": [
"x-pack-ql",
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-fleet",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Plugin exposing APIs for Fleet system indices",
"classname": "org.elasticsearch.xpack.fleet.Fleet",
"extended_plugins": [],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-graph",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Graph",
"classname": "org.elasticsearch.xpack.graph.Graph",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-identity-provider",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Identity Provider",
"classname": "org.elasticsearch.xpack.idp.IdentityProviderPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-ilm",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Index Lifecycle Management",
"classname": "org.elasticsearch.xpack.ilm.IndexLifecycle",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-ingest",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Ingest",
"classname": "org.elasticsearch.xpack.ingest.IngestPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-logstash",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Logstash",
"classname": "org.elasticsearch.xpack.logstash.Logstash",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-ml",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Machine Learning",
"classname": "org.elasticsearch.xpack.ml.MachineLearning",
"extended_plugins": [
"x-pack-autoscaling",
"lang-painless"
],
"has_native_controller": true,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-monitoring",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Monitoring",
"classname": "org.elasticsearch.xpack.monitoring.Monitoring",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-ql",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch infrastructure plugin for EQL and SQL for Elasticsearch",
"classname": "org.elasticsearch.xpack.ql.plugin.QlPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-rollup",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Rollup",
"classname": "org.elasticsearch.xpack.rollup.Rollup",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-runtime-fields",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "A module which adds support for runtime fields",
"classname": "org.elasticsearch.xpack.runtimefields.RuntimeFields",
"extended_plugins": [
"x-pack-core",
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-security",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Security",
"classname": "org.elasticsearch.xpack.security.Security",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-sql",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "The Elasticsearch plugin that powers SQL for Elasticsearch",
"classname": "org.elasticsearch.xpack.sql.plugin.SqlPlugin",
"extended_plugins": [
"x-pack-ql",
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-stack",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Stack",
"classname": "org.elasticsearch.xpack.stack.StackPlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-text-structure",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Text Structure",
"classname": "org.elasticsearch.xpack.textstructure.TextStructurePlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-voting-only-node",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Voting-only node",
"classname": "org.elasticsearch.cluster.coordination.VotingOnlyNodePlugin",
"extended_plugins": [
"x-pack-core"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
},
{
"name": "x-pack-watcher",
"version": "7.12.0",
"elasticsearch_version": "7.12.0",
"java_version": "1.8",
"description": "Elasticsearch Expanded Pack Plugin - Watcher",
"classname": "org.elasticsearch.xpack.watcher.Watcher",
"extended_plugins": [
"x-pack-core",
"lang-painless"
],
"has_native_controller": false,
"licensed": false,
"type": "isolated"
}
],
"ingest": {
"processors": [
{
"type": "append"
},
{
"type": "bytes"
},
{
"type": "circle"
},
{
"type": "community_id"
},
{
"type": "convert"
},
{
"type": "csv"
},
{
"type": "date"
},
{
"type": "date_index_name"
},
{
"type": "dissect"
},
{
"type": "dot_expander"
},
{
"type": "drop"
},
{
"type": "enrich"
},
{
"type": "fail"
},
{
"type": "fingerprint"
},
{
"type": "foreach"
},
{
"type": "geoip"
},
{
"type": "grok"
},
{
"type": "gsub"
},
{
"type": "html_strip"
},
{
"type": "inference"
},
{
"type": "join"
},
{
"type": "json"
},
{
"type": "kv"
},
{
"type": "lowercase"
},
{
"type": "network_direction"
},
{
"type": "pipeline"
},
{
"type": "remove"
},
{
"type": "rename"
},
{
"type": "script"
},
{
"type": "set"
},
{
"type": "set_security_user"
},
{
"type": "sort"
},
{
"type": "split"
},
{
"type": "trim"
},
{
"type": "uppercase"
},
{
"type": "uri_parts"
},
{
"type": "urldecode"
},
{
"type": "user_agent"
}
]
},
"aggregations": {
"adjacency_matrix": {
"types": [
"other"
]
},
"auto_date_histogram": {
"types": [
"boolean",
"date",
"numeric"
]
},
"avg": {
"types": [
"aggregate_metric",
"boolean",
"date",
"histogram",
"numeric"
]
},
"boxplot": {
"types": [
"histogram",
"numeric"
]
},
"cardinality": {
"types": [
"boolean",
"date",
"geopoint",
"geoshape",
"ip",
"keyword",
"numeric",
"range"
]
},
"children": {
"types": [
"other"
]
},
"composite": {
"types": [
"other"
]
},
"date_histogram": {
"types": [
"boolean",
"date",
"numeric",
"range"
]
},
"date_range": {
"types": [
"boolean",
"date",
"numeric"
]
},
"diversified_sampler": {
"types": [
"boolean",
"date",
"keyword",
"numeric"
]
},
"extended_stats": {
"types": [
"boolean",
"date",
"numeric"
]
},
"filter": {
"types": [
"other"
]
},
"filters": {
"types": [
"other"
]
},
"geo_bounds": {
"types": [
"geopoint",
"geoshape"
]
},
"geo_centroid": {
"types": [
"geopoint",
"geoshape"
]
},
"geo_distance": {
"types": [
"geopoint"
]
},
"geo_line": {
"types": [
"geopoint"
]
},
"geohash_grid": {
"types": [
"geopoint",
"geoshape"
]
},
"geotile_grid": {
"types": [
"geopoint",
"geoshape"
]
},
"global": {
"types": [
"other"
]
},
"histogram": {
"types": [
"boolean",
"date",
"histogram",
"numeric",
"range"
]
},
"ip_range": {
"types": [
"ip"
]
},
"matrix_stats": {
"types": [
"other"
]
},
"max": {
"types": [
"aggregate_metric",
"boolean",
"date",
"histogram",
"numeric"
]
},
"median_absolute_deviation": {
"types": [
"numeric"
]
},
"min": {
"types": [
"aggregate_metric",
"boolean",
"date",
"histogram",
"numeric"
]
},
"missing": {
"types": [
"boolean",
"date",
"geopoint",
"ip",
"keyword",
"numeric",
"range"
]
},
"multi_terms": {
"types": [
"other"
]
},
"nested": {
"types": [
"other"
]
},
"parent": {
"types": [
"other"
]
},
"percentile_ranks": {
"types": [
"boolean",
"date",
"histogram",
"numeric"
]
},
"percentiles": {
"types": [
"boolean",
"date",
"histogram",
"numeric"
]
},
"range": {
"types": [
"boolean",
"date",
"numeric"
]
},
"rare_terms": {
"types": [
"boolean",
"date",
"ip",
"keyword",
"numeric"
]
},
"rate": {
"types": [
"histogram",
"numeric"
]
},
"reverse_nested": {
"types": [
"other"
]
},
"sampler": {
"types": [
"other"
]
},
"scripted_metric": {
"types": [
"other"
]
},
"significant_terms": {
"types": [
"boolean",
"date",
"ip",
"keyword",
"numeric"
]
},
"significant_text": {
"types": [
"other"
]
},
"stats": {
"types": [
"boolean",
"date",
"numeric"
]
},
"string_stats": {
"types": [
"keyword"
]
},
"sum": {
"types": [
"aggregate_metric",
"boolean",
"date",
"histogram",
"numeric"
]
},
"t_test": {
"types": [
"numeric"
]
},
"terms": {
"types": [
"boolean",
"date",
"ip",
"keyword",
"numeric"
]
},
"top_hits": {
"types": [
"other"
]
},
"top_metrics": {
"types": [
"other"
]
},
"value_count": {
"types": [
"aggregate_metric",
"boolean",
"date",
"geopoint",
"geoshape",
"histogram",
"ip",
"keyword",
"numeric",
"range"
]
},
"variable_width_histogram": {
"types": [
"numeric"
]
},
"weighted_avg": {
"types": [
"numeric"
]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment