该方式允许根据给定的参数检索警报.

    参数

    (object) 定义所需输出的参数。

    该方法支持以下参数.

    返回值

    (integer/array) Returns either:

    • an array of objects;

    范例

    通过动作 ID 检索警报

    Retrieve all alerts generated by action “3”.

    请求:

    Source

    CAlert::get() in frontends/php/include/classes/api/services/CAlert.php.

    Description

    integer/array alert.get(object **parameters**)

    The method allows to retrieve alerts according to the given parameters.

    Parameters

    (object) Parameters defining the desired output.

    The method supports the following parameters.

    ParameterTypeDescription
    alertidsstring/arrayReturn only alerts with the given IDs.
    actionidsstring/arrayReturn only alerts generated by the given actions.
    eventidsstring/arrayReturn only alerts generated by the given events.
    groupidsstring/arrayReturn only alerts generated by objects from the given host groups.
    hostidsstring/arrayReturn only alerts generated by objects from the given hosts.
    mediatypeidsstring/arrayReturn only message alerts that used the given media types.
    objectidsstring/arrayReturn only alerts generated by the given objects
    useridsstring/arrayReturn only message alerts that were sent to the given users.
    eventobjectintegerReturn only alerts generated by events related to objects of the given type.

    Refer to the event “object” property for a list of supported object types.

    Default: 0 - trigger.
    eventsourceintegerReturn only alerts generated by events of the given type.

    Refer to the for a list of supported event types.

    Default: 0 - trigger events.
    time_fromtimestampReturn only alerts that have been generated after the given time.
    time_tilltimestampReturn only alerts that have been generated before the given time.
    selectHostsqueryReturn the hosts that triggered the action operation in the hosts property.
    selectMediatypesqueryReturn the media type that was used for the message alert as an array in the mediatypes property.
    selectUsersqueryReturn the user that the message was addressed to as an array in the property.
    sortfieldstring/arraySort the result by the given properties.

    Possible values are: alertid, clock, eventid and status.
    countOutputbooleanThese parameters being common for all get methods are described in the reference commentary.
    editableboolean
    excludeSearchboolean
    filterobject
    limitinteger
    outputquery
    preservekeysboolean
    searchobject
    searchByAnyboolean
    searchWildcardsEnabledboolean
    sortorderstring/array
    startSearchboolean
    • an array of objects;

    • the count of retrieved objects, if the countOutput parameter has been used.

    Examples

    Retrieve alerts by action ID

    Retrieve all alerts generated by action “3”.

    Request:

    Response:

    See also

    Source