Your telemetry stays inside your organization. These features run in a
service reachable only by the aiAxonIQ API, on your behalf, scoped to your
organization — the same isolation as every other query. See
Platform architecture.
What is available
Anomaly detection
Statistical outliers in a metric over a recent window, by Z-score and
interquartile range. Fast, explainable, no training.
Forecasting
Where a series is heading, with seasonality. Capacity planning and
error-budget projection.
Natural-language query
A question in English becomes a query over your telemetry.
Incident analysis
Give it a log excerpt from an incident; get a summary and likely causes.
Knowledge base
Index your own runbooks and postmortems, then get answers grounded in them.
Suggestions
Proposed alert rules and SLOs derived from how your services actually
behave.
Anomaly detection
Z-score and interquartile-range outlier detection over a recent window.Statistical, not learned. There is no model to train and no warm-up
period, and a flagged point can always be traced back to how far it sat from
the recent distribution. That is a real advantage over an opaque score: you
can tell whether to believe it.
Forecasting
Projects a metric forward, accounting for seasonality — daily and weekly cycles rather than a straight line through the average. Use it for capacity questions (“when do we run out of disk”) and for error budgets (“do we exhaust before the window ends”).Forecasting is rate limited, because fitting a model is seconds of
compute rather than milliseconds. If you are driving it from a script, expect
to be throttled and space the calls out.
Natural-language query
Ask a question in English; get a query over your telemetry and its result. The generated query is constrained before it runs and executes under a per-organization identity, so a generated query cannot read another organization’s data regardless of what it asks for.Incident analysis
Supply a log excerpt from an incident and get a summary and likely causes. Runs are saved, so an analysis can be reopened later — useful when writing the postmortem a week afterwards.The log excerpt is the input. A request without one is refused rather
than answered generically: an analysis with nothing to analyse would be
fluent and worthless.
Knowledge base
Index your own documents — runbooks, postmortems, architecture notes — and ask questions answered from them rather than from general knowledge. This is what makes answers specific to your system. “How do we roll back the payments service” has a real answer only if the runbook that describes it has been indexed.Indexing writes to a corpus shared across your whole organization, so it
requires the Editor role. Anyone in the organization can then search it.
Do not index a document you would not show to every member.
Suggestions
Alert rules and SLOs proposed from observed behaviour, which you accept or dismiss. A suggestion derived from what a service actually does is a far better starting point than a threshold picked because it was a round number. Accepting one creates an ordinary rule or objective — there is nothing special about it afterwards.Feedback
Most surfaces accept a thumbs up or down. It is recorded against your organization and is how these features improve. It is worth the two seconds: the alternative is that nobody finds out a suggestion was wrong.Next
LLM observability
Monitoring your AI workloads — a different thing to this page.
Alerting
Where suggestions land, and how rules actually evaluate.
Service level objectives
Error budgets and forecasting them.