cURL
curl --request POST \ --url https://api.galileo.ai/v2/projects/{project_id}/log_streams/search \ --header 'Content-Type: application/json' \ --header 'Galileo-API-Key: <api-key>' \ --data ' { "starting_token": 0, "limit": 100, "filters": [ { "value": "<string>", "name": "id", "operator": "eq" } ], "sort": { "name": "created_at", "ascending": false, "sort_type": "column" }, "include_counts": false } '
{ "log_streams": [ { "id": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "name": "<string>", "project_id": "<string>", "created_by": "<string>", "created_by_user": { "id": "<string>", "email": "<string>", "first_name": "<string>", "last_name": "<string>" }, "num_spans": 123, "num_traces": 123, "has_user_created_sessions": false } ], "starting_token": 0, "limit": 100, "paginated": false, "next_starting_token": 123 }
Search log streams for a project.
Show child attributes
"id"
eq
ne
one_of
not_in
contains
"name"
"column"
Successful Response
A user's basic information, used for display purposes.
Was this page helpful?