theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_release

Obtain information about Releases within the FreshService instance.

Examples

List all releases

select
*
from
freshservice_release;

List high priority yet not completed releases

select
r.id,
r.subject,
a.email as assignee,
r.priority_desc,
r.status_desc,
r.planned_start_date,
r.planned_end_date
from
freshservice_release r
left join freshservice_agent a on r.agent_id = a.id
where
r.status < 5
and r.priority >= 3;

Schema for freshservice_release

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
agent_idbigintUser ID of the agent to whom the release is assigned.
associated_assetsjsonbArray of IDs of Assets associated with the release.
associated_changesjsonbArray of IDs of Changes associated with the release.
categorytextCategory of the release.
created_attimestamp with time zoneTimestamp at which the release was created.
department_idbigintID of the department initiating the release.
descriptiontextHTML content of the release.
group_idbigintID of the agent group to which the release has been assigned.
idbigint=ID of the release.
item_categorytextItem category of the release.
planned_end_datetimestamp with time zoneTimestamp at which release is planned to end.
planned_start_datetimestamp with time zoneTimestamp at which release is planned to start.
prioritybigintPriority of the release.
priority_desctextDescription of the release priority.
release_typebigintType of the release.
release_type_descbigintDescription of the release type.
statusbigintStatus of the release.
status_desctextDescription of the release status.
sub_categorytextSub-category of the release.
subjecttextSubject of the release.
updated_attimestamp with time zoneTimestamp at which the release was last updated.
work_end_datetimestamp with time zoneTimestamp at which release work ended.
work_start_datetimestamp with time zoneTimestamp at which release work started.