# Why do kubectl top and DigitalOcean Control Panel show different metrics values for worker nodes? The [performance metrics](https://docs.digitalocean.com/products/kubernetes/how-to/monitor-basic/index.html.md) displayed in the DigitalOcean Control Panel are calculated using all anonymous (non-file backed) memory since DigitalOcean Kubernetes does not support the use of swap memory. Because the host OS cannot always reclaim cached (file-backed) memory, the metrics typically also include such pages. The output of the [`kubectl top`](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#top) command does not measure the entire system load in the same way the control panel does. It only sums up all use of containers on that host but there may be processes on a host outside of the cgroups hierarchy, which can cause the output to be different from the control panel. The [Metrics Server](https://github.com/kubernetes-sigs/metrics-server) itself doesn’t calculate any metrics, it aggregates values exposed by `kubelet` and exposes them in the API to be used for autoscaling. `kubectl top` is for exporting metrics from resource metrics pipeline and is not meant to be an accurate tool that would replace monitoring solutions or running `top` on node. ## Related Topics [How to Troubleshoot CoreDNS Issues in DOKS Clusters](https://docs.digitalocean.com/support/how-to-troubleshoot-coredns-issues-in-doks-clusters/index.html.md): Gather information to resolve CoreDNS-related DNS problems in DOKS clusters. [Why can't my VPC-native pods connect to my Droplets?](https://docs.digitalocean.com/support/why-cant-my-vpc-native-pods-connect-to-my-droplets/index.html.md): For Droplets created before 2 October 2024, you must manually add VPC peering routes to interconnect with VPC-native DOKS clusters [How to Troubleshoot Load Balancer Health Check Issues](https://docs.digitalocean.com/support/how-to-troubleshoot-load-balancer-health-check-issues/index.html.md): Health checks often fail due to firewalls or misconfigured backend server software.