全部文档
当前文档

暂无内容

如果没有找到您期望的内容,请尝试其他搜索词

文档中心

CreateChart

最近更新时间:2021-12-16 19:54:33

请求语法

POST /CreateChart HTTP/1.1
Authorization: <AuthorizationString>
x-klog-api-version: 0.1.0
Host:klog.api.ksyun.com
x-klog-signature-method: hmac-sha1
Date: <GMT Date>
Content-Type: application/json
Content-MD5: <Content-MD5>
Content-Length: <ContentLength>
Connection: Keep-Alive
{
  "DashboardId": <DashboardId>,
  "ChartName":"<ChartName>",
  "ChartType": "table",
  "Search" : {
    "LogPoolName": "my-logPool",
    "TimeRange":"last 15 minutes",
    "Query": "select count(*) as pv where code=500"
  },
  "Display": {
            ...... 
  }
}

请求参数

该接口无特有请求头。获取更多信息,请参见公共请求头
参数详情具体如下表。

参数名称 类型 是否必须 描述
DashboardId String 仪表盘ID
ChartName String 图表名称
ChartType String 图表类型,line,table
Search Search 查询主体
Display Display 展示参数
  • Search
参数名称 类型 是否必须 描述
LogPoolName String 日志池名称
TimeRange String 查询数据的时间范围
Query String 查询语句

响应参数

参数名称 类型 描述
ChartId String 图表ID

示例

请求示例


POST /CreateChart HTTP/1.1
Authorization: KLOG <yourAccessKeyId>:<yourSignature>
x-klog-api-version: 0.6.0
Host:klog.api.ksyun.com
x-klog-signature-method: hmac-sha1
Date: Sun, 27 May 2018 07:43:26 GMT
Content-Type: application/json
Content-MD5: A7967D81EFF5E3CD447FB6D8DF294E20
Content-Length: 80
Connection: Keep-Alive
{
  "DashboardId": <dashboardId>,
  "ChartName":"my-chart",
  "ChartType": "table",
  "Search" : {
    "LogPoolName": "my-logPool",
    "TimeRange":"last 15 minutes",
    "Query": "select count(*) as pv where code=500"
  },
  "Display": {
            ...... //待定
  }
}

响应示例

HTTP/1.1 200
Server: nginx
Content-Length: 0
Connection: close
Access-Control-Allow-Origin: *
Date: Sun, 27 May 2018 07:43:27 GMT
x-klog-requestid: 5B0A619F205DC3F30EDA9322
{
    "ChartId" : "chart-123124243-001"
}
文档导读
纯净模式常规模式

纯净模式

点击可全屏预览文档内容
文档反馈