For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
13.5kProductPricingSign inStart free trialBook a demo
DocsAPIsSDKsEnterprise EdgeGuidesAcademyRelease notes
DocsAPIsSDKsEnterprise EdgeGuidesAcademyRelease notes
    • Home
  • Get started
    • Quickstart
    • Introduction to feature flags
    • Unleash architecture overview
  • Core concepts
    • Overview
      • Impression data
      • Events
      • Playground
      • Network
      • Enterprise Edge observability
    • Import and export

Unleash reduces the risk of releasing new features, drives innovation by streamlining the software release process, and increases revenue by optimizing end-user experience. While we serve the needs of the world's largest, most security-conscious organizations, we are also rated the “Easiest Feature Management system to use” by G2.

GitHubGitHubLinkedInLinkedInX (Twitter)X (Twitter)SlackSlackStack OverflowStack OverflowYouTubeYouTube

Server SDKs

  • Node.js
  • Java
  • Go
  • Rust
  • Ruby
  • Python
  • .NET
  • PHP
  • All SDKs

Frontend SDKs

  • JavaScript
  • React
  • Next.js
  • Vue
  • iOS
  • Android
  • Flutter

Feature Flag use cases

  • Secure, scalable feature flags
  • Rollbacks
  • FedRAMP, SOC2, ISO2700 compliance
  • Progressive or gradual rollouts
  • Trunk-based development
  • Software kill switches
  • A/B testing
  • Feature management
  • Canary releases

Product

  • Quickstart
  • Unleash architecture
  • Pricing
  • Product vision
  • Open live demo
  • Open source
  • Enterprise feature management platform
  • Unleash vs LaunchDarkly

Support

  • Help center
  • Status
  • Changelog
Made in a cosy atmosphere in the Nordic countries.Copyright © 2026 Unleash
LogoLogo
13.5kProductPricingSign inStart free trialBook a demo
On this page
  • Overview
  • Traffic
  • Data Usage
  • Configure a data source
  • Configure Prometheus to scrape metrics from Unleash
  • Configure Unleash to query data from Prometheus
Core conceptsTesting and monitoring

Network

||View as Markdown|
Was this page helpful?
Previous

Enterprise Edge observability

Next
Built with
v4.21 Enterprise

The Network dashboards in the Unleash Admin UI are designed to give you an overview of incoming requests to your Unleash instance. This includes requests from Unleash SDKs, Unleash Edge, or the Unleash Admin UI.

To use these dashboards, you must configure an external data source.

Requests from Unleash SDKs and other official Unleash applications include an application name. Requests that don’t include an application name header (UNLEASH_APPNAME) are marked and aggregated as unknown.

You can access the Network dashboards in Admin settings > Network in the Unleash Admin UI.

Overview

The Overview section displays the Unleash instance and applications that have connected to it within the last five minutes. Unknown applications are excluded from this view.

Each application in the diagram includes its name and the average number of requests per second over the last five minutes.

Traffic

The Traffic section presents the requests that have consumed the most network traffic in the last six hours. These requests are grouped by client and base URL, with up to ten groups displayed.

Unleash aggregates requests by application name and base URL. Base URLs are batched using the first two path segments after /api. This means that Admin API requests are separate from Client API requests.

Data Usage

The Data Usage dashboard provides an overview of your requests to Unleash within a specific month, along with aggregated data over the last 3, 6, or 12 months. This allows you to track and assess your data usage over time. You can also compare your usage in previous months with the current month.

Configure a data source

To populate the Network dashboards, Unleash needs to read metrics from a Prometheus-compatible HTTP API (for example, Prometheus or VictoriaMetrics).

For this, you need to set up a two-way flow between Unleash and a Prometheus-compatible monitoring system:

  • Prometheus scrapes Unleash at /internal-backstage/prometheus.
  • Unleash queries Prometheus (via PROMETHEUS_API) to render the dashboards.

Configure Prometheus to scrape metrics from Unleash

First, you must configure your Prometheus instance to pull metrics from Unleash’s backstage API endpoint.

Add the following scrape job to your Prometheus configuration file (for example, prometheus.yml). Replace ‘your-unleash-url’ with the base URL of your Unleash instance.

1- job_name: unleash_internal_metrics
2 metrics_path: /internal-backstage/prometheus
3 static_configs:
4 - targets: ['your-unleash-url']

This job tells Prometheus to periodically fetch metrics from the /internal-backstage/prometheus path on your Unleash server.

Configure Unleash to query data from Prometheus

Set the PROMETHEUS_API environment variable in your Unleash instance to the base URL of your Prometheus-compatible query API. This URL must be network-accessible from your Unleash instance. It can be an internal service name (such as http://prometheus.monitoring.svc.cluster.local) or a public URL.

$PROMETHEUS_API=http://vmselect-unleash-vm.victoriametrics:8481/select/0:0/prometheus