# Marvel only shows data from master node

**URL:** https://discuss.elastic.co/t/marvel-only-shows-data-from-master-node/47354
**Category:** Elasticsearch
**Tags:** elastic-stack-monitoring
**Created:** [April 14, 2016, 7:40am UTC](https://discuss.elastic.co/t/marvel-only-shows-data-from-master-node/47354 "2016-04-14T07:40:20Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![pickypg](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/pickypg/32/62409_2.png) [@pickypg](https://discuss.elastic.co/u/pickypg)
#### Post date: [April 14, 2016, 3:13pm UTC](https://discuss.elastic.co/t/marvel-only-shows-data-from-master-node/47354/2 "2016-04-14T15:13:42Z")

</div>

Hi Marcell,

This looks to be the same issue as in [All nodes except Master show as "Offline"](https://discuss.elastic.co/t/all-nodes-except-master-show-as-offline/46274/19) .

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`):

```auto
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:

```auto
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"
                     }
                  }
               }
            }
         }
      }
   }
}

```

---

_[View the full topic](https://discuss.elastic.co/t/marvel-only-shows-data-from-master-node/47354)._
