theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_software_installation

Obtain information about Installations of Software registered in the FreshService instance.

Examples

List all installations for a specific software

select
*
from
freshservice_software_installation
where
software_id = 465465131;

List software installations associated with a specific user (requester)

select
*
from
freshservice_software_installation fsi
inner join freshservice_software fs on fsi.software_id = fs.id
where
fsi.user_id = 27000123;

Schema for freshservice_software_installation

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneTimestamp when the installation was created.
department_idbigintID of the department the device belongs to.
idbigintID of the software installation.
installation_datetimestamp with time zoneTimestamp when the software was installed.
installation_machine_idbigintDisplay ID of the asset on which the software is installed.
installation_pathtextPath where the software is installed.
software_idbigint=ID of the software this installation belong to.
updated_attimestamp with time zoneTimestamp when the installation was last updated.
user_idbigintID of the user using the device.
versiontextVersion of the installed software.