Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Define what are the closed statuses

Info

This is where you customise thew metric to fit your project needs

Code Block
breakoutModefull-width
languagesql
closed_statuses as (
	select a
	from (
		values ('Closed'), ('Verified')
	) s(a)
),

...

Get the Sprint you want to count the Burndown Chart for

Info

This is where you customise thew metric to fit your project needs

Code Block
breakoutModefull-width
languagesql
last_sprint as ( -- get the last started sprint
  select * from Sprint where start_date is not null and state = 'ACTIVE' order by start_date desc limit 1),

...