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
0
votes
0 answers

why $filter didn't work in consumption usage details Rest API?

Why consumption rest api parameter $filter didn't work? When I use this parameter expression $filter = properties/reservationId eq 'xxxx' but return result didn't contain reservationId ='xxxx'. here is my get request…
0
votes
1 answer

Powershell Invoke-AzCostManagementQuery for 'custom' timframes

I am attempting to query Azure Cost Management to query usage for two different dates each for two different resource groups. The value I am trying to query are: The current month total usage The previous month total usage (relative to the current…
Ken
  • 53
  • 6
0
votes
0 answers

HERE API : How can i download my daily billing usage data with cost value?

I want to follow my billing usage data every month but i need daily values. The easiest way would be to receive a monthly csv file with all details, or to have a way to retrieve it by script automatically. Can you please explain how to proceed…
0
votes
0 answers

It is possible to get a unique user that clicked an ad on my website and his cost per click?

I use Google Analytics 4 and Google AdSense to keep track of users and revenue received. I placed ads on my website. And I want to identify a user who clicked on ad and define cost per click (CPC) I got from him. It is possible to get a unique user…
0
votes
0 answers

Does AWS charge for EMR while cluster is in starting or bootstrapping state?

I'm thinking about the scenario where you'd have multiple batch jobs running multiple times per day when you often create or destroy EMR clusters. Would you be charged for times when an EMR cluster is just starting or bootstrapping, and when you…
Andrii Black
  • 185
  • 2
  • 14
0
votes
1 answer

Strange result querying Azure Sentinel Costs

I am deploying a cost analysis tool for some Azure Sentinel Pay as you Go products, but the query I found doesn´t seem to reflect reality. I found some queries on Microsoft page here And ended with this KQL query: let t1 = Usage | where StartTime >=…
0
votes
0 answers

AWS Customised Billing API

I am trying to get unified view of all my billing statistics for my AWS OUs in a simple way that's easy for analysis. Does AWS provide any API or service, through which this can be achieved?
huju vert
  • 13
  • 4
0
votes
1 answer

Azure Cost Management Export : Is it possible to change the time at which an export is made

I use the export function to retrieve the cost data of one of my subscriptions. However, I would like to change the time at which the export of the data is done. Is this possible? Thanks In Advance, Charline Read the documentation but there is no…
Charline
  • 11
  • 1
0
votes
2 answers

How to make an azure cost management export run daily and only export that day or previous days data? Using terraform or azure api

Taking the Terraform resource example: resource "azurerm_billing_account_cost_management_export" "example" { name = "example" billing_account_id = "example" recurrence_type = "Daily" …
N1ckson
  • 11
  • 2
0
votes
0 answers

GCP - Google Backup and DR - pricing model

we try to implement a backup solution with Google BackUp and DR, this service deploy in our vpc an appliance instance(n2-standard-16) with 4TB ok disk, i' don't have found any information about the price of this instance in GCP backup and DR pricing…
0
votes
2 answers

Can't retrieve forecast cost using Azure Cost Management API for Month range (start date to last date) if the request happen in 1st date of month

I'm using Azure Forecast Cost Management API to try to retrieve the forecast cost shown in the azure portal like below. This is the API I'm using -> https://learn.microsoft.com/en-us/rest/api/cost-management/forecast/usage?tabs=HTTP This is my…
Ricegun
  • 1
  • 1
0
votes
0 answers

How to Get P30D Revenue from Users in a Different Table

I'm doing some work around what we're spending on support vs. how much those users bring in and came into this unique problem. Tables I have: Revenue table: A row for each time a user generates revenue on the platform Support Contacts Table: A row…
0
votes
0 answers

What is the best alternative of ParkMyCloud to rightsize and schedule when your resources run and stop for GCP?

Context: We are working on GCP and using ParkMyCloud(PMC) to schedule the resources run and stop. The developers from different teams in the company have access to the run/stop operations on the PMC application. This is to reduce the costs on…
0
votes
1 answer

Can a query in Bigquery be optimized to be faster to show up results but more expensive in computation as well?

Can a query in Bigquery be optimized to be faster to show up results but more expensive in computation as well? Often size and computation are correlated, just trying to think an edge case where those are decoupled.
DonCharlie
  • 53
  • 7
0
votes
0 answers

How can I simulate autoscaling backends with logs pulled into a DataFrame?

I'm attempting to use request logs to simulate costs and resources used by auto-scaling a dynamic number of backend service pools. My use case is specific to Google Cloud Run, but there are similar models in use by systems like Kubernetes. In a…