Can multiple aggregates be added? (or something similar)

Hello,

Is it possible to add multiple aggregates? We would need this (or something similar) for the following case:

  • we use the Epic type in JIRA to reflect the Feature from the SAFe essentials schema, at program level. This is because we need its ‘issues in epic section’ so badly. Therefore, in each sprint, several Features (epic issue type in JIRA) are delivered.

What we would like to show is something similar:

sprint epic story structure

Do you have any suggestions how to obtain this in a more easily readable way?

Thank you!

Thanks to @janis.plume I consider this question solved.

The solution that fits my needs is to add a new hierarchy using the following in advanced settings:

[[jira.issue_hierarchies]]
name = “Sprints”
all_member_name = “All Issues by Sprints”
levels = [
{name=“Sprint”,key_column=“customfield_NNNNN”},
{name=“Epic”,key_column=“epic_key”},
{name=“Parent”,key_column=“epic_parent_key”},
{name=“Sub-task”,key_column=“subtask_key”}
]

The new hierarchy will be available for the ‘Issue’ dimension.

1 Like