The Algolia Monitoring API Client is a library that enables developers to interact with the Algolia Monitoring REST API programmatically. This client makes it easy to fetch data and monitor the status, incidents, inventory, latency, and reachability of Algolia's services. By providing a simple interface to interact with the API, the Algolia Monitoring API Client abstracts away the complexity of making HTTP requests, handling authentication, and parsing JSON responses.
The repository is not affiliated with Algolia company and all the trademarks to Algolia name is theirs.
Key features of the Algolia Monitoring API Client:
get_status
, get_incidents
, get_inventory
, get_latency
, and get_reachability
.Usage of the Algolia Monitoring API Client typically involves the following steps:
get_status
, get_incidents
, or get_latency
, to fetch data from the Algolia Monitoring API.By using the Algolia Monitoring API Client, developers can easily monitor their Algolia services, ensuring optimal performance, and quickly addressing any incidents or issues that arise.
Simple example
```rust use algoliamonitoringrs::AlgoliaMonitoring;
async fn main() { let monitoring = AlgoliaMonitoring::new("apikey".toowned(), "appid".toowned()); let result = monitoring.get_status(None).await; println!("{:?}", result); println!("Hello, world!"); } ```