Checking memory usage

How can I know how much memory is available in my tigergraph instance?

Use the free Command:

Run the free command in your Linux terminal to check the available memory. It will display the total, used, and free memory in your system. Make sure to run this command on the server where TigerGraph is installed.

free -h

This will show you the available memory in human-readable format.

Built-In Endpoint
Alternatively, you can use the built-in endpoints to get disk space reports from each host. Here is a sample call with the input of host m2

curl -X POST localhost:14240/informant/metrics/get/diskspace -d '{"HostID":"m2"}'

Furthermore, you can also use

gadmin metric -t cpu

gadmin metric -t mem

gadmin metric -t disk

1 Like