[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dev with master changes #841

Merged
merged 6 commits into from
Feb 27, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
docs(impl): note that frameStats is missing not nullable (#827)
  • Loading branch information
ooliver1 authored Feb 4, 2023
commit 181f8732b72a53d3aafd6089573e61f0f6164cb2
7 changes: 3 additions & 4 deletions IMPLEMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ A collection of stats sent every minute.
| uptime | int | The uptime of the node in milliseconds |
| memory | [Memory](#memory) object | The memory stats of the node |
| cpu | [CPU](#cpu) object | The cpu stats of the node |
| frameStats | ?[Frame Stats](#frame-stats) object | The frame stats of the node. `null` if the node has no players or when retrieved via `/v3/stats` |
| frameStats? | [Frame Stats](#frame-stats) object | The frame stats of the node. `null` if the node has no players or when retrieved via `/v3/stats` |

##### Memory

Expand Down Expand Up @@ -1368,7 +1368,7 @@ GET /v3/stats

Response:

`frameStats` is always `null` for this endpoint.
`frameStats` is always missing for this endpoint.
[Stats Object](#stats-object)

<details>
Expand All @@ -1389,8 +1389,7 @@ Response:
"cores": 4,
"systemLoad": 0.5,
"lavalinkLoad": 0.5
},
"frameStats": null
}
}
```

Expand Down