创建

描述

object action.create(object/array actions)

此方法允许创建新的动作。

此方法仅对AdminSuper admin用户类型可用。可以在用户角色设置中撤销调用此方法的权限。更多信息请参见用户角色

参数

(object/array) 要创建的动作。

除了标准动作属性外,该方法还接受以下参数。

参数类型描述
filterobject动作过滤 对象,用于指定动作筛选条件。
operationsarray动作操作 数组,为动作创建的操作。
recovery_operationsarray动作恢复操作 数组,为动作创建的恢复操作。
update_operationsarray动作更新操作 数组,为动作创建的更新操作。

返回值

(object) 返回一个对象,该对象在actionids属性下包含已创建动作的ID。返回的ID顺序与传递的动作顺序相匹配。

示例

创建触发器动作

创建一个触发器动作,该动作将在主机ID为”10084”上的触发器(名称中包含”memory”)进入PROBLEM状态时开始执行。该动作将配置4个操作。 - 第一个也是立即执行的操作,将通过媒体类型”1”向用户组ID为”7”中的所有用户发送消息。 - 如果事件在30分钟内未解决,第二个操作将在组”2”中的所有主机上运行脚本“5”(来自”动作操作”按钮创建的脚本)。 - 如果事件得到解决,所有与该问题相关的用户将收到一个恢复操作通知。 - 如果事件被更新,所有与该问题相关的用户将收到一个确认/更新操作通知。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "action.create",
  4. "params": {
  5. "name": "Trigger action",
  6. "eventsource": 0,
  7. "esc_period": "30m",
  8. "filter": {
  9. "evaltype": 0,
  10. "conditions": [
  11. {
  12. "conditiontype": 1,
  13. "operator": 0,
  14. "value": "10084"
  15. },
  16. {
  17. "conditiontype": 3,
  18. "operator": 2,
  19. "value": "memory"
  20. }
  21. ]
  22. },
  23. "operations": [
  24. {
  25. "operationtype": 0,
  26. "esc_step_from": 1,
  27. "esc_step_to": 1,
  28. "opmessage_grp": [
  29. {
  30. "usrgrpid": "7"
  31. }
  32. ],
  33. "opmessage": {
  34. "default_msg": 1,
  35. "mediatypeid": "1"
  36. }
  37. },
  38. {
  39. "operationtype": 1,
  40. "esc_step_from": 2,
  41. "esc_step_to": 2,
  42. "opconditions": [
  43. {
  44. "conditiontype": 14,
  45. "operator": 0,
  46. "value": "0"
  47. }
  48. ],
  49. "opcommand_grp": [
  50. {
  51. "groupid": "2"
  52. }
  53. ],
  54. "opcommand": {
  55. "scriptid": "5"
  56. }
  57. }
  58. ],
  59. "recovery_operations": [
  60. {
  61. "operationtype": "11",
  62. "opmessage": {
  63. "default_msg": 1
  64. }
  65. }
  66. ],
  67. "update_operations": [
  68. {
  69. "operationtype": "12",
  70. "opmessage": {
  71. "default_msg": 0,
  72. "message": "Custom update operation message body",
  73. "subject": "Custom update operation message subject"
  74. }
  75. }
  76. ]
  77. },
  78. "id": 1
  79. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "actionids": [
  5. "17"
  6. ]
  7. },
  8. "id": 1
  9. }

创建一个发现动作

创建一个发现动作,该动作将模板”10001”链接到已发现的主机。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "action.create",
  4. "params": {
  5. "name": "Discovery action",
  6. "eventsource": 1,
  7. "filter": {
  8. "evaltype": 0,
  9. "conditions": [
  10. {
  11. "conditiontype": 21,
  12. "operator": 0,
  13. "value": "1"
  14. },
  15. {
  16. "conditiontype": 10,
  17. "operator": 0,
  18. "value": "2"
  19. }
  20. ]
  21. },
  22. "operations": [
  23. {
  24. "operationtype": 6,
  25. "optemplate": [
  26. {
  27. "templateid": "10001"
  28. }
  29. ]
  30. }
  31. ]
  32. },
  33. "id": 1
  34. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "actionids": [
  5. "18"
  6. ]
  7. },
  8. "id": 1
  9. }

使用自定义表达式过滤

创建一个触发器动作,该动作使用自定义表达式 - “A and (B or C)” - 来评估动作条件。 一旦来自主机”10084”或主机”10106”的告警级别大于等于”Warning”触发器将进入PROBLEM状态, 该动作将通过媒体类型”1”向用户组”7”中的所有用户发送消息。 公式ID “A”、”B” 和 “C” 是任意选择的。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "action.create",
  4. "params": {
  5. "name": "Trigger action",
  6. "eventsource": 0,
  7. "esc_period": "15m",
  8. "filter": {
  9. "evaltype": 3,
  10. "formula": "A and (B or C)",
  11. "conditions": [
  12. {
  13. "conditiontype": 4,
  14. "operator": 5,
  15. "value": "2",
  16. "formulaid": "A"
  17. },
  18. {
  19. "conditiontype": 1,
  20. "operator": 0,
  21. "value": "10084",
  22. "formulaid": "B"
  23. },
  24. {
  25. "conditiontype": 1,
  26. "operator": 0,
  27. "value": "10106",
  28. "formulaid": "C"
  29. }
  30. ]
  31. },
  32. "operations": [
  33. {
  34. "operationtype": 0,
  35. "esc_step_from": 1,
  36. "esc_step_to": 1,
  37. "opmessage_grp": [
  38. {
  39. "usrgrpid": "7"
  40. }
  41. ],
  42. "opmessage": {
  43. "default_msg": 1,
  44. "mediatypeid": "1"
  45. }
  46. }
  47. ]
  48. },
  49. "id": 1
  50. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "actionids": [
  5. "18"
  6. ]
  7. },
  8. "id": 1
  9. }

创建 agent 自动注册规则

创建一个自动注册动作,当主机名包含“SRV”或元数据包含“AlmaLinux”时,将该主机添加到主机组“2”中。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "action.create",
  4. "params": {
  5. "name": "Register Linux servers",
  6. "eventsource": "2",
  7. "filter": {
  8. "evaltype": "2",
  9. "conditions": [
  10. {
  11. "conditiontype": "22",
  12. "operator": "2",
  13. "value": "SRV"
  14. },
  15. {
  16. "conditiontype": "24",
  17. "operator": "2",
  18. "value": "AlmaLinux"
  19. }
  20. ]
  21. },
  22. "operations": [
  23. {
  24. "operationtype": "4",
  25. "opgroup": [
  26. {
  27. "groupid": "2"
  28. }
  29. ]
  30. }
  31. ]
  32. },
  33. "id": 1
  34. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "actionids": [
  5. 19
  6. ]
  7. },
  8. "id": 1
  9. }

创建带有主机标签的代理自动注册规则

创建一个自动注册动作,将主机添加到主机组”2”并添加两个主机标签。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "action.create",
  4. "params": {
  5. "name": "Register Linux servers with tags",
  6. "eventsource": "2",
  7. "operations": [
  8. {
  9. "operationtype": "4",
  10. "opgroup": [
  11. {
  12. "groupid": "2"
  13. }
  14. ]
  15. },
  16. {
  17. "operationtype": "13",
  18. "optag": [
  19. {
  20. "tag": "Location",
  21. "value": "Office"
  22. },
  23. {
  24. "tag": "City",
  25. "value": "Riga"
  26. }
  27. ]
  28. }
  29. ]
  30. },
  31. "id": 1
  32. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "actionids": [
  5. 20
  6. ]
  7. },
  8. "id": 1
  9. }

另请参阅

源码位置

CAction::create()ui/include/classes/api/services/CAction.php 文件中。