Hi @Christian_Dahlqvist ,
The connection is secured with stunnel
here is the stunnel conf example
[es-http-local-server]
client = no
accept = 19200
connect = localhost:9200
CAfile = /etc/ssl/certs/elk_certificate.pem
verify = 2
[es-transport-co-ord-client]
client = yes
accept = localhost:9900
connect = elk:19300
[es-transport-node01-client]
client = yes
accept = localhost:9901
connect = elkdp01:19300
[es-transport-node02-client]
client = yes
accept = localhost:9902
connect = elkdp02:19300
....
The coordinator node is listen to network connection for rsyslog, logstash and kibana connection
While most of the servers sending data via rsyslog service to our rsyslog server and then forward it to my coordinator,
when query any thing it's direct to my coordinator node,
here is the output from my elastic cluster
{
"_nodes" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"cluster_name" : "elk_centralized_logger",
"timestamp" : 1525097008481,
"status" : "green",
"indices" : {
"count" : 136,
"shards" : {
"total" : 1280,
"primaries" : 640,
"replication" : 1.0,
"index" : {
"shards" : {
"min" : 2,
"max" : 12,
"avg" : 9.411764705882353
},
"primaries" : {
"min" : 1,
"max" : 6,
"avg" : 4.705882352941177
},
"replication" : {
"min" : 1.0,
"max" : 1.0,
"avg" : 1.0
}
}
},
"docs" : {
"count" : 1143442501,
"deleted" : 59054
},
"store" : {
"size" : "720.3gb",
"size_in_bytes" : 773488810938,
"throttle_time" : "0s",
"throttle_time_in_millis" : 0
},
"fielddata" : {
"memory_size" : "0b",
"memory_size_in_bytes" : 0,
"evictions" : 0
},
"query_cache" : {
"memory_size" : "938.4mb",
"memory_size_in_bytes" : 984046371,
"total_count" : 421545,
"hit_count" : 95625,
"miss_count" : 325920,
"cache_size" : 35898,
"cache_count" : 36867,
"evictions" : 969
},
"completion" : {
"size" : "0b",
"size_in_bytes" : 0
},
"segments" : {
"count" : 13381,
"memory" : "2.3gb",
"memory_in_bytes" : 2535474517,
"terms_memory" : "1.9gb",
"terms_memory_in_bytes" : 2089938623,
"stored_fields_memory" : "321.9mb",
"stored_fields_memory_in_bytes" : 337610384,
"term_vectors_memory" : "0b",
"term_vectors_memory_in_bytes" : 0,
"norms_memory" : "4.6mb",
"norms_memory_in_bytes" : 4874752,
"points_memory" : "42.1mb",
"points_memory_in_bytes" : 44205474,
"doc_values_memory" : "56.1mb",
"doc_values_memory_in_bytes" : 58845284,
"index_writer_memory" : "5.7mb",
"index_writer_memory_in_bytes" : 6008504,
"version_map_memory" : "903b",
"version_map_memory_in_bytes" : 903,
"fixed_bit_set" : "271.6mb",
"fixed_bit_set_memory_in_bytes" : 284844488,
"max_unsafe_auto_id_timestamp" : 9223372036854775807,
"file_sizes" : { }
}
},
"nodes" : {
"count" : {
"total" : 5,
"data" : 4,
"coordinating_only" : 1,
"master" : 3,
"ingest" : 4
},
"versions" : [
"5.6.5"
],
"os" : {
"available_processors" : 20,
"allocated_processors" : 20,
"names" : [
{
"name" : "Linux",
"count" : 5
}
],
"mem" : {
"total" : "205.5gb",
"total_in_bytes" : 220687183872,
"free" : "4gb",
"free_in_bytes" : 4298481664,
"used" : "201.5gb",
"used_in_bytes" : 216388702208,
"free_percent" : 2,
"used_percent" : 98
}
},
"process" : {
"cpu" : {
"percent" : 17
},
"open_file_descriptors" : {
"min" : 324,
"max" : 1104,
"avg" : 843
}
},
"jvm" : {
"max_uptime" : "39d",
"max_uptime_in_millis" : 3374293868,
"versions" : [
{
"version" : "1.8.0_161",
"vm_name" : "Java HotSpot(TM) 64-Bit Server VM",
"vm_version" : "25.161-b12",
"vm_vendor" : "Oracle Corporation",
"count" : 5
}
],
"mem" : {
"heap_used" : "43.3gb",
"heap_used_in_bytes" : 46522328000,
"heap_max" : "79.8gb",
"heap_max_in_bytes" : 85725020160
},
"threads" : 342
},
"fs" : {
"total" : "787.3gb",
"total_in_bytes" : 845377593344,
"free" : "590.5gb",
"free_in_bytes" : 634127507456,
"available" : "550.5gb",
"available_in_bytes" : 591161057280,
"spins" : "true"
},
"plugins" : [],
"network_types" : {
"transport_types" : {
"netty4" : 5
},
"http_types" : {
"ssl_netty4" : 1,
"netty4" : 4
}
}
}
}
hope that I did not forgot anything,