Hello all -- I was wondering if there was a way to gather heap space usage data for Kibana (and NGINX) specifically.
Using JMeter, I am able to gather real-time heap data usage for the Elasticsearch service, but I have not been able to find a solution for the Kibana or NGINX services. I was just curious if anyone knew of a command for this.
The following is the bash script/curl command being used for gathering the Elasticsearch heap data,
#!/bin/bash
curl -u internal-auth:internal-auth -sS "localhost:9200/_cat/nodes?h=heap*" | awk '{ print $2 }' | sed -n '5{p;q}'
Thanks all for your time and help ![]()
