All Products
Search
Document Center

CloudMonitor:DescribeSystemEventHistogram

Last Updated:Mar 08, 2024

Queries the number of times a system event occurred during each interval within a period of time.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
ProductstringNo

The abbreviation of the service name.

Note You can call the DescribeSystemEventMetaList operation to query the abbreviations of service names.
OSS
EventTypestringNo

The event type.

Note You can call the DescribeSystemEventMetaList operation to query the types of system events.
Exception
NamestringNo

The event name.

Note You can call the DescribeSystemEventMetaList operation to query the names of system events.
BucketIngressBandwidth
LevelstringNo

The level of the event. Valid values:

  • CRITICAL
  • WARN
  • INFO
CRITICAL
StatusstringNo

The event status.

Note You can call the DescribeSystemEventMetaList operation to query the status of system events.
normal
GroupIdstringNo

The ID of the application group.

12345
SearchKeywordsstringNo

The keywords that are used to search for the system event. Valid values:

  • If you want to search for the system event whose content contains a and b, set the value to a and b.
  • If you want to search for the system event whose content contains a or b, set the value to a or b.
cms
StartTimestringNo

The start time.

This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.

1552209685596
EndTimestringNo

The end time.

This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.

1552220485596

Response parameters

ParameterTypeDescriptionExample
object
Codestring

The response code.

Note The status code 200 indicates that the request was successful.
200
Messagestring

The returned message.

The Request is not authorization.
RequestIdstring

The request ID.

486029C9-53E1-44B4-85A8-16A571A043FD
Successstring

Indicates whether the request was successful. Valid values: true: The request was successful. false: The request failed.

true
SystemEventHistogramsobject []

The information about the number of times the system event occurred during each interval of a time period.

EndTimelong

The end time.

This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.

1552225753000
StartTimelong

The start time.

This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.

1552225770000
Countlong

The number of times the system event occurred.

2

Examples

Sample success responses

JSONformat

{
  "Code": "200",
  "Message": "The Request is not authorization.",
  "RequestId": "486029C9-53E1-44B4-85A8-16A571A043FD",
  "Success": "true",
  "SystemEventHistograms": {
    "SystemEventHistogram": [
      {
        "EndTime": 1552225753000,
        "StartTime": 1552225770000,
        "Count": 2
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400ParameterInvalidIllegal parameters.-
403AccessForbiddenUser not authorized to operate on the specified resource.-
404ResourceNotFoundThe specified resource is not found.The specified resource is not found.
500InternalErrorThe request processing has failed due to some unknown error.-

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history