GPUdb C++ API
Version 7.2.2.4
|
A set of results returned by GPUdb::adminShowAlerts. More...
#include <gpudb/protocol/admin_show_alerts.h>
Public Member Functions | |
AdminShowAlertsResponse () | |
Constructs an AdminShowAlertsResponse object with default parameters. More... | |
Public Attributes | |
std::vector< std::string > | timestamps |
Timestamp for when the alert occurred, sorted from most recent to least recent. More... | |
std::vector< std::string > | types |
Type of system alert, sorted from most recent to least recent. More... | |
std::vector< std::map< std::string, std::string > > | params |
Parameters for each alert, sorted from most recent to least recent. More... | |
std::map< std::string, std::string > | info |
Additional information. More... | |
A set of results returned by GPUdb::adminShowAlerts.
Definition at line 111 of file admin_show_alerts.h.
|
inline |
Constructs an AdminShowAlertsResponse object with default parameters.
Definition at line 117 of file admin_show_alerts.h.
std::map<std::string, std::string> gpudb::AdminShowAlertsResponse::info |
Additional information.
Definition at line 149 of file admin_show_alerts.h.
std::vector<std::map<std::string, std::string> > gpudb::AdminShowAlertsResponse::params |
Parameters for each alert, sorted from most recent to least recent.
Each array entry corresponds with the entries at the same index in timestamps and types.
Definition at line 144 of file admin_show_alerts.h.
std::vector<std::string> gpudb::AdminShowAlertsResponse::timestamps |
Timestamp for when the alert occurred, sorted from most recent to least recent.
Each array entry corresponds with the entries at the same index in types and params.
Definition at line 130 of file admin_show_alerts.h.
std::vector<std::string> gpudb::AdminShowAlertsResponse::types |
Type of system alert, sorted from most recent to least recent.
Each array entry corresponds with the entries at the same index in timestamps and params.
Definition at line 137 of file admin_show_alerts.h.