-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
events: Document missing event types (#651)
- Loading branch information
Showing
7 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Failure | ||
------- | ||
|
||
Generated for specific errors that will also be sent to the usage | ||
reporting server, if enabled in the configuration. These are usually | ||
of special interest to the developers to troubleshoot complex errors. | ||
The ``data`` field contains a textual error message. | ||
|
||
.. code-block:: json | ||
{ | ||
"id": 93, | ||
"globalID": 93, | ||
"type": "Failure", | ||
"time": "2021-06-07T21:22:03.414609034+02:00", | ||
"data": "index handler got paused while already paused" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FolderPaused | ||
------------ | ||
|
||
Generated when the configuration changes regarding the "paused" state | ||
of a folder. Sent repeatedly for each changed folder. | ||
|
||
.. code-block:: json | ||
{ | ||
"id": 93, | ||
"globalID": 93, | ||
"type": "FolderPaused", | ||
"time": "2021-06-07T23:45:03.414609034+02:00", | ||
"data": { | ||
"id": "abcde-fghij", | ||
"label": "My folder" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FolderResumed | ||
------------- | ||
|
||
Generated when the configuration changes regarding the "paused" state | ||
of a folder. Sent repeatedly for each changed folder. | ||
|
||
.. code-block:: json | ||
{ | ||
"id": 93, | ||
"globalID": 93, | ||
"type": "FolderResumed", | ||
"time": "2021-06-07T23:45:03.414609034+02:00", | ||
"data": { | ||
"id": "abcde-fghij", | ||
"label": "My folder" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters