mirror of
https://github.com/fankes/beszel.git
synced 2025-10-19 17:59:28 +08:00
0.12.0 release :)
This commit is contained in:
@@ -473,11 +473,11 @@ func TestWriteToSessionEncoding(t *testing.T) {
|
|||||||
hubVersion: "0.12.0-beta0",
|
hubVersion: "0.12.0-beta0",
|
||||||
expectedUsesCbor: false,
|
expectedUsesCbor: false,
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
name: "matching beta version should use CBOR",
|
// name: "matching beta version should use CBOR",
|
||||||
hubVersion: "0.12.0-beta2",
|
// hubVersion: "0.12.0-beta2",
|
||||||
expectedUsesCbor: true,
|
// expectedUsesCbor: true,
|
||||||
},
|
// },
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "beszel",
|
"name": "beszel",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.12.0-beta2",
|
"version": "0.12.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
@@ -3,8 +3,8 @@ package beszel
|
|||||||
import "github.com/blang/semver"
|
import "github.com/blang/semver"
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Version = "0.12.0-beta2"
|
Version = "0.12.0"
|
||||||
AppName = "beszel"
|
AppName = "beszel"
|
||||||
)
|
)
|
||||||
|
|
||||||
var MinVersionCbor = semver.MustParse("0.12.0-beta2")
|
var MinVersionCbor = semver.MustParse("0.12.0")
|
||||||
|
@@ -27,7 +27,7 @@ It has a friendly web interface, simple configuration, and is ready to use out o
|
|||||||
Beszel consists of two main components: the **hub** and the **agent**.
|
Beszel consists of two main components: the **hub** and the **agent**.
|
||||||
|
|
||||||
- **Hub**: A web application built on [PocketBase](https://pocketbase.io/) that provides a dashboard for viewing and managing connected systems.
|
- **Hub**: A web application built on [PocketBase](https://pocketbase.io/) that provides a dashboard for viewing and managing connected systems.
|
||||||
- **Agent**: Runs on each system you want to monitor, creating a minimal SSH server to communicate system metrics to the hub.
|
- **Agent**: Runs on each system you want to monitor and communicates system metrics to the hub.
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
@@ -46,6 +46,7 @@ The [quick start guide](https://beszel.dev/guide/getting-started) and other docu
|
|||||||
- **Disk usage** - Host system. Supports multiple partitions and devices.
|
- **Disk usage** - Host system. Supports multiple partitions and devices.
|
||||||
- **Disk I/O** - Host system. Supports multiple partitions and devices.
|
- **Disk I/O** - Host system. Supports multiple partitions and devices.
|
||||||
- **Network usage** - Host system and containers.
|
- **Network usage** - Host system and containers.
|
||||||
|
- **Load average** - Host system.
|
||||||
- **Temperature** - Host system sensors.
|
- **Temperature** - Host system sensors.
|
||||||
- **GPU usage / temperature / power draw** - Nvidia and AMD only. Must use binary agent.
|
- **GPU usage / temperature / power draw** - Nvidia and AMD only. Must use binary agent.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user