Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions config/_default/menus/api.en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6701,6 +6701,58 @@ menu:
- GetDomainAllowlist
unstable: []
order: 1
- name: Error Tracking
url: /api/latest/error-tracking/
identifier: error-tracking
generated: true
- name: Update the state of an issue
url: '#update-the-state-of-an-issue'
identifier: error-tracking-update-the-state-of-an-issue
parent: error-tracking
generated: true
params:
versions:
- v2
operationids:
- UpdateIssueState
unstable: []
order: 3
- name: Update the assignee of an issue
url: '#update-the-assignee-of-an-issue'
identifier: error-tracking-update-the-assignee-of-an-issue
parent: error-tracking
generated: true
params:
versions:
- v2
operationids:
- UpdateIssueAssignee
unstable: []
order: 4
- name: Get the details of an error tracking issue
url: '#get-the-details-of-an-error-tracking-issue'
identifier: error-tracking-get-the-details-of-an-error-tracking-issue
parent: error-tracking
generated: true
params:
versions:
- v2
operationids:
- GetIssue
unstable: []
order: 2
- name: Search error tracking issues
url: '#search-error-tracking-issues'
identifier: error-tracking-search-error-tracking-issues
parent: error-tracking
generated: true
params:
versions:
- v2
operationids:
- SearchIssues
unstable: []
order: 1
- name: Fastly Integration
url: /api/latest/fastly-integration/
identifier: fastly-integration
Expand Down
3 changes: 3 additions & 0 deletions content/en/api/latest/error-tracking/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: Error Tracking
---
4 changes: 4 additions & 0 deletions content/en/api/v2/error-tracking/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Error Tracking
headless: true
---
640 changes: 640 additions & 0 deletions content/en/api/v2/error-tracking/examples.json

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions content/en/api/v2/error-tracking/request.SearchIssues.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"data": {
"attributes": {
"query": "service:orders-* AND @language:go",
"from": 1671612804000,
"to": 1671620004000,
"track": "trace"
},
"type": "search_request"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"data": {
"id": "87cb11a0-278c-440a-99fe-701223c80296",
"type": "assignee"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"data": {
"attributes": {
"state": "RESOLVED"
},
"id": "c1726a66-1f64-11ee-b338-da7ad0900002",
"type": "error_tracking_issue"
}
}
21 changes: 21 additions & 0 deletions data/api/v2/CodeExamples.json
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,27 @@
"description": "Update a downtime returns \"OK\" response"
}
],
"SearchIssues": [
{
"group": "error_tracking",
"suffix": "",
"description": "Search error tracking issues returns \"OK\" response"
}
],
"UpdateIssueAssignee": [
{
"group": "error_tracking",
"suffix": "",
"description": "Update the assignee of an issue returns \"OK\" response"
}
],
"UpdateIssueState": [
{
"group": "error_tracking",
"suffix": "",
"description": "Update the state of an issue returns \"OK\" response"
}
],
"CreateEvent": [
{
"group": "events",
Expand Down
Loading
Loading