|
| 1 | +DROP TABLE IF EXISTS __cust_openshift_cost_report; |
| 2 | + |
| 3 | +-- create temp table for results |
| 4 | +CREATE TEMPORARY TABLE IF NOT EXISTS __cust_openshift_cost_report ( |
| 5 | + id serial, |
| 6 | + total_infrastructure_raw_cost numeric(33, 2), |
| 7 | + total_cost_model_costs numeric(33, 2), |
| 8 | + infra_total_cost_model numeric(33, 2), |
| 9 | + infra_cost_model_cpu_cost numeric(33, 2), |
| 10 | + infra_cost_model_memory_cost numeric(33, 2), |
| 11 | + infra_cost_model_volume_cost numeric(33, 2), |
| 12 | + sup_total_cost_model numeric(33, 2), |
| 13 | + sup_cost_model_cpu_cost numeric(33, 2), |
| 14 | + sup_cost_model_memory_cost numeric(33, 2), |
| 15 | + sup_cost_model_volume_cost numeric(33, 2) |
| 16 | +); |
| 17 | + |
| 18 | +-- loop construct |
| 19 | +DO $BODY$ |
| 20 | +DECLARE |
| 21 | + schema_rec record; |
| 22 | + stmt_tmpl text = ' |
| 23 | +INSERT INTO __cust_openshift_cost_report ( |
| 24 | + total_infrastructure_raw_cost, |
| 25 | + total_cost_model_costs, |
| 26 | + infra_total_cost_model, |
| 27 | + infra_cost_model_cpu_cost, |
| 28 | + infra_cost_model_memory_cost, |
| 29 | + infra_cost_model_volume_cost, |
| 30 | + sup_total_cost_model, |
| 31 | + sup_cost_model_cpu_cost, |
| 32 | + sup_cost_model_memory_cost, |
| 33 | + sup_cost_model_volume_cost |
| 34 | +) |
| 35 | +WITH infra_raw_currencies AS ( |
| 36 | + SELECT |
| 37 | + ''%%1$s'' AS "customer", |
| 38 | + SUM(infrastructure_raw_cost) AS "infrastructure_raw_cost", |
| 39 | + raw_currency AS "currency" |
| 40 | + FROM |
| 41 | + %%1$s.reporting_ocp_cost_summary_p |
| 42 | + WHERE |
| 43 | + usage_start >= ''%%2$s''::date |
| 44 | + AND usage_start < ''%%3$s''::date |
| 45 | + GROUP BY raw_currency |
| 46 | +), |
| 47 | +infra_raw AS ( |
| 48 | + SELECT |
| 49 | + ''%%1$s'' AS "customer", |
| 50 | + SUM(infrastructure_raw_cost * pae.exchange_rate) AS "infrastructure_raw_cost" |
| 51 | + FROM infra_raw_currencies irc |
| 52 | + JOIN public.api_exchangerates pae ON LOWER(pae.currency_type)=LOWER(irc.currency) |
| 53 | +), |
| 54 | +infra_costs_grouped_by_source AS ( |
| 55 | + SELECT |
| 56 | + ''%%1$s'' AS "customer", |
| 57 | + SUM(cost_model_cpu_cost) AS "cost_model_cpu_cost", |
| 58 | + SUM(cost_model_memory_cost) AS "cost_model_memory_cost", |
| 59 | + SUM(cost_model_volume_cost) AS "cost_model_volume_cost", |
| 60 | + SUM(cost_model_cpu_cost+cost_model_memory_cost+cost_model_volume_cost) AS "cost_model_total", |
| 61 | + source_uuid AS "provider_uuid", |
| 62 | + currency AS "currency" |
| 63 | + FROM |
| 64 | + %%1$s.reporting_ocp_cost_summary_p |
| 65 | + JOIN %%1$s.cost_model_map cmm ON cmm.provider_uuid = source_uuid |
| 66 | + JOIN %%1$s.cost_model cm ON cm.uuid = cmm.cost_model_id |
| 67 | + WHERE |
| 68 | + usage_start >= ''%%2$s''::date |
| 69 | + AND usage_start < ''%%3$s''::date |
| 70 | + AND cost_model_rate_type=''Infrastructure'' |
| 71 | + GROUP BY source_uuid, currency |
| 72 | +), |
| 73 | +infra_costs AS ( |
| 74 | + SELECT |
| 75 | + ''%%1$s'' AS "customer", |
| 76 | + SUM(cost_model_cpu_cost * pae.exchange_rate) AS "infra_cost_model_cpu_cost", |
| 77 | + SUM(cost_model_memory_cost * pae.exchange_rate) AS "infra_cost_model_memory_cost", |
| 78 | + SUM(cost_model_volume_cost * pae.exchange_rate) AS "infra_cost_model_volume_cost", |
| 79 | + SUM(cost_model_total * pae.exchange_rate) AS "infra_total_cost_model" |
| 80 | + FROM infra_costs_grouped_by_source icgbs |
| 81 | + JOIN public.api_exchangerates pae ON LOWER(pae.currency_type)=LOWER(icgbs.currency) |
| 82 | +), |
| 83 | +sup_costs_grouped_by_source AS ( |
| 84 | + SELECT |
| 85 | + ''%%1$s'' AS "customer", |
| 86 | + SUM(cost_model_cpu_cost) AS "cost_model_cpu_cost", |
| 87 | + SUM(cost_model_memory_cost) AS "cost_model_memory_cost", |
| 88 | + SUM(cost_model_volume_cost) AS "cost_model_volume_cost", |
| 89 | + SUM(cost_model_cpu_cost+cost_model_memory_cost+cost_model_volume_cost) AS "cost_model_total", |
| 90 | + source_uuid AS "provider_uuid", |
| 91 | + currency AS "currency" |
| 92 | + FROM |
| 93 | + %%1$s.reporting_ocp_cost_summary_p |
| 94 | + JOIN %%1$s.cost_model_map cmm ON cmm.provider_uuid = source_uuid |
| 95 | + JOIN %%1$s.cost_model cm ON cm.uuid = cmm.cost_model_id |
| 96 | + WHERE |
| 97 | + usage_start >= ''%%2$s''::date |
| 98 | + AND usage_start < ''%%3$s''::date |
| 99 | + AND cost_model_rate_type=''Supplementary'' |
| 100 | + GROUP BY source_uuid, currency |
| 101 | +), |
| 102 | +sup_costs AS ( |
| 103 | + SELECT |
| 104 | + ''%%1$s'' AS "customer", |
| 105 | + SUM(cost_model_cpu_cost * pae.exchange_rate) AS "sup_cost_model_cpu_cost", |
| 106 | + SUM(cost_model_memory_cost * pae.exchange_rate) AS "sup_cost_model_memory_cost", |
| 107 | + SUM(cost_model_volume_cost * pae.exchange_rate) AS "sup_cost_model_volume_cost", |
| 108 | + SUM(cost_model_total * pae.exchange_rate) AS "sup_total_cost_model" |
| 109 | + FROM sup_costs_grouped_by_source scgbs |
| 110 | + JOIN public.api_exchangerates pae ON LOWER(pae.currency_type)=LOWER(scgbs.currency) |
| 111 | +) |
| 112 | +SELECT |
| 113 | + -- ir.customer AS "customer", -- customer is used for grouping, but left off report for anonymity |
| 114 | + COALESCE(ir.infrastructure_raw_cost, 0) AS "total_infrastructure_raw_cost", |
| 115 | + ic.infra_total_cost_model+sc.sup_total_cost_model AS "total_cost_model_costs", |
| 116 | + ic.infra_total_cost_model AS "infra_total_cost_model", |
| 117 | + ic.infra_cost_model_cpu_cost AS "infra_cost_model_cpu_cost", |
| 118 | + ic.infra_cost_model_memory_cost AS "infra_cost_model_memory_cost", |
| 119 | + ic.infra_cost_model_volume_cost AS "infra_cost_model_volume_cost", |
| 120 | + sc.sup_total_cost_model AS "sup_total_cost_model", |
| 121 | + sc.sup_cost_model_cpu_cost AS "sup_cost_model_cpu_cost", |
| 122 | + sc.sup_cost_model_memory_cost AS "sup_cost_model_memory_cost", |
| 123 | + sc.sup_cost_model_volume_cost AS "sup_cost_model_volume_cost" |
| 124 | +FROM |
| 125 | + infra_raw ir |
| 126 | + JOIN infra_costs ic ON ir.customer = ic.customer |
| 127 | + JOIN sup_costs sc ON ir.customer = sc.customer |
| 128 | +'; |
| 129 | +BEGIN |
| 130 | + FOR schema_rec IN SELECT DISTINCT |
| 131 | + t.schema_name |
| 132 | + FROM |
| 133 | + public.api_tenant t |
| 134 | + JOIN pg_namespace n ON n.nspname = t.schema_name |
| 135 | + JOIN public.api_customer c ON c.schema_name = t.schema_name |
| 136 | + WHERE |
| 137 | + t.schema_name ~ '^acct' |
| 138 | + OR t.schema_name ~ '^org' |
| 139 | + ORDER BY |
| 140 | + t.schema_name |
| 141 | + LOOP |
| 142 | + EXECUTE format(stmt_tmpl, schema_rec.schema_name, %(start_time)s, %(end_time)s); |
| 143 | + END LOOP; |
| 144 | +END $BODY$ LANGUAGE plpgsql; |
0 commit comments