# Added metrics does not show up for other nodes

**URL:** https://discuss.ipfs.tech/t/added-metrics-does-not-show-up-for-other-nodes/18010
**Category:** Help
**Tags:** ipfs-cluster
**Created:** [May 21, 2024, 1:32pm UTC](https://discuss.ipfs.tech/t/added-metrics-does-not-show-up-for-other-nodes/18010 "2024-05-21T13:32:25Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![ehsan6sha](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ipfs.tech/ehsan6sha/32/4639_2.png) [@ehsan6sha](https://discuss.ipfs.tech/u/ehsan6sha)
#### Post date: [May 21, 2024, 1:32pm UTC](https://discuss.ipfs.tech/t/added-metrics-does-not-show-up-for-other-nodes/18010/1 "2024-05-21T13:32:25Z")

</div>

HI  
I added a new metrics `reposize` to the monitor section of service.json:

```auto
  "allocator": {
    "balanced": {
      "allocate_by": [
        "tag:group",
        "pinqueue",
        "reposize"
      ]
    }
  },
  "informer": {
    "disk": {
      "metric_ttl": "30s",
      "metric_type": "freespace"
    },
    "disk": {
      "metric_ttl": "30s",
      "metric_type": "reposize"
    },
    "pinqueue": {
      "metric_ttl": "30s",
      "weight_bucket_size": 100000
    },
    "tags": {
      "metric_ttl": "30s",
      "tags": {
        "group": "default"
      }
    }
  },

```

But it only shows the metric for the trusted node I added it in and not the followers:

```auto
ubuntu@ip-10-0-0-227:~$ curl http://127.0.0.1:9094/monitor/metrics/reposize
[{"name":"reposize","peer":"12D3KooWS79EhkPU7ESUwgG4vyHHzW9FDNZLoWVth9b5N5NSrvaj","value":"3870836665","expire":1716298240289223997,"valid":true,"weight":-3870836665,"partitionable":false,"received_at":1716298210289442055}]

```

Any idea why and how I can further troubleshoot? Did I miss doing something on follower nodes?

---

<div class="post-metadata">

### Author: ![ehsan6sha](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ipfs.tech/ehsan6sha/32/4639_2.png) [@ehsan6sha](https://discuss.ipfs.tech/u/ehsan6sha)
#### Post date: [May 21, 2024, 4:33pm UTC](https://discuss.ipfs.tech/t/added-metrics-does-not-show-up-for-other-nodes/18010/2 "2024-05-21T16:33:55Z")

</div>

Ah I think I found out hte issue. the service.json should have the informer for new disk in the followers too
