steampipe plugin install jira

Table: jira_backlog_issue - Query Jira Backlog Issues using SQL

Jira is a project management tool used for issue tracking, bug tracking, and agile project management. A Jira Backlog Issue refers to a task or a bug that has been identified but is not currently being worked on. These issues are stored in the backlog, a list of tasks or bugs that need to be addressed but have not yet been prioritized for action.

Table Usage Guide

The jira_backlog_issue table provides insights into the backlog issues within a Jira project. As a project manager or a software developer, you can use this table to explore details of each issue, including its status, priority, and assignee. This can help you prioritize tasks, manage project workflows, and ensure timely resolution of bugs and tasks.

Examples

Basic info

Explore which projects have been created, who initiated them, their current status, and a brief summary. This information can be useful to gain an overview of ongoing projects and their progress.

select
key,
project_key,
created,
creator_display_name,
status,
summary
from
jira_backlog_issue;
select
key,
project_key,
created,
creator_display_name,
status,
summary
from
jira_backlog_issue;

List backlog issues for a specific project

Explore the status and details of pending tasks within a specific project to manage workload and track progress effectively. This can help in prioritizing tasks and assigning them to the right team members.

select
id,
key,
project_key,
created,
creator_display_name,
assignee_display_name,
status,
summary
from
jira_backlog_issue
where
project_key = 'TEST1';
select
id,
key,
project_key,
created,
creator_display_name,
assignee_display_name,
status,
summary
from
jira_backlog_issue
where
project_key = 'TEST1';

List backlog issues assigned to a specific user

Explore which backlog issues are assigned to a specific user to manage and prioritize their workload efficiently. This is useful in tracking project progress and ensuring tasks are evenly distributed among team members.

select
id,
key,
summary,
project_key,
status,
assignee_display_name,
assignee_account_id
from
jira_backlog_issue
where
assignee_display_name = 'sayan';
select
id,
key,
summary,
project_key,
status,
assignee_display_name,
assignee_account_id
from
jira_backlog_issue
where
assignee_display_name = 'sayan';

List backlog issues due in 30 days

Explore which backlog issues are due within the next 30 days to better manage your project timeline and delegate tasks effectively. This can assist in prioritizing work and ensuring that deadlines are met.

select
id,
key,
summary,
project_key,
status,
assignee_display_name,
assignee_account_id,
due_date
from
jira_backlog_issue
where
due_date > current_date
and due_date <= (current_date + interval '30' day);
select
id,
key,
summary,
project_key,
status,
assignee_display_name,
assignee_account_id,
due_date
from
jira_backlog_issue
where
due_date > date('now')
and due_date <= date('now', '+30 day');

Schema for jira_backlog_issue

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
assignee_account_idtextAccount Id the user/application that the issue is assigned to work.
assignee_display_nametextDisplay name the user/application that the issue is assigned to work.
board_idbigintThe ID of the board the issue belongs to.
board_nametextThe name of the board the issue belongs to.
componentsjsonbList of components associated with the issue.
createdtimestamp with time zoneTime when the issue was created.
creator_account_idtextAccount Id of the user/application that created the issue.
creator_display_nametextDisplay name of the user/application that created the issue.
descriptiontextDescription of the issue.
due_datetimestamp with time zoneTime by which the issue is expected to be completed.
epic_keytextThe key of the epic to which issue belongs.
fieldsjsonbJson object containing important subfields of the issue.
idtextThe ID of the issue.
keytextThe key of the issue.
labelsjsonbA list of labels applied to the issue.
prioritytextPriority assigned to the issue.
project_idtextA friendly key that identifies the project.
project_keytextA friendly key that identifies the project.
project_nametextName of the project to that issue belongs.
reporter_account_idtextAccount Id of the user/application issue is reported.
reporter_display_nametextDisplay name of the user/application issue is reported.
selftextThe URL of the issue details.
statustextThe status of the issue. Eg: To Do, In Progress, Done.
summarytextDetails of the user/application that created the issue.
tagsjsonbA map of label names associated with this issue, in Steampipe standard format.
titletextTitle of the resource.
typetextThe name of the issue type.
updatedtimestamp with time zoneTime when the issue was last updated.

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_backlog_issue