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'

preguntada hace 2 años450 visualizaciones
2 Respuestas
1
Respuesta aceptada

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

respondido hace 2 años
0

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

AWS
INGENIERO DE SOPORTE
Shubh
respondido hace 2 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas