创建

描述

object action.create(object/array actions)

此方法用于创建新动作。

此方法只有 Admin(管理员)Super admin(超级管理员) 用户可用。可以在用户角色设置中撤销调用该方法的权限。更多信息请查看用户角色

参数

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

此外,还有 标准动作参数,方法接受如下参数。

参数类型描述
filterobject动作的动作过滤 对象。
operationsarray为这个动作创建的动作操作
recovery_operationsarray为这个动作创建的动作恢复操作
update_operationsarray为这个动作创建的动作更新操作

返回值

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

示例

创建触发器动作

创建一个动作,它将在 主机 “10084” 名字中包含 “memory” 的触发器进入problem状态时运行。这个动作必须首先向用户组 “7” 中的所有用户发送消息。如果事件在 4 分钟内未被解决,它将在 “2” 组中的所有主机上运行脚本 “3”。在触发器恢复时,它将通知之前收到有关该问题的任何消息的所有用户。在触发器确认中,带有自定义主体和主体的消息将通过所有媒体类型发送给所有确认和评论的所有人。

请求:

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

响应:

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

创建发现动作

创建一个将发现的主机链接到模板 “10091” 的动作。

请求:

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

响应:

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

使用自定义表达式过滤

创建使用自定义过滤条件的触发器动作。这个动作必须为主机 “10084” 和 “10106” 上每个严重程度等于或高于 “Warning” 的触发器发送一条消息。公式 ID 可以从 “A”, “B” 和 “C” 中任选。

请求:

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

响应:

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

创建 agent 自动注册规则

当主机名中包含 “SRV” 或元数据中包含 “AlmaLinux” 时,向 “Linux servers” 主机组中添加主机。

请求:

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

响应:

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

参见

来源

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