NSX Autonomous Edge REST API
Associated URIs:
| API Description | API Path |
|---|---|
Update node core dump configurationUpdate node configuration for core dump generation and rotation policy |
POST /node?action=set_coredump_config
|
List system core dumps |
GET /node/core-dumps
|
Delete core dump file |
DELETE /node/core-dumps/{file-name}
|
Copy system generated core dump file to a remote file storeCopy system generated core dump file to a remote server. If you use scp or sftp, you must provide the remote server's SSH fingerprint. See the NSX-T Administration Guide for information and instructions about finding the SSH fingerprint. |
POST /node/core-dumps/{file-name}?action=copy_to_remote_file
|
List available node logsReturns the number of log files and lists the log files that reside on the NSX virtual appliance. The list includes the filename, file size, and last-modified time in milliseconds since epoch (1 January 1970) for each log file. Knowing the last-modified time with millisecond accuracy since epoch is helpful when you are comparing two times, such as the time of a POST request and the end time on a server. |
GET /node/logs
|
Read node log propertiesFor a single specified log file, lists the filename, file size, and last-modified time. |
GET /node/logs/{log-name}
|
Read node log contentsFor a single specified log file, returns the content of the log file. This method supports byte-range requests. To request just a portion of a log file, supply an HTTP Range header, e.g. "Range: bytes=<start>-<end>". <end> is optional, and, if omitted, the file contents from start to the end of the file are returned.' |
GET /node/logs/{log-name}/data
|