Decision and Operations 4
Feature flag pricing is difficult to compare because vendors charge for different units. The cheapest line item can also become the most expensive operating model if it creates engineering or incident cost elsewhere.
Public pricing models as of September 2026
| Platform | Public pricing pattern |
|---|---|
| GitLab | feature flags included in GitLab tiers; Premium is $29 per user per month billed annually, Ultimate custom |
| Datadog | first 1M MFCR per month free; annual list rate $55 per 1M for 1M to 10M, then $45 per 1M above 10M |
| LaunchDarkly Foundation | annual list rate $10 per service connection per month and $8.33 per 1,000 client side MAU per month, with initial included usage |
| Unleash Enterprise PAYG | $75 per platform seat per month with 53M cloud API requests included; open source edition is free to self host |
| Flagsmith | monthly Startup $45 and Scale Up $300; enterprise and self hosted options available |
| Harness FME | enterprise usage and contract pricing; model should be obtained from the actual proposal |
These are public list prices, not negotiated enterprise quotes. Pricing changes, and large contracts frequently use custom terms.
Datadog illustrates why topology matters
Datadog does not charge for each local flag evaluation. It bills configuration requests. Client SDKs request configuration when they initialize. Server SDKs poll for configuration, and Datadog applies a ten times multiplier to server side configuration requests.
cost driver ≠ number of if statements
cost driver = clients + running server instances + refresh behavior
Two companies with the same number of flags can therefore have very different Datadog bills.
LaunchDarkly uses different units
Server side usage is expressed through service connection time, while client side usage is based on monthly active contexts. Serverless and short lived processes may receive specialized pricing because normal connection counting can distort their footprint.
GitLab's strongest cost case is incremental cost
If the company already licenses GitLab, the question is not whether GitLab costs $0. The company is paying for GitLab. The useful question is whether feature flags require additional platform spend. For many existing GitLab customers, that incremental feature flag license cost is effectively zero.
Self hosting has hidden cost too
Open source does not mean zero total cost. Someone owns:
- infrastructure
- upgrades
- high availability
- backup and recovery
- security patching
- monitoring
- support for application teams
Technical debt is a feature flag cost
A stale release flag creates extra code paths, tests, support ambiguity and incident debugging work. A platform that helps teams remove dead flags can save engineering time even if its license is more expensive.
Incident reduction belongs in the model
If progressive delivery or automated guardrails prevent one major production incident, the value may exceed a large annual platform bill. The inverse is also true: paying for advanced release automation that no team actually uses creates no such return.
A useful TCO equation
feature management TCO
= platform fees
+ infrastructure
+ engineering integration
+ operations
+ training
+ governance
+ flag debt
- avoided incident cost
- delivery efficiency gained
The financially responsible choice is not automatically the cheapest vendor. It is the option whose capabilities are actually used and whose cost model fits the organization's deployment topology.
Pricing sources
Feature Flags series
← Comparing Feature Flag Platforms Operating Feature Flags at Scale →