GET /api/reports
List all reports

参数

参数名字 描述
search
选填

过滤结果

Validations:

  • Must be String

order
选填

结果排序

Validations:

  • Must be String

page
选填

页数

Validations:

  • Must be String

per_page
选填

每个请求中的条目数

Validations:

  • Must be String


GET /api/reports/:id
Show a report

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.


POST /api/reports
Create a report

参数

参数名字 描述
report
必填

Validations:

  • Must be a Hash

report[host]
必填

Hostname or certname

Validations:

  • Must be String

report[reported_at]
必填

UTC time of report

Validations:

  • Must be String

report[status]
必填

Hash of status type totals

Validations:

  • Must be Hash

report[metrics]
必填

Hash of report metrics, can be just {}

Validations:

  • Must be Hash

report[logs]
选填 , 允许空值

Optional array of log hashes

Validations:

  • Must be an array of any type


DELETE /api/reports/:id
Delete a report

参数

参数名字 描述
id
必填

Validations:

  • Must be String


GET /api/hosts/:host_id/reports/last
Show the last report for a host

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.