Marvel only shows data from master node

Hi Marcell,

This looks to be the same issue as in All nodes except Master show as "Offline" .

This is the result of the new node resolver feature not picking up the transport address properly. You can workaround this issue by changing the node resolver to use the node's name as the unique properly rather than the transport address (the default). This is done in the Kibana config (kibana.yml):

marvel.node_resolver: name

Given that you do not have have domain names in your transport address, can I have you run this to ensure that the forthcoming fix is enough:

GET /.marvel-es-1*/node_stats/_search
{
   "size" : 0,
   "aggs" : {
      "nodes" : {
         "date_histogram" : {
            "interval" : "10s",
            "field" : "timestamp",
            "order" : {
               "_key" : "desc"
            },
            "min_doc_count" : 1
         },
         "aggs" : {
            "source_node_name" : {
               "terms" : {
                  "field" : "source_node.name"
               },
               "aggs" : {
                  "source_node_transport_address" : {
                     "terms" : {
                        "field" : "source_node.transport_address"
                     }
                  }
               }
            }
         }
      }
   }
}