Questions tagged [cost-management]

Use this tag for questions related to budgeting, cost analysis, cost management or cost calculation in any of various programming-related contexts, especially resource management and on-demand cloud computing.

Overview

  • Use this tag for questions related to budgeting, cost analysis, cost management or cost calculation in any of various programming-related contexts, especially resource management and on-demand cloud computing.

See also

211 questions
1
vote
2 answers

Not Getting total cost in AWS boto3 costExplorer get_cost_and_usage() function

I'm calling boto3 get_cost_and_usage function with below request to fetch daily cost grouped by services and "Name" tag: result = client.get_cost_and_usage( TimePeriod = { 'Start': '2020-10-31', 'End': '2020-11-02' }, …
1
vote
0 answers

getting a bill of use 2-Protocol Hours bill. Does anyone know about these charges in AWS?

Instantly after transferring data of 1 TB, I am getting a bill of use 2-Protocol Hours bill. Does anyone know about these charges in AWS?
Ashish Singhal
  • 405
  • 5
  • 21
1
vote
2 answers

Time complexity of deleting items from array and lists

I downloaded the algorithms app on iOS and I was checking what was written for arrays because I am still relatively new to programming and computer science. It says there Another feature of arrays is that adding or deleting data in a specific…
ZeevKeane
  • 75
  • 1
  • 8
1
vote
1 answer

Azure Cost Management data in R

I would be interested in getting the Azure Cost Management data (especially the Amortized Cost). At first glance, the AzureR package set seems a good starting point. Would it be possible to somehow use AzureAuth to authorize me and then to try to…
Piotr K
  • 943
  • 9
  • 20
1
vote
1 answer

S3 Standard to Glacier - Lifecycle Transition Cost

I wanted to confirm my understanding of the cost for lifecycle policy based transition of files from Standard to Glacier is correct as mentioned with below example. Per 1000 files of transfer, we get charged a $0.06 (ap-south-1 region) to transfer…
Hemanth S. Vaddi
  • 413
  • 2
  • 5
  • 23
1
vote
1 answer

Automation of the removing azure devops billing

I would like to remove the billing of an azure devops organization after it passes a certain threshold so that they don't get overcharged. So i have two questions about it. Firstly, is it possible budget scoping on a specific Azure Devops…
MoonHorse
  • 1,966
  • 2
  • 24
  • 46
1
vote
2 answers

Alert for Azure Virtual Machine running for X hours?

I use an Azure VM for personal purposes and use it mostly like I would use a laptop for checking email etc. However, I have several times forgot to stop the VM when I am done using it and thus have had it run idle for days, if not weeks, resulting…
1
vote
1 answer

Azure REST Service Cost

Is there any cost associated in sending API calls to the service endpoints mentioned at the following URL: https://learn.microsoft.com/en-us/rest/api/azure/ provided by Azure using Postman?
1
vote
1 answer

Power BI desktop cannot import data with Azure Cost Management Connector

I recently started using the Azure Cost Management connector for Power BI. The idea is to get Azure consumption data to PBI and generate some reports. However, I'm getting the following error when trying to load the data: The user does not have any…
Sahan Serasinghe
  • 1,591
  • 20
  • 33
1
vote
1 answer

Billing Charges when Querying a DataStudio Report Connected to a View in BiqQuery

I have created a report in DataStudio using data pulled from BigQuery and saved as a view. After playing around with the report for a while I have noticed that I have been billed 100+ times for the query (all the exact same size of data), but I only…
lewisnix21
  • 111
  • 2
  • 7
1
vote
1 answer

Hot to auto-start an Azure Virtual Machine on public IP access?

On Azure, it seems possible to Auto-stop your VM based on CPU utilization For this to be effectively used for cost-saving, I need the VM to be auto-started on the next access to its public IP address. This is a server which gets only a few hours of…
gatopeich
  • 3,287
  • 31
  • 26
1
vote
0 answers

AWS Cost Dashboard on ELK

Problem Statement: I want to fetch cost metrics, filtered by linked account and grouped by service, for my AWS account using boto3. Then, I want to post this data to Elasticsearch (ES) and visualize that data on Kibana in a pie chart which shows…
1
vote
1 answer

What does setting the automatic_scaling max_idle_instances to zero (0) do?

What does setting the automatic_scaling max_idle_instances to zero (0) do? automatic_scaling: max_idle_instances: 0 min_idle_instances: 0 Does it cause an active instance to shutdown immediately once it has finished processing it's current…
Leigh McCulloch
  • 1,886
  • 24
  • 23
1
vote
3 answers

what is my increment percentage from 0 to 20?

Suppose, I have a pen, which initially cost 0 $, now it costs 20$. What is the increment percentage? Ideally, it will cause the divide by zero exception.
adirocks27
  • 51
  • 3
  • 10
1
vote
1 answer

How to limit BigQuery query size for testing a query sample through the web user-interface?

I would like to know if it is possible to limit the bigquery query size when running a query through the web user-interface? My idea is just to test the query but instead of querying all my tables; I would like just to query a part of it with for…