How to display two(current and max) values in Grafana
06:45 23 Mar 2020

I've kubernetes cluster and adding a monitoring using Prometheus and Grafana, I want to display total numbers in grafana, namely nodes ready vs total number of nodes available. I'm unable represent it in neither singlestat(as name indicates only one value), gauge(can't dynamically set max), and text(can't dynamically set content)

Below are my two queries. first query:

sum(kube_node_status_condition{condition="Ready"})

second query:

sum(kube_node_info)
prometheus grafana