Athena + CUR report in Grafana - How to calculate relative time (last month)?

0

Stack - Managed Grafana + Athena and CUR as data.

I'm currently calculating my billing cost using $__timeFilter(line item usage start date) in my query. I'd like to compute the exact cost between the same days in the previous month as well. For example $__timeFilter(line item usage start date) output:

select SUM(line_item_blended_cost + discount_total_discount) from yad2_billing_reports where line_item_usage_start_date BETWEEN TIMESTAMP '2022-08-01 14:56:16' AND TIMESTAMP '2022-08-08 14:56:16'

I would like to get :

select SUM(line_item_blended_cost + discount_total_discount) from yad2_billing_reports where line_item_usage_start_date BETWEEN TIMESTAMP '2022-07-01 14:56:16' AND TIMESTAMP '2022-08-08 14:56:16'

2 Antworten
1
Akzeptierte Antwort

I ended up using the query:

select SUM(line_item_blended_cost + discount_total_discount) as cost from $CUR_Table where line_item_usage_start_date > $__timeFrom() - interval '1' month and line_item_usage_start_date < $__timeTo() - interval '1' month

beantwortet vor 2 Jahren
0

Better to use $__timeFrom() and $__timeTo() as per your usecase

AWS
SUPPORT-TECHNIKER
Shubh
beantwortet vor 2 Jahren

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen