9 lines
219 B
Python
9 lines
219 B
Python
|
def env_dpdk_get_mem_stats(client):
|
||
|
"""Dump the applications memory stats to a file.
|
||
|
|
||
|
Returns:
|
||
|
The path to the file where the stats are written.
|
||
|
"""
|
||
|
|
||
|
return client.call('env_dpdk_get_mem_stats')
|