# cloud-costs **Repository Path**: mirrors_exoscale/cloud-costs ## Basic Information - **Project Name**: cloud-costs - **Description**: Web-based tool for finding the cheapest cloud server for a given set of requirements - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Server Cost Comparison --- This is the source code for Scalyr's [Cloud Cost Calculator](https://www.scalyr.com/cloud/) tool. You can read all about it in [this blog post](http://blog.scalyr.com/2013/11/11/cloud-cost-calculator/). Contributions are welcome! We're open to any sort of suggestions. Any graphic designers out there who feel like cleaning up the page design are welcome to give it a whack. **We're especially interested in getting data for additional service providers, including some non-cloud hosting services.** To contribute, just create a JavaScript file listing each offering from that provider. Your file should contain a series of function calls like this: serverChoices.push({ "provider": "Google", "region": "Europe", "location": "Europe West", "serverType": "n1-highcpu-4-d", "reservationType": "hourly", "term": "Hour", "termMonths": 0.0, "upfrontCost": 0.0, "hourlyCost": 0.369, "cores": 4.0, "ramMB": 3686.4, "diskMB": 1812480.0, "flashMB": 0.0, "networkMbps": 0.0 }); Look at files like linode.js for an example. Each call defines a single combination of server type, data center location, lease type, or any other parameters as appropriate to this service provider. The fields are interpreted as follows:
| Field | Meaning |
|---|---|
| provider | Name of the company offering this server. |
| region | What part of the world the server is in. Use "N. America", "S. America", "Europe", "Asia", "Africa", or "Australia". |
| location | The service provider's name for this location. |
| serverType | The service provider's name for this server configuration. |
| reservationType | The service provider's name for this lease term or reservation type. |
| term | Which category the lease / reservation falls into: Hour, Month, Year, or "3 Years". |
| termMonths | How many months the lease / reservation lasts for; 0 for on-demand / by-the-hour services. |
| upfrontCost | Any fixed, up-front cost for this offering, in dollars. |
| hourlyCost | Any per-hour cost for this offering, in dollars. |
| cores | Number of CPU cores (or equivalent). |
| ramMB | Memory size, in MiB. |
| diskMB | Disk size, in MiB. (SSD should not be included in this value; report 0 for SSD-only servers.) |
| flashMB | SSD storage size, in MiB. |
| networkMbps | Bundled/free network bandwidth, in Mbps (megabits per second). Note, this value is not currently used, but may be used in a future version of the tool. |