5 个版本 (破坏性)
新版本 0.8.0 | 2024 年 8 月 22 日 |
---|---|
0.7.0 | 2024 年 7 月 15 日 |
0.6.0 | 2024 年 4 月 28 日 |
0.5.0 | 2024 年 4 月 13 日 |
0.0.3 |
|
#1091 在 网页编程
每月 21 次下载
用于 2 crates
140KB
3.5K SLoC
kuma-client
是一个 Rust crate,提供与 Uptime Kuma SocketIO API 交互的客户端库。
示例
use kuma_client::{Client, Config, Url};
#[tokio::main()]
async fn main() {
let client = Client::connect(Config {
url: Url::parse("https://127.0.0.1:3001").expect("Invalid URL"),
username: Some("Username".to_owned()),
password: Some("Password".to_owned()),
..Default::default()
})
.await
.expect("Failed to connect to server");
let monitors = client.get_monitors().await.expect("Failed to get monitors");
println!("{:?}", monitors);
}
use kuma_client::{
monitor::{MonitorGroup, MonitorHttp},
notification::Notification,
tag::{Tag, TagDefinition},
Client, Config, Url,
};
#[tokio::main()]
async fn main() {
// Connect to the server
let client = Client::connect(Config {
url: Url::parse("https://127.0.0.1:3001").expect("Invalid URL"),
username: Some("Username".to_owned()),
password: Some("Password".to_owned()),
..Default::default()
})
.await
.expect("Failed to connect to server");
// Create a tag
let tag_definition = client
.add_tag(TagDefinition {
name: Some("example_tag".to_owned()),
color: Some("red".to_owned()),
..Default::default()
})
.await
.expect("Failed to add tag");
// Create a group
let group = client
.add_monitor(MonitorGroup {
name: Some("Example Group".to_owned()),
tags: vec![Tag {
tag_id: tag_definition.tag_id,
value: Some("example_group".to_owned()),
..Default::default()
}],
..Default::default()
})
.await
.expect("Failed to add group");
// Createa a notification
let notification = client
.add_notification(Notification {
name: Some("Example Notification".to_owned()),
config: Some(serde_json::json!({
"webhookURL": "https://webhook.site/304eeaf2-0248-49be-8985-2c86175520ca",
"webhookContentType": "json"
})),
..Default::default()
})
.await
.expect("Failed to add notification");
// Create a monitor
client
.add_monitor(MonitorHttp {
name: Some("Monitor Name".to_owned()),
url: Some("https://example.com".to_owned()),
parent: group.common().id().clone(),
tags: vec![Tag {
tag_id: tag_definition.tag_id,
value: Some("example_monitor".to_owned()),
..Default::default()
}],
notification_id_list: Some(
vec![(
notification.id.expect("No notification ID").to_string(),
true,
)]
.into_iter()
.collect(),
),
..Default::default()
})
.await
.expect("Failed to add monitor");
let monitors = client.get_monitors().await.expect("Failed to get monitors");
println!("{:?}", monitors);
}
依赖项
~23–38MB
~688K SLoC