axiom-rs: The official Rust bindings for the Axiom API axiom-rs: The official Rust bindings for the Axiom API

[![docs.rs](https://docs.rs/axiom-rs/badge.svg)](https://docs.rs/axiom-rs/) [![build](https://img.shields.io/github/workflow/status/axiomhq/axiom-rs/CI?ghcache=unused)](https://github.com/axiomhq/axiom-rs/actions?query=workflow%3ACI) [![crates.io](https://img.shields.io/crates/v/axiom-rs.svg)](https://crates.io/crates/axiom-rs) [![License](https://img.shields.io/crates/l/axiom-rs)](LICENSE-APACHE)

Axiom unlocks observability at any scale.

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:

License

Licensed under either of

at your option.