Quick Start
Use this guide to go from account creation to a live event, first policy, first destination test, and first shared chart.
If you are using Chirpier with agent workflows, especially OpenClaw, continue with Agentic Workflows and then OpenClaw Guides after this flow.
Steps
Create an account
Create an account at chirpier.co.
Get your workspace token
Open the Integration page in Chirpier and copy the bearer token you will use for both logging and control-plane APIs.
Send your first event
Send a numeric event with:
- your API key
- an
eventname - optional
agent - a numeric
value - optional
occurred_at, andmeta
Use the SDK overview to pick JavaScript, Go, or Python, or send data with the Logs API.
Confirm the event definition exists
Once you’ve logged the event, Chirpier auto-creates the event definition from the agent + event pair. There is no manual registration step. That event becomes the anchor for dashboard charts, policies, analytics, and public facing charts.
Inspect the event in the app
Open the Chirpier dashboard and verify the event appears in the Events surface with the expected name, description, and rollup activity.
Check a period comparison
Use the analytics endpoint to compare the current window against a previous one. This is how you see changes at a glance without building your own comparison logic.
JavaScript
const analytics = await client.getEventAnalytics(eventID, {
view: "window",
period: "1h",
previous: "previous_1d",
});
// analytics.data.value_pct_change — e.g., "token spend is 20% up from same hour yesterday"See Analytics API for all supported period and comparison combinations.
Create your first policy
Create a policy for the event and choose the aggregate that matches the event shape. For example, a count event like tool.errors.count should use sum, while a latency event like task.duration_ms should use average or p95_est.
See Choosing the right aggregate for guidance.
Test a destination
Create a destination for alerts to Slack, Discord, Telegram, email, or webhook and run a test send before relying on production delivery. Inspect the test delivery to verify the downstream provider received it.
See Destinations for configuration examples per channel type.
Share or embed the chart
Once the event is public, use the hosted event page directly or embed it with the Chirpier chart clients. See Public Event Pages for the sharing flow.
Continue with See Your Event in Chirpier, Manage Resources, or Visualize And Embed.