theapsgroup/freshservice
steampipe plugin install theapsgroup/freshservice

Table: freshservice_problem_timeentry

Obtain time entries for a specific Problem in the FreshService instance.

You MUST specify a problem_id in the WHERE or JOIN clause.

Examples

List all time entries for a specific Problem

select
*
from
freshservice_problem_timeentry
where
problem_id = 2011111111;

Schema for freshservice_problem_timeentry

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
agent_idbigintUser ID of the agent to whom this time entry is assigned.
billablebooleanSet as true if the time entry is billable.
created_attimestamp with time zoneTimestamp when the time entry is created.
executed_attimestamp with time zoneTimestamp when the timer is executed.
idbigintID of the time entry.
notetextDescription of the time entry.
problem_idbigint=ID of the problem the time entry belongs to.
start_timetimestamp with time zoneTimestamp when the time entry is added. If a timer, which is in stopped state, is started again, this holds date_time at which the timer is started again.
task_idbigintID of the task associated with the time entry.
time_spenttextThe total amount of time spent by the timer in hh::mm format.
timer_runningbooleanSet to true if timer is currently running.
updated_attimestamp with time zoneTimestamp when the time entry was last updated.