查询错误采集规则历史
curl --request POST \
--url 'https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"p": 0,
"limit": 20,
"orderby": "updated_at",
"asc": false
}
'import requests
url = "https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key="
payload = {
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"p": 0,
"limit": 20,
"orderby": "updated_at",
"asc": False
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
application_id: 'WoyQQ3BohkdtPivubEvE8o',
p: 0,
limit: 20,
orderby: 'updated_at',
asc: false
})
};
fetch('https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'application_id' => 'WoyQQ3BohkdtPivubEvE8o',
'p' => 0,
'limit' => 20,
'orderby' => 'updated_at',
'asc' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key="
payload := strings.NewReader("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"p\": 0,\n \"limit\": 20,\n \"orderby\": \"updated_at\",\n \"asc\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"p\": 0,\n \"limit\": 20,\n \"orderby\": \"updated_at\",\n \"asc\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"p\": 0,\n \"limit\": 20,\n \"orderby\": \"updated_at\",\n \"asc\": false\n}"
response = http.request(request)
puts response.read_body{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"data": {
"total": 2,
"has_next_page": false,
"items": [
{
"rules": [
{
"id": 1044,
"account_id": 20001,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"rule_id": "9spXEVoMeZWujjz25yrgTe",
"rule_name": "Production console errors",
"description": "Only ingest TypeError/ReferenceError from production, excluding Safari.",
"filters": [
[
{
"key": "error.env",
"oper": "IN",
"vals": [
"production"
]
},
{
"key": "error.error_type",
"oper": "IN",
"vals": [
"TypeError",
"ReferenceError"
]
}
],
[
{
"key": "error.browser_name",
"oper": "NOTIN",
"vals": [
"Safari"
]
}
]
],
"status": "enabled",
"created_by": 1001,
"updated_by": 1001,
"deleted_at": 0,
"created_at": 1786000000000,
"updated_at": 1786000000000
}
],
"version": 2,
"updated_by": 1001,
"updated_by_name": "Alice Chen",
"updated_at": 1786003600000
},
{
"rules": [],
"version": 1,
"updated_by": 1001,
"updated_by_name": "Alice Chen",
"updated_at": 1786000000000
}
]
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
}
}错误采集规则
查询错误采集规则历史
分页返回某应用错误采集规则集合的历史快照。
POST
/
rum
/
error-ingestion
/
rules
/
history
/
list
查询错误采集规则历史
curl --request POST \
--url 'https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"p": 0,
"limit": 20,
"orderby": "updated_at",
"asc": false
}
'import requests
url = "https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key="
payload = {
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"p": 0,
"limit": 20,
"orderby": "updated_at",
"asc": False
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
application_id: 'WoyQQ3BohkdtPivubEvE8o',
p: 0,
limit: 20,
orderby: 'updated_at',
asc: false
})
};
fetch('https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'application_id' => 'WoyQQ3BohkdtPivubEvE8o',
'p' => 0,
'limit' => 20,
'orderby' => 'updated_at',
'asc' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key="
payload := strings.NewReader("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"p\": 0,\n \"limit\": 20,\n \"orderby\": \"updated_at\",\n \"asc\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"p\": 0,\n \"limit\": 20,\n \"orderby\": \"updated_at\",\n \"asc\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/rum/error-ingestion/rules/history/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"application_id\": \"WoyQQ3BohkdtPivubEvE8o\",\n \"p\": 0,\n \"limit\": 20,\n \"orderby\": \"updated_at\",\n \"asc\": false\n}"
response = http.request(request)
puts response.read_body{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"data": {
"total": 2,
"has_next_page": false,
"items": [
{
"rules": [
{
"id": 1044,
"account_id": 20001,
"application_id": "WoyQQ3BohkdtPivubEvE8o",
"rule_id": "9spXEVoMeZWujjz25yrgTe",
"rule_name": "Production console errors",
"description": "Only ingest TypeError/ReferenceError from production, excluding Safari.",
"filters": [
[
{
"key": "error.env",
"oper": "IN",
"vals": [
"production"
]
},
{
"key": "error.error_type",
"oper": "IN",
"vals": [
"TypeError",
"ReferenceError"
]
}
],
[
{
"key": "error.browser_name",
"oper": "NOTIN",
"vals": [
"Safari"
]
}
]
],
"status": "enabled",
"created_by": 1001,
"updated_by": 1001,
"deleted_at": 0,
"created_at": 1786000000000,
"updated_at": 1786000000000
}
],
"version": 2,
"updated_by": 1001,
"updated_by_name": "Alice Chen",
"updated_at": 1786003600000
},
{
"rules": [],
"version": 1,
"updated_by": 1001,
"updated_by_name": "Alice Chen",
"updated_at": 1786000000000
}
]
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
}
}{
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
}
}限制说明
| 项目 | 说明 |
|---|---|
| 速率限制 | 每个账户 1,000 次/分钟;50 次/秒 |
| 权限要求 | 无 —— 持有有效的 app_key 即可调用 |
使用说明
- 每条历史记录都是该应用在某一时刻全部规则的完整快照,而不是单条规则的差异。
p是从 0 开始的页码,不是字节偏移量——服务端内部按offset = p * limit计算。orderby仅支持updated_at或version;传入其他值会被静默回退为updated_at。limit默认 20,服务端上限 100;超过 100 会被静默截断,小于等于 0 时回退为默认值。
授权
在 Flashduty 控制台 账户 → APP Key 中签发的 app_key。调用任何公开 API 时都必须携带。它等同于所属账户的身份凭证,请妥善保管。
请求体
application/json
分页查询应用规则历史的入参。
RUM 应用 ID,可通过 POST /rum/application/list 获取。
从 0 开始的页码,默认 0。
必填范围:
x >= 0每页条数,默认 20,服务端上限 100;小于等于 0 时回退为默认值。
必填范围:
x <= 100排序字段:updated_at 或 version;无法识别的值会回退为 updated_at。
按升序排序,默认按降序排序。
此页面对您有帮助吗?
⌘I