posthog-unofficial

Crates.ioposthog-unofficial
lib.rsposthog-unofficial
version0.2.3
created_at2022-09-11 18:45:15.791805+00
updated_at2022-09-11 18:45:15.791805+00
descriptionAn unofficial Rust client for Posthog (https://posthog.com/).
homepage
repositoryhttps://github.com/getsynth/posthog-unofficial-rs
max_upload_size
id663172
size7,582
s e (iamwacko)

documentation

README

PostHog Rust

Please see the main PostHog docs.

This crate is under development

Quickstart

Add posthog-rs to your Cargo.toml.

[dependencies]
posthog_rs = "0.2.0"
let client = crate::client(env!("POSTHOG_API_KEY"));

let mut event = Event::new("test", "1234");
event.insert_prop("key1", "value1").unwrap();
event.insert_prop("key2", vec!["a", "b"]).unwrap();

client.capture(event).unwrap();

Commit count: 24

cargo fmt