Skip to main content
Add custom metadata and tags to your traces for powerful filtering, grouping, and analytics. Perfect for A/B testing deployments, tracking request types, or any custom categorization.

Overview

Fallom supports two types of custom data:

Usage

Add metadata and tags when creating a session:

Common Use Cases

A/B Testing Deployments

Compare performance between different LLM providers or deployment types:
Then filter in the dashboard by deployment: dedicated to see all traces from your dedicated instance.

Request Type Categorization

Group traces by the type of work being done:

Environment Tracking

Separate production, staging, and development traces:

Feature Flags

Track which feature variants are being used:

Metadata Types

Metadata values can be:
  • Strings: "production", "dedicated"
  • Numbers: 42, 3.14
  • Booleans: true, false

Filtering in Dashboard

Once you’ve added metadata and tags to your traces, you can filter them in the Fallom dashboard:

By Tags

Use the tags filter to find traces with specific tags. Tags support partial matching (contains):
  • Filter by single tag: production
  • Filter by multiple tags: production, high-priority

By Metadata

Filter traces by specific metadata key-value pairs:
  • deployment:dedicated - Find all traces from dedicated deployments
  • requestType:transcript - Find all transcript analysis requests
  • environment:production - Find all production traces

Best Practices

Keep metadata keys consistent across your application. Use the same key names (e.g., always deployment not sometimes deploy or deployment_type) for easier filtering.
  1. Use metadata for structured data that you’ll query by specific values
  2. Use tags for quick labels that you’ll search with “contains”
  3. Keep metadata keys short but descriptive
  4. Document your metadata schema so your team uses consistent keys
  5. Don’t put sensitive data in metadata or tags (they’re visible in the dashboard)

API Reference

Session Options

Storage

Metadata and tags are stored in the trace attributes as:
  • fallom.metadata - Your custom metadata object
  • fallom.tags - Your tags array
These are queryable via the dashboard filters and API.