Get Session
Get a session by id. This endpoint returns a conditional response
- When the query string
extensionis present it will return a payload containing a link to download the session
{
"download_url": "http://127.0.0.1:8009/api/sessions/<id>/download?token=<token>&extension=csv&newline=1&event-time=0&events=o,e",
"expire_at": "2024-07-25T15:56:35.317601Z",
}
- Fetching the endpoint without any query string returns the payload documented for this endpoint
- The attribute
event_streamwill be rendered differently if the request contains the query stringevent_streamwith the valuesutf8orbase64.
{
(...)
"event_stream": ["hello world"]
(...)
}
The attribute metrics contains the following structure:
{
"data_masking": {
"err_count": 0,
"info_types": {
"EMAIL_ADDRESS": 1
},
"total_redact_count": 1,
"transformed_bytes": 31
},
"event_size": 356
}
Path Parameters
The id of the resource
Query Parameters
Construct the file content adding the event time as prefix when parsing each event
0, 1 Parse available options for the event stream
utf8- parse the session output (o) and error (e) events as utf-8 content in the session payloadbase64- parse the session output (o) and error (e) events as base64 content in the session payloadraw-queries- encode each event stream parsing the input of queries based on the database wire protocol (available databases: postgres)
utf8, base64, raw-queries Choose the type of events to include
i- Input (stdin)o- Output (stdout)e- Error (stderr)
Expand the given attributes
event_stream, session_input The file extension to donwload the session as a file content.
csv- it will parse the content to format in csv formatjson- it will parse the content as a json stream.<any-format>- No special parsing is applied
Construct the file content adding a break line when parsing each event
0, 1 Response
OK
The AI analysis of the session if it's available
The connection name of this resource (it will be deprecated in favor of RoleName)
"pgdemo"
The subtype of the connection
"postgres"
The tags of the connection resource
{ "team": "banking;environment:prod" }External workflow/task identifier that groups sessions belonging to the same logical run
"task-12345"
When the execution ended. A null value indicates the session is still running
"2024-07-25T15:56:35.361101Z"
The stored resource size in bytes.
When any parsing is applied to the request the value display the computed parsed size.
The pre-computed size will be available in the attribute metrics.event_size
569
The stream containing the output of the execution in the following format
[[0.268589438, "i", "ZW52"], ...]
<event-time>- relative time in miliseconds to start_date<event-type>- the event type as string (i: input, o: output e: output-error)<base64-content>- the content of the session encoded as base64 string
The Linux exit code if it's available
GuardRailsInfo contains information about guardrail rules that matched during the session. A non-empty list indicates the session was blocked by at least one guardrail rule.
The resource unique identifier
"1CBC8DB5-FBF8-4293-8E35-59A6EEA40207"
The type of identity that created this session
- user - a human user
- machine - a machine identity (non-human identity)
user, machine "user"
Metadata attributes related to integrations with third party services
DEPRECATED in flavor of metrics and metadata
The machine identity ID if this session was created by a machine identity
"BF997324-5A27-4778-806A-41EE83598494"
Refactor to use a struct
The organization unique identifier
"0CD7F941-2BB8-4F9F-93B0-11620D4652AB"
The resource name associated with this connection
"my-resource"
Review of this session. In case the review doesn't exist this field will be null
The role name (same as connection name)
"pgdemo"
The input of the session. This value is only set for the verb exec
{ "data": "SELECT NOW()" }The input size of the session in bytes
12
Batch identifier to group sessions that were executed simultaneously
"batch-abc-123"
When the execution started
"2024-07-25T15:56:35.317601Z"
Status of the resource
- ready - the resource is ready to be executed, after being approved by a user
- open - the session started and it's running
- done - the session has finished
open, ready, done The connection type of this resource
"database"
The user email of the resource
The user subject identifier of the resource
"nJ1xV3ASWGTi7L8Y6zvnKqxNlnZM2TxV1bRdc0706vZ"
The user display name of this resource
"John Wick"
Verb is how the client has interacted with this resource
- exec - Is an ad-hoc shell execution
- connect - Interactive execution, protocol port forwarding or interactive shell session
connect, exec