Elastic Cloud is Elastic's managed Elasticsearch and Kibana offering. Pricing has two dimensions: the infrastructure cost (compute, storage, data transfer) and the subscription tier (Standard, Gold, Platinum, or Enterprise) which determines feature access. Most surprises on the invoice come from the second dimension. Features get locked behind a tier you didn't realize you needed, or premium support gets priced into the higher tiers whether you use it or not.
This guide covers what you actually pay for in 2026, how the tiers compare, where the hidden charges live, and how to keep costs down without losing features you need.
Subscription Tiers (2026)
Elastic Cloud (Hosted) currently offers four subscription tiers:
| Tier | Key features unlocked |
|---|---|
| Standard | Core Elasticsearch and Kibana, basic security, alerting, monitoring |
| Gold | Standard plus 24/7 support with one-hour P1 response, Searchable Snapshots / frozen tier, role-based access |
| Platinum | Gold plus advanced machine learning, cross-cluster replication, JDBC/ODBC, advanced security (SAML, SSO, field- and document-level security), 99.95% SLA |
| Enterprise | Platinum plus full Elastic Search/Observability/Security solutions, dedicated support, premium ML features |
A few important notes on the tiers:
- Gold was discontinued for self-managed deployments, but remains available on Elastic Cloud Hosted. If you've read that "Gold is gone," that's the self-managed change - it doesn't apply to the managed cloud offering.
- The published list-price minimums are for the smallest possible deployment. Real production deployments rarely look anything like the entry pricing. Modest production clusters typically run $1,500–$8,000/month on Standard or Gold. Mid-sized clusters on Platinum or Enterprise commonly sit between $10,000 and $50,000/month, with larger logging and observability deployments running well into six figures.
- 99.95% Monthly Uptime SLA is provided on Platinum and Enterprise. Gold gets the support SLA (24/7, one-hour P1 response) but not the same uptime guarantee. Standard has no uptime guarantee.
- Searchable Snapshots and the frozen tier are available from Gold up. Hot-warm tiering is available on Standard; the cold/frozen tier with capacity multiplication starts at Gold.
For current list prices and the authoritative feature matrix in your region, see Elastic's Subscriptions and Cloud subscriptions pages directly. Third-party pricing summaries tend to drift, especially across the SIEM, Search, and Observability solution bundles.
Pricing Models: Pay-As-You-Go vs. Annual
Elastic Cloud offers two billing models:
- Pay-as-you-go (PAYG): billed monthly by the hour. Good for variable workloads, dev/test, and proof-of-concept.
- Annual commitment: pre-pay for 12 months. Typically saves 10–25% versus PAYG depending on commit size, but you forfeit unused capacity.
Annual commits are credit-based: you draw down your annual pre-pay as you consume infrastructure. Heavy seasonal workloads (Black Friday, end of quarter) burn credits faster, so plan headroom or negotiate an overage agreement up front.
What Drives Your Elastic Cloud Bill
The base subscription is only part of the story. The infrastructure you provision is the bigger lever.
- Hardware profile. CPU-optimized, storage-optimized, vector search-optimized, and so on. Each profile has a different cost per GB of RAM.
- Region. The same hardware costs different amounts in
us-east-1,eu-west-1, andap-southeast-2. Asia-Pacific regions (Sydney, Tokyo, Mumbai) and South American regions tend to be more expensive than US and European regions, mirroring underlying AWS infrastructure pricing. - Availability zones. Single-AZ vs. 2-AZ vs. 3-AZ deployments roughly double or triple your bill respectively. 2-AZ is the production default.
- Snapshots and storage. Automated snapshots are billed per-GB stored. With long retention, snapshot storage often eclipses live cluster storage.
- Data transfer. Inbound is free. Outbound (cluster to user, cross-region replication) is per-GB, and cross-AZ replication inside the same region is also metered.
- Stack Monitoring. Telemetry from your cluster goes into a separate, billed deployment. Easy to forget; not free.
A simple cost model:
Monthly cost ≈
(subscription tier minimum or component licenses)
+ (RAM GB × hours × hourly $/GB)
+ (storage GB × $/GB-month)
+ (snapshot GB × $/GB-month)
+ (data transfer GB × $/GB)
For active clusters, the compute term dominates. For archive-heavy workloads, storage takes over. The snapshot and transfer terms are the ones that catch people off guard.
Hidden and Often-Overlooked Costs
- Stack Monitoring is its own billable deployment. Elastic recommends running monitoring data in a separate cluster, which means you're paying twice.
- Cross-cluster replication and search require Platinum and incur data transfer charges on top of the license.
- Searchable Snapshots unlock the cold/frozen tier from Gold and above, but the underlying S3, Azure Blob, or GCS object storage is billed separately.
- Custom plugins. Elastic Cloud only supports a curated set of Elastic-published plugins selectable from the deployment UI. Arbitrary user-supplied plugins aren't loadable; teams that need them generally end up self-managed or on an Enterprise commitment with custom support.
- Machine learning jobs use ML-optimized nodes that carry a premium per GB of RAM compared to general-purpose nodes.
- Premium support response times (one-hour P1 response) require Enterprise or higher.
Elastic Cloud Serverless: A Different Pricing Model
Elastic Cloud Serverless reached general availability on AWS in December 2024, on Google Cloud in April 2025, and on Microsoft Azure in June 2025. Serverless decouples storage, search and indexing throughput from infrastructure provisioning. You pay per VCU (virtual compute unit) consumed by indexing and search, plus storage. No nodes to size.
This makes a lot of sense for spiky workloads where provisioning a 24/7 cluster is wasteful. The unit economics for steady high-throughput workloads can be worse than provisioned, though. Run the math against your existing bill before switching.
There are three serverless project types: Search, Observability, and Security. Each has its own VCU pricing structure.
Cost Optimization Strategies
The high-leverage moves:
- Right-size before you scale up. Most clusters are over-provisioned by 30–50%. The Elastic Cloud console's resource utilization graphs make this obvious; the hard part is scheduling the maintenance window to apply the change.
- Move cold data to a frozen or cold tier. Searchable Snapshots (available from Gold up) cuts long-tail storage 5–10x. On Standard, hot-warm with index lifecycle management is the next best thing.
- Implement Index Lifecycle Management (ILM). Auto-rollover, then auto-delete or auto-cold. The most common ILM mistake is leaving indices in the hot tier far longer than the data is queried.
- Reduce replicas on archive indices. Hot indices need
replicas: 1(or 2). Cold and archive indices often don't;replicas: 0plus a snapshot is enough. - Tune
_sourceand disabled fields. Compression matters at scale.index.codec: best_compressiontypically shaves 15–25% off shard size at minor query-time CPU cost. - Drop Stack Monitoring data faster. Cluster telemetry has a short useful lifespan. Default retention is usually longer than you need.
- Question Platinum and Enterprise. A common pattern is paying for Platinum to get support, not features. If the real need is a human you can call when something breaks, dedicated support is a separate decision from feature access.
Self-Managed vs. Elastic Cloud: When to Switch
Self-managed Elasticsearch is cheaper on raw infrastructure but more expensive once you account for engineering time on patching, scaling, snapshot management, and incident response. The break-even point shifts based on team size and how much SRE attention the cluster needs.
Factors that tend to make self-managed cheaper:
- You're already running large EC2 or EKS infrastructure and adding a cluster is a marginal cost.
- You have one or more engineers fluent in Elasticsearch operations.
- Your data volume is large enough that managed pricing's per-GB markup outweighs operations costs.
Factors that tend to make Elastic Cloud cheaper:
- Smaller clusters where ops time would dwarf the cost of the managed service.
- Teams without Elasticsearch operational expertise.
- Workloads needing advanced features (cross-cluster replication, searchable snapshots) that take significant engineering to build self-hosted.
A More Cost-Effective Alternative: Pulse
Many organizations end up paying for Platinum or Enterprise primarily to get support response times and someone to call at 3 a.m., not to use the differentiated features. If that sounds familiar, Pulse is worth a look.
Pulse provides:
- 24/7 proactive Elasticsearch and OpenSearch monitoring with AI-driven root-cause analysis. It catches shard imbalance, JVM pressure, slow queries, and cluster health issues before they page anyone.
- Unlimited expert consulting. Elasticsearch and OpenSearch experts on call as part of the subscription, not metered.
- Right-sizing guidance. Pulse routinely cuts Elastic Cloud bills 30–50% by surfacing over-provisioned nodes, redundant replicas, and ILM gaps.
- Works with self-managed clusters, Elastic Cloud, and AWS OpenSearch Service. Pulse layers on top of any deployment.
For teams whose Platinum or Enterprise subscription is mostly a support contract, Pulse delivers that support along with AI-powered ops at a fraction of the cost. Start a free trial and see what your cluster looks like through Pulse.
Frequently Asked Questions
Q: How much does Elastic Cloud actually cost per month?
A: Real-world bills span a wide range. The smallest possible deployment is in the low tens of dollars per month; useful dev clusters start in the low hundreds. Modest production deployments typically land between $1,500 and $8,000/month. Mid-sized organizations on Platinum or Enterprise commonly see $10,000 to $50,000+/month, and large logging and observability deployments routinely break six figures.
Q: Is there a free trial?
A: Yes. Elastic Cloud has a 14-day free trial that includes most features. It's enough time to size a deployment and get a real cost estimate before committing.
Q: What's the difference between Standard, Gold, Platinum, and Enterprise?
A: Standard is core Elastic Stack with basic security and alerting. Gold adds 24/7 support with one-hour P1 response, Searchable Snapshots / frozen tier, and role-based access. Platinum adds advanced machine learning, cross-cluster replication, advanced security (SAML, SSO, field- and document-level security), and a 99.95% SLA. Enterprise adds full Elastic solutions (Search, Observability, Security) and dedicated support.
Q: Is Gold still available on Elastic Cloud?
A: Yes. Gold was discontinued for self-managed deployments, but it's still offered on Elastic Cloud Hosted. If you've seen the "Gold gone" claim, it referred to the self-managed change.
Q: Can I switch from pay-as-you-go to annual?
A: Yes, and it's typically discounted. Moving the other direction (annual to PAYG before the term ends) usually incurs an early-termination fee. Check your contract.
Q: Are there hidden costs in Elastic Cloud pricing?
A: Not hidden, but easy to miss: outbound data transfer, snapshot storage, Stack Monitoring as a separate deployment, ML node premiums, and cross-region or cross-cluster traffic. Review your monthly invoice line items at least quarterly.
Q: How does Elastic Cloud Serverless pricing work?
A: Serverless bills per VCU (virtual compute unit) consumed by indexing and search, plus storage. No infrastructure provisioning. Good for variable or low-utilization workloads. It can be more expensive than provisioned for steady high-throughput workloads, so run the math.
Q: How does Elastic Cloud compare to AWS OpenSearch Service?
A: AWS OpenSearch Service is generally cheaper at the infrastructure layer but lacks Elastic Stack features (Lens, ML, Elastic Observability, Elastic Security). After the fork from Elasticsearch in 2021, features added in Elastic 8.x and 9.x aren't on OpenSearch. Most teams pick based on which feature set they need plus existing AWS commitment.
Q: How can I get a custom quote?
A: Elastic sales offers custom pricing for large or complex deployments, typically with a minimum 12-month commitment. For multi-million-dollar commitments, negotiated discounts are common.
Related Reading
- Elastic Subscriptions for Elasticsearch: what each tier unlocks, in detail
- ClickHouse Cloud Pricing Guide: the analogous breakdown for ClickHouse
- Elasticsearch Documentation: full Elasticsearch knowledge base