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.

Quickstart

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 make note of 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> { // Build your client by providing a personal token and an org id: let client = Client::builder() .withtoken("my-token") .withorg_id("my-org") .build()?;

// Alternatively you autoconfigure the client from the environment variables
// AXIOM_TOKEN and AXIOM_ORG_ID:
let client = Client::new()?;

client.datasets.create("my-dataset", "").await?;

client
    .ingest(
        "my-dataset",
        vec![json!({
            "foo": "bar",
        })],
    )
    .await?;

let res = client
    .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.