
[](https://docs.rs/axiom-rs/)
[](https://github.com/axiomhq/axiom-rs/actions?query=workflow%3ACI)
[](https://crates.io/crates/axiom-rs)
[](LICENSE-APACHE)
Axiom unlocks observability at any scale.
- Ingest with ease, store without limits: Axiom’s next-generation datastore enables ingesting petabytes of data with ultimate efficiency. Ship logs from Kubernetes, AWS, Azure, Google Cloud, DigitalOcean, Nomad, and others.
- Query everything, all the time: Whether DevOps, SecOps, or EverythingOps, query all your data no matter its age. No provisioning, no moving data from cold/archive to “hot”, and no worrying about slow queries. All your data, all. the. time.
- Powerful dashboards, for continuous observability: Build dashboards to collect related queries and present information that’s quick and easy to digest for you and your team. Dashboards can be kept private or shared with others, and are the perfect way to bring together data from different sources
For more information check out the official documentation.
Usage
Add the following to your Cargo.toml:
toml
[dependencies]
axiom-rs = "0.6"
If you use the Axiom CLI, run eval $(axiom config export -f)
to configure your environment variables.
Otherwise create a personal token in the Axiom settings and export it as AXIOM_TOKEN
. Set AXIOM_ORG_ID
to the organization ID from the settings page of the organization you want to access.
Create and use a client like this:
```rust
use axiomrs::Client;
use serdejson::json;
[tokio::main]
async fn main() -> Result<(), Box> {
let client = Client::new()?;
client.datasets.create("my-dataset", "").await?;
client.datasets.ingest("my-dataset", vec![json!({
"foo": "bar",
})]).await?;
let res = client.datasets
.apl_query(r#"['my-dataset'] | where foo == "bar" | limit 100"#, None)
.await?;
println!("{:?}", res);
client.datasets.delete("my-dataset").await?;
Ok(())
}
```
For further examples, head over to the examples directory.
Optional Features
The following are a list of
Cargo features
that can be enabled or disabled:
- default-tls (enabled by default): Provides TLS support to connect
over HTTPS.
- native-tls: Enables TLS functionality provided by
native-tls
.
- rustls-tls: Enables TLS functionality provided by
rustls
.
- tokio (enabled by default): Enables the usage with the
tokio
runtime.
- async-std : Enables the usage with the
async-std
runtime.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.