SystemPerformanceMeasurementReportingGetRequest24
Bases: OCIRequest
Requests the performance measurements reporting settings. The response is either SystemPerformanceMeasurementReportingGetResponse24 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemPerformanceMeasurementReportingGetRequest24.
Attributes:
is_active (bool):
reporting_interval (int):
reset_measurements_after_each_report (bool):
report_enterprise (bool):
report_service_provider (bool):
report_device (bool):
report_table (bool):
report_encoding (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemPerformanceMeasurementReportingGetRequest24
client = Client()
command = SystemPerformanceMeasurementReportingGetRequest24()
response = client.command(command)
print(response)