{"id":13518265,"url":"https://github.com/Gandi/cloud-costs","last_synced_at":"2025-03-31T09:31:22.845Z","repository":{"id":150846290,"uuid":"14554216","full_name":"Gandi/cloud-costs","owner":"Gandi","description":"Web-based tool for finding the cheapest cloud server for a given set of requirements","archived":false,"fork":true,"pushed_at":"2013-11-11T12:55:12.000Z","size":170,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":25,"default_branch":"master","last_synced_at":"2024-11-01T23:33:12.747Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"scalyr/cloud-costs","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Gandi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-20T10:59:17.000Z","updated_at":"2018-11-12T05:43:14.000Z","dependencies_parsed_at":"2023-04-04T18:15:51.267Z","dependency_job_id":null,"html_url":"https://github.com/Gandi/cloud-costs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gandi%2Fcloud-costs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gandi%2Fcloud-costs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gandi%2Fcloud-costs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gandi%2Fcloud-costs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Gandi","download_url":"https://codeload.github.com/Gandi/cloud-costs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246446892,"owners_count":20778891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T05:01:42.904Z","updated_at":"2025-03-31T09:31:22.569Z","avatar_url":"https://github.com/Gandi.png","language":"JavaScript","funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"Server Cost Comparison\n---\n\nThis is the source code for Scalyr's [Cloud Cost Calculator](https://www.scalyr.com/cloud/) tool.\nYou can read all about it in [this blog post](http://blog.scalyr.com/2013/11/11/cloud-cost-calculator/).\n\nContributions are welcome! We're open to any sort of suggestions. Any graphic designers out there who feel like cleaning\nup the page design are welcome to give it a whack.\n\n**We're especially interested in getting data for additional service providers, including some non-cloud\nhosting services.** To contribute, just create a JavaScript file listing each offering from that provider.\nYour file should contain a series of function calls like this:\n\n\t\tserverChoices.push({\n\t\t  \"provider\": \"Google\",\n\t\t  \"region\": \"Europe\",\n\t\t  \"location\": \"Europe West\",\n\t\t  \"serverType\": \"n1-highcpu-4-d\",\n\t\t  \"reservationType\": \"hourly\",\n\t\t  \"term\": \"Hour\",\n\t\t  \"termMonths\": 0.0,\n\t\t  \"upfrontCost\": 0.0,\n\t\t  \"hourlyCost\": 0.369,\n\t\t  \"cores\": 4.0,\n\t\t  \"ramMB\": 3686.4,\n\t\t  \"diskMB\": 1812480.0,\n\t\t  \"flashMB\": 0.0,\n\t\t  \"networkMbps\": 0.0\n\t\t});\n\nLook at files like linode.js for an example. Each call defines a single combination of server type,\ndata center location, lease type, or any other parameters as appropriate to this service provider.\nThe fields are interpreted as follows:\n\n\u003ctable\u003e\n  \u003ctr\u003e\u003cth\u003eField\u003c/th\u003e\u003cth\u003eMeaning\u003c/th\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003eprovider\u003c/td\u003e\u003ctd\u003eName of the company offering this server.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003eregion\u003c/td\u003e\u003ctd\u003eWhat part of the world the server is in. Use \"N. America\", \"S. America\",\n      \"Europe\", \"Asia\", \"Africa\", or \"Australia\".\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003elocation\u003c/td\u003e\u003ctd\u003eThe service provider's name for this location.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003eserverType\u003c/td\u003e\u003ctd\u003eThe service provider's name for this server configuration.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003ereservationType\u003c/td\u003e\u003ctd\u003eThe service provider's name for this lease term or reservation type.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003eterm\u003c/td\u003e\u003ctd\u003eWhich category the lease / reservation falls into: Hour, Month, Year, or \"3 Years\".\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003etermMonths\u003c/td\u003e\u003ctd\u003eHow many months the lease / reservation lasts for; 0 for on-demand / by-the-hour services.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003eupfrontCost\u003c/td\u003e\u003ctd\u003eAny fixed, up-front cost for this offering, in dollars.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003ehourlyCost\u003c/td\u003e\u003ctd\u003eAny per-hour cost for this offering, in dollars.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003ecores\u003c/td\u003e\u003ctd\u003eNumber of CPU cores (or equivalent).\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003eramMB\u003c/td\u003e\u003ctd\u003eMemory size, in MiB.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003ediskMB\u003c/td\u003e\u003ctd\u003eDisk size, in MiB. (SSD should not be included in this value; report 0 for SSD-only servers.)\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003eflashMB\u003c/td\u003e\u003ctd\u003eSSD storage size, in MiB.\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enetworkMbps\u003c/td\u003e\u003ctd\u003eBundled/free network bandwidth, in Mbps (megabits per second). Note, this value\n      is not currently used, but may be used in a future version of the tool.\u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n\nYou can send us a pull request, or just e-mail us the JavaScript file and we'll add it in.\n\nFor questions, suggestions, feedback, or anything else: contact@scalyr.com.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGandi%2Fcloud-costs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGandi%2Fcloud-costs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGandi%2Fcloud-costs/lists"}