Hi folks, just wondering if you have any advice for creating a time series dataset that's based on issue_history table values. e.g., let's say i wanted to record the count of priority values of open issues over time (assuming priority field values do change over time). Let's suppose we want to record the priority of all open issues as of december 1st, jan 1, feb 1, march 1. Any suggestions on how to do this? I believe i need to use the 'started at' and 'ended at' fields, but im not sure how to iterate over each date (dec 1, jan 1, feb 1, march 1, etc.), other than a big copy/paste job
Hey @nclx, thanks for the question! In the past when I tinkered with creating a chart calculating the number of open issues each month, here is a high-level overview of how I approached it:
WITH dates AS (SELECT sequence(to_date({CALENDAR.START}), to_date({CALENDAR.END}), interval 1 months) AS months)
SELECT explode(months) from dates
case when "In progress start" <= "months" and "months" <= "Completed date" then 1 when "In progress start" is null and "months" <= "Completed date" then 1 end
You'd need to do a few extra steps to also have the priority change counts included too, but you'll likely need multiple queries to fully capture the historical number of issues open in a given month. Let us know if you run into issues or if you have other questions!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.