Get-MemoryDumpList
The Get-MemoryDumpList cmdlet retrieves and lists all memory dumps stored on the specified NCache server. It is used for troubleshooting issues such as high memory usage, crashes, or performance problems. This cmdlet helps in memory leak analysis, and diagnosing NCache service failures in distributed environments.
Get-MemoryDumpList -Server [-Port] [-NoLogo] [-Credentials]
Examples
- This command list down the dumps created on server 20.200.20.11.
Get-MemoryDumpList -Server 20.200.20.11
- This command list down the dumps created on server 20.200.20.11, using security credentials.
Get-MemoryDumpList -Server 20.200.20.11 -Credentials(Get-Credential john_smith)
Properties
Note
The parameters with asterisk (*) on their names are the required parameters and the rest are optional.
| Parameters | Data Types | Description | Default Value |
|---|---|---|---|
-Server* |
<String> |
Specifies a server name where the NCache Service is running and a cache with the specified cache-name is registered. It also indicates the server where the cache dump is created. | - |
-Port |
<Integer> |
Specifies the server port where the NCache Service is listening. | 8250 |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |
-Credentials |
<pscredential> |
Specifies the user credentials required to authorize access for the specified operation. These credentials should belong to a user with the appropriate permissions at the node. | - |