Skip to content

Commit de3849b

Browse files
committed
release: prepare v0.2.0
1 parent 3949c97 commit de3849b

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "litemon"
3-
version = "0.1.4"
3+
version = "0.2.0"
44
edition = "2024"
55
rust-version = "1.85.0"
66
description = "A very minimal and lightweight metric collector for Linux systems"

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ LiteMon is written in Rust, and uses the
2626
**Latest version:**
2727

2828
```
29-
0.1.4
29+
0.2.0
3030
```
3131

3232
### Ubuntu/Debian
3333

3434
```bash
3535
# Install litemon
36-
sudo dpkg -i $(curl -w "%{filename_effective}" -SsLO "https://github.com/RagnarLab/litemon/releases/download/v0.1.4/litemon-0.1.4-1.$(uname -m).deb")
36+
sudo dpkg -i $(curl -w "%{filename_effective}" -SsLO "https://github.com/RagnarLab/litemon/releases/download/v0.2.0/litemon-0.2.0-1.$(uname -m).deb")
3737

3838
# Configure litemon
3939
sudo mv /etc/litemon/config.kdl.example /etc/litemon/config.kdl
@@ -47,7 +47,7 @@ sudo systemctl restart litemon
4747

4848
```bash
4949
# Install litemon
50-
sudo rpm -iv "https://github.com/RagnarLab/litemon/releases/download/v0.1.4/litemon-0.1.4-1.$(uname -m).rpm"
50+
sudo rpm -iv "https://github.com/RagnarLab/litemon/releases/download/v0.2.0/litemon-0.2.0-1.$(uname -m).rpm"
5151

5252
# Configure litemon
5353
sudo mv /etc/litemon/config.kdl.example /etc/litemon/config.kdl
@@ -154,10 +154,15 @@ prometheus.scrape "litemon_exporter" {
154154
| litemon_mem_used_percentage | Gauge | Memory used (0.0-1.0) in percent. | 1 per host |
155155
| litemon_systemd_unit_state | Gauge | Systemd unit state (1 for current state, 0 otherwise). | 1 per service, 1 per state, 8 states |
156156
| litemon_net_bytes_received | Counter | Network bytes received. | 1 per host, 1 per network interface |
157-
| litemon_net_errors_received | Counter | Network errors received. | 1 per host, 1 per network interface |
157+
| litemon_net_errors_received | Counter | Network errors received (packets) | 1 per host, 1 per network interface |
158158
| litemon_net_bytes_sent | Counter | Network bytes sent. | 1 per host, 1 per network interface |
159-
| litemon_net_errors_sent | Counter | Network errors sent. | 1 per host, 1 per network interface |
160-
| litemon_fs_usage_ratio | Gauge | Filesystem usage ratio (0.0-1.0). | 1 per host, 1 per mount point |
159+
| litemon_net_errors_sent | Counter | Network errors sent (packets) | 1 per host, 1 per network interface |
160+
| litemon_fs_usage_ratio | Gauge | Filesystem usage ratio (0.0-1.0). | 1 per mount point |
161+
| litemon_memory_pressure_total | Gauge | Memory pressure stall information (PSI) in microseconds. | 1 per host |
162+
| litemon_cpu_pressure_total | Gauge | CPU pressure stall information (PSI) in microseconds. | 1 per host |
163+
| litemon_io_pressure_total | Gauge | I/O pressure stall information (PSI) in microseconds. | 1 per host |
164+
| litemon_disk_bytes_read_total | Gauge | Number of bytes read from disk since boot. | 1 per mount point |
165+
| litemon_disk_bytes_written_total | Gauge | Number of bytes written to disk since boot. | 1 per mount point |
161166

162167

163168
## Support

0 commit comments

Comments
 (0)