> ## Documentation Index
> Fetch the complete documentation index at: https://konduktor-docs.yakko.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Workspace Runner Logs

> List runner log files for a workspace with session metadata.



## OpenAPI

````yaml /openapi.json get /api/admin/logs/runners/{workspace_id}
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/admin/logs/runners/{workspace_id}:
    get:
      tags:
        - admin
      summary: Get Workspace Runner Logs
      description: List runner log files for a workspace with session metadata.
      operationId: get_workspace_runner_logs_api_admin_logs_runners__workspace_id__get
      parameters:
        - name: workspace_id
          in: path
          required: true
          schema:
            type: string
            title: Workspace Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            maximum: 100000
            default: 0
            title: Offset
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by session status
            title: Status
          description: Filter by session status
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceRunnerLogsResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceRunnerLogsResponse:
      properties:
        workspace_id:
          type: string
          title: Workspace Id
        workspace_name:
          type: string
          title: Workspace Name
        log_files:
          items:
            $ref: '#/components/schemas/RunnerLogFile'
          type: array
          title: Log Files
        total:
          type: integer
          title: Total
        has_more:
          type: boolean
          title: Has More
          default: false
      type: object
      required:
        - workspace_id
        - workspace_name
        - log_files
        - total
      title: WorkspaceRunnerLogsResponse
    RunnerLogFile:
      properties:
        session_id:
          type: string
          title: Session Id
        session_name:
          type: string
          title: Session Name
        task_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Task Id
        task_title:
          anyOf:
            - type: string
            - type: 'null'
          title: Task Title
        status:
          type: string
          title: Status
        size_bytes:
          type: integer
          title: Size Bytes
        line_count:
          type: integer
          title: Line Count
        started_at:
          type: string
          title: Started At
        finished_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Finished At
      type: object
      required:
        - session_id
        - session_name
        - status
        - size_bytes
        - line_count
        - started_at
      title: RunnerLogFile
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````