steampipe plugin install jira

Table: jira_epic - Query Jira Epics using SQL

Jira is a project management tool developed by Atlassian. It provides a platform for planning, tracking, and managing agile software development projects. An Epic in Jira is a large user story that can be broken down into several smaller stories.

Table Usage Guide

The jira_epic table provides insights into Epics within Jira. As a project manager or a team lead, explore Epic-specific details through this table, including progress, status, and associated tasks. Utilize it to uncover information about Epics, such as those that are overdue, the relationship between tasks and Epics, and the overall progress of a project.

Examples

Basic info

Explore the status and summary of various tasks within a project management tool to understand their progression and key details. This can help in monitoring progress and identifying any bottlenecks or issues that need to be addressed.

select
id,
name,
key,
done as status,
summary
from
jira_epic;
select
id,
name,
key,
done as status,
summary
from
jira_epic;

List issues in epic

Explore which tasks are associated with which project milestones by identifying instances where issue status, creation date, and assignee are linked with a specific project epic. This can help in assessing the distribution and management of tasks across different project stages.

select
i.id as issue_id,
i.status as issue_status,
i.created as issue_created,
i.creator_display_name,
i.assignee_display_name,
e.id as epic_id,
e.name as epic_name,
i.summary as issue_summary
from
jira_epic as e,
jira_issue as i
where
i.epic_key = e.key;
select
i.id as issue_id,
i.status as issue_status,
i.created as issue_created,
i.creator_display_name,
i.assignee_display_name,
e.id as epic_id,
e.name as epic_name,
i.summary as issue_summary
from
jira_epic as e,
jira_issue as i
where
i.epic_key = e.key;

Schema for jira_epic

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
colorjsonbLabel colour details for the epic.
donebooleanIndicates the status of the epic.
idbigint=The id of the epic.
keytext=The key of the epic.
nametextThe name of the epic.
selftextThe URL of the epic details.
summarytextDescription of the epic.
titletextTitle of the resource.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- jira

You can pass the configuration to the command with the --config argument:

steampipe_export_jira --config '<your_config>' jira_epic