跳转至

创建一个拨测任务



POST /api/v1/dialing_task/add

概述

Body 请求参数

参数名 类型 必选 说明
type string Y 拨测类型
允许为空: fase
$lowerIn: ['http', 'tcp', 'dns', 'browser', 'icmp', 'websocket']
regions array Y 地域列表
允许为空: False
task json Y 任务配置
允许为空: False
$maxDictLength: 20000
task.url string url
允许为空: False
task.method string 当type 为 browser时为非必填参数
允许为空: False
task.name string Y 任务名称
允许为空: False
task.frequency string Y 拨测频率
允许为空: False
可选值: ['1m', '5m', '15m', '30m', '1h', '6h', '12h', '24h']
task.advance_options json advance_options
允许为空: False
task.advance_options_headless json browser 的 advance_options 设置
允许为空: False
task.success_when_logic string success_when 内条件的逻辑关系, 默认为and
允许为空: False
可选值: ['and', 'or']
task.success_when array success_when
允许为空: False
task.enable_traceroute boolean 路由跟踪
允许为空: False
task.packet_count integer 每次拨测发送pings数量
允许为空: False
task.host string type=tcp/icmp时,必填参数
允许为空: False
task.port string type=tcp时,必填参数
允许为空: False
task.timeout string type=tcp/icmp时,选填参数
允许为空: False
task.message string type=websocket,必填参数
允许为空: False

参数补充说明

OIDC 类型 config 配置说明


当 type='oidc' 时, config 字段生效。其数据结构信息如下
1.config 字段说明

参数名 type 必选 默认值 说明
modeType enum easy 配置文件编辑模式。可选值如下:
easy:简单UI编辑模式。此模式下,用户仅须配置 OIDC 交互协议中必须的基础数据即可,其他数据均为默认值.
complexity:复杂配置文件模式,要求用户上传 OIDC 配置文件。该模式支持用户自定义 OIDC 协议中的各种请求信息
wellKnowURL string Y OIDC 协议中的标准服务发现地址.
例如微软 AAD
clientId string Y 「认证服务」为「观测云」创建的客户端ID
clientSecret string Y 「认证服务」为「观测云」创建的客户端对应的密钥
sslVerify boolean 服务发现配置信息请求时是否强制进行 ssl 认证;
默认根据 wellKnowURL 参数值的协议地址进行区分,如果是 https, 则默认为 true; 否则默认为 false
grantType string Y authorization_code 「认证服务」为「观测云」创建的客户端ID
scope array Y ["openid", "email"] 可访问的数据权限
其中必选值为:openid
其他可选值, 例如 profile, email
该值取决于「认证服务」为「观测云」分配的 scop
authSet dict 该配置服务于 OIDC 协议中的获取认证请求地址。
协议来源
getTokenSet dict 该配置服务于 OIDC 协议中的 code 换 token 请求.
协议来源
verifyTokenSet dict id_token 的验证配置.
协议来源, jwks_urls 数据结构协议来源
getUserInfoSet dict 该配置服务于 OIDC 协议中的获取用户信息请求.
协议来源
claimMapping dict 用户信息/id_token 中的字段映射配置。用于「观测云」根据该映射配置获取账号中对应的信息


2. config.authSet 配置内部结构参数说明

参数名 type 必选 默认值 说明
url string 认证请求地址。
如果未提供,则默认取 wellKnowURL 指向配置中的 authorization_endpoint 值
verify boolean 针对该请求是否需要开启 ssl 验证;未指定的情况下,url 使用 https 协议时,默认开启,否则关闭。
paramMapping dict 请求中参数字段的映射,一般用于非标准OIDC客户根据自己的认证流程调整相关参数字段。详情下见下文中的说明


3. config.getTokenSet 配置内部结构参数说明

参数名 type 必选 默认值 说明
url string code换取token的请求地址。
如果未提供,则默认取 wellKnowURL 指向配置中的 token_endpoint 值
method enum post 请求方法, 可选值:post, get
verify boolean 针对该请求是否需要开启 ssl 验证;未指定的情况下,url 使用 https 协议时,默认开启,否则关闭。
authMethod enum basic 签名数据位置及方法。可选值如下
client_secret_basic 或者 basic: 认证信息位于请求头中的 Authorization 中,为 basic 认证
client_secret_post: client_id 和 client_secret 位于 body 中
none: client_id 和 client_secret 位于 query 中
paramMapping dict 请求中参数字段的映射,一般用于非标准OIDC客户根据自己的认证流程调整相关参数字段。详情下见下文中的说明


4. config.verifyTokenSet 配置内部结构参数说明

参数名 type 必选 默认值 说明
url string code换取token的请求地址。
如果未提供,则默认取 wellKnowURL 指向配置中的 token_endpoint 值
verify boolean 针对该请求是否需要开启 ssl 验证;未指定的情况下,url 使用 https 协议时,默认开启,否则关闭。
keys array url 指向的 JWT 算法数据信息
协议来源, jwks_urls 数据结构协议来源


5. config.getUserInfoSet 配置内部结构参数说明

参数名 type 必选 默认值 说明
source enum id_token 获取用户信息的来源方式。可选值如下
id_token: 从 id_token 中解析数据得来;
origin: 调用「认证服务」接口获取用户信息
url string 获取用户信息的请求地址。
如果未提供,则默认取 wellKnowURL 指向配置中的 userinfo_endpoint 值.
source=origin 时该参数有效。
verify boolean 针对该请求是否需要开启 ssl 验证;未指定的情况下,url 使用 https 协议时,默认开启,否则关闭。
method enum post 请求方法, 可选值:post, get;
source=origin 时该参数有效
authMethod enum bearer 签名数据位置及方法。可选值如下:
bearer: HTTP Bearer认证
client_secret_basic 或者 basic: 认证信息位于请求头中的 Authorization 中,为 basic 认证
client_secret_post: client_id 和 client_secret 位于 body 中
none: client_id 和 client_secret 位于 query 中
paramMapping dict 请求中参数字段的映射,一般用于非标准OIDC客户根据自己的认证流程调整相关参数字段。详情下见下文中的说明


6. config.claimMapping 配置内部结构参数说明

参数名 type 必选 默认值 说明
email string Y email 代表用户的邮箱字段
username string Y preferred_username 代表用户的用户名字段
mobile string 用户的手机号


7. 针对 getTokenSet、getTokenSet、getUserInfoSet 配置中 paramMapping 参数内部结构说明 注意,当 paramMapping 存在时, 将直接走自定义请求参数流程。

参数名 type 必选 默认值 说明
client_id string $client_id 客户端ID, 与协议中的 client_id 对应
scope string $scope 数据范围。以空格分隔数据范围字符串;
注意,此处是请求参数中的 scope, 其与外部配置中的数据类型不同。外部配置中的 scope 作为默认配置存在,是数组类型;
而此处的 scope 作为请求参数存在,是字符串类型。
例如:“openid email profile”
code string $code 「认证服务」传递过来用于换取 token 的 code
state string $state 类似与 CSRF 的作用
redirect_uri string $redirect_uri 响应将被发送到的重定向URI。
response_type string $response_type 响应类型, 授权码流程的值为 code

数据说明.

相关参数说明

参数名 type 必选 说明
type string Y 云拨测类型,可选选项http,tcp,dns, browser,tcp,icmp,'websocket`
regions array Y 任务执行区域
task json Y 任务详情
task.name string Y 任务名称
task.url string Y url
task.method string Y url 请求方法
task.status string Y 任务状态,可选值ok,stop
task.frequency string Y 任务频率
task.advance_options json
task.success_when_logic enum N 可选值:[and, or], success_when 参数内的逻辑关系,默认为 and
task.success_when array Y/N type=http时,此参数必传,type=browser时为非必传参数
task.enable_traceroute boolean N type=tcp/icmp时,此参数选填 |
task.packet_count integer | N type=icmp时,此参数选填 |
task.host string N type=tcp/icmp时,此参数必填 |
task.port string N type=tcp时,此参数必填 |
task.timeout string N type=tcp/icmp时,此参数选填
task.message string Y/N type=websocket时,此参数必填 |

{
    "regions": [hangzhou, shanghai],
    "task":{
        "url":"http://example.com/some/api",
        "method":"POST",
        "external_id":"外部系统中给该任务定义的 ID",
        "post_url":" 这个参数由Studio 后端提供 https://dataway.cn?token=tkn_xxx",
        "status":"ok/stop",
        "name":"任务命名",
        "frequency":"1m",
        "regions":"beijing",
        "advance_options":{
              "request_options":{
                  "follow_redirect":true,
                  "headers":{
                      "header1":"value1",
                      "header2":"value2"
                  },
                  "cookies":"",
                  "auth":{
                      "username":"",
                      "password":""
                  }
              },
              "request_body":{
                  "body_type":"text/plain|application/json|text/xml",
                  "body":""
              },
              "certificate":{
                  "ignore_server_certificate_error":false,
                  "private_key":"",
                  "certificate":""
              },
              "proxy":{
                  "url":"",
                  "headers":{
                      "header1":"value1"
                  }
              }
          },
        "success_when_logic": "and",
        "success_when":[
            {
                "body":{
                    "contains":"",
                    "not_contains":"",
                    "is":"",
                    "is_not":"",
                    "match_regex":"",
                    "not_match_regex":""
                },
                "header":{
                    "header-name":{
                        "contains":"",
                        "not_contains":"",
                        "is":"",
                        "is_not":"",
                        "match_regex":"",
                        "not_match_regex":""
                    },
                    "another-header-name":"..."
                },
                "response_time":"100ms",
                "status_code":{
                    "is":"200",
                    "is_not":"400",
                    "match_regex":"ok*",
                    "not_match_regex":"*bad"
                }
            },
            {
                "AND_another_assert":"..."
            }
        ]
    }
}

*** task.frequency 参数说明 *** 体验版工作空间的时间频率范围是 30m/1h/6h/12h/24h

请求例子

curl 'https://openapi.guance.com/api/v1/dialing_task/add' \
-H 'DF-API-KEY: <DF-API-KEY>' \
-H 'Content-Type: application/json;charset=UTF-8' \
--data-raw '{"type":"http","regions":["reg_chvefvc4c5rlp90lb1tg"],"task":{"frequency":"1m","method":"GET","url":"https://www.baidu.com","name":"test","advance_options":{"request_options":{"follow_redirect":false,"headers":{},"cookies":"","auth":{"username":"","password":""}},"request_body":{"body_type":"","body":""},"secret":{"not_save":false}},"success_when":[{"body":[{"contains":"200"}]}],"success_when_logic":"and"}}' \
--compressed

响应

{
    "code": 200,
    "content": {
        "createAt": 1686193610,
        "creator": "acnt_861cf6dd440348648861247ae42909c3",
        "deleteAt": -1,
        "id": null,
        "regions": [
            "reg_chvefvc4c5rlp90lb1tg"
        ],
        "status": 0,
        "task": {
            "advance_options": {
                "request_body": {
                    "body": "",
                    "body_type": ""
                },
                "request_options": {
                    "auth": {
                        "password": "",
                        "username": ""
                    },
                    "cookies": "",
                    "follow_redirect": false,
                    "headers": {}
                },
                "secret": {
                    "not_save": false
                }
            },
            "external_id": "dial_408e8fafe88a49a5ba1cfd73910edfdb",
            "frequency": "1m",
            "method": "GET",
            "name": "test",
            "owner_external_id": "wksp_ed134a6485c8484dbd0e58ce9a9c6115",
            "post_url": "http://testing-openway.cloudcare.cn?token=tkn_xxxxx",
            "status": "ok",
            "success_when": [
                {
                    "body": [
                        {
                            "contains": "200"
                        }
                    ]
                }
            ],
            "success_when_logic": "and",
            "url": "https://www.baidu.com"
        },
        "type": "http",
        "updateAt": 1686193610,
        "updator": "acnt_861cf6dd440348648861247ae42909c3",
        "uuid": "dial_408e8fafe88a49a5ba1cfd73910edfdb",
        "workspaceUUID": "wksp_ed134a6485c8484dbd0e58ce9a9c6115"
    },
    "errorCode": "",
    "message": "",
    "success": true,
    "traceId": "712401530723551303"
} 

文档评价

文档内容是否对您有帮助? ×