Real-time analytics

Track what matters

Event tracking, user analytics, and product metrics for every FastFlowTech app. Two lines of code to start. Real-time dashboards from day one.

Integration

Two lines. That's it.

Add the SDK, call Track(), and events flow to your dashboard automatically.

Program.cs
// dotnet add package FF.Analytics.Sdk
builder.AddFFAnalytics();
app.UseFFAnalytics();  // auto-tracks requests

// Track custom events anywhere
analytics.Track("order.placed", new {
    amount = 99.99,
    currency = "USD"
});
main.go
client := ffanalytics.NewPlatform(opts, platformOpts)
defer client.Close()

// Track custom events anywhere
client.Track("order.placed", map[string]any{
    "amount":   99.99,
    "currency": "USD",
})
app.py
# pip install ffanalytics
client = FFAnalytics(
    analytics_url="https://analytics.fastflowtech.ai",
    api_key="...",
    product_name="my-product")

# Track custom events anywhere
client.track("order.placed", {
    "amount": 99.99,
    "currency": "USD"
})

Built for product teams

Everything you need to understand how your product is used, without the overhead of a full analytics platform.

Event Tracking

Track user actions, page views, and custom events. Events are batched and flushed automatically - zero performance overhead.

User Insights

Active users, signups, sessions, and MRR in one real-time dashboard. Period-over-period trends show where you're growing.

API-First

REST API for ingestion and querying. Multi-tenant by design - every product gets its own isolated namespace.

How it works

1

Add the SDK

Install the NuGet, Go, or Python package. Two lines in your startup to enable auto-tracking of every request.

2

Track events

Call Track() with an event name and properties. Events are batched in memory and flushed every 30 seconds.

3

View your dashboard

Events appear in real-time. See top events, active users, time series, and property distributions out of the box.

Everything at a glance

Events

Volume, top events, custom properties

Users

Active users, signups, sessions

Revenue

MRR tracking with trend comparison

Trends

Period-over-period change detection

Alerts

Email notifications on metric drops

Export

CSV export of events and timeseries

Multi-tenant

One SDK, every product

Each product gets its own analytics namespace with isolated data. The SDK handles authentication, batching, and delivery. Your product just calls Track().

  • Auto-enrichment - product, version, environment added to every event
  • Request auto-tracking - middleware logs path, method, status, and duration
  • Background batching - events flushed every 30s or at 50 events, zero blocking
  • Query API - summary, top events, time series, property distribution, active users
  • No-op mode - no analytics URL configured? SDK does nothing with zero overhead
SDKs available
C#
FF.Analytics.Sdk
NuGet - ASP.NET middleware, DI, auto-tracking
Go
ffanalytics
Go module - goroutine-based batching, query client
Py
ffanalytics
PyPI - thread-based batching, stdlib only
View documentation →

Simple pricing

One plan. All products. Unlimited events.

$18/mo
  • Unlimited events and products
  • Real-time dashboard
  • MRR and user tracking
  • Period-over-period trends
  • CSV export
  • C#, Go, Python SDKs
Get Started

Ready to track your products?

Sign in with your FastFlowTech account to view your analytics dashboard.