bigpanda-rs
is a Rust library for integrating with the BigPanda API.
The library currently supports creating/updating alerts and changes.
Please see the tests in this respository for thorough examples, but here's a quick guide.
First, create a BigPanda client with a specific Api type along with an app key and auth_token:
rust
let client = bigpanda::Client::new(
ApiType::Alert,
&app_key.to_string(),
&auth_token.to_string()
);
Second, build your alert or change payload (See the tests for some more details):
rust
let alert = Alert {
app_key: app_key.to_string(),
status: AlertStatus::Ok,
host: "host_name".to_string(),
timestamp: Some(timestamp),
description: Some("This is a description".to_string()),
check: Some("This is a check"),
cluster: Some("cluster_name".to_string()),
primary_property: Some("host".to_string()),
secondary_property: None,
additional: None,
};
```rust let now = Utc::now(); let timestamp: i64 = now.timestamp();
let mut tags = HashMap::new(); tags.insert("changetype".tostring(), "software".tostring()); tags.insert("service".tostring(), "testservice".tostring());
let change = Change { identifier: "TEST-12345".tostring(), status: "Done".tostring(), summary: "This is a test change".tostring(), start: timestamp, end: timestamp, tags: Some(tags), ticketurl: None, metadata: None, }; ```
Finally, send the respective request:
rust
let response = client.send_alert(alert).await;
rust
let response = client.send_change(change).await;