> ## 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 Runner Logs Overview

> List workspaces with a summary of their runner session logs.



## OpenAPI

````yaml /openapi.json get /api/admin/logs/runners
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:
    get:
      tags:
        - admin
      summary: Get Runner Logs Overview
      description: List workspaces with a summary of their runner session logs.
      operationId: get_runner_logs_overview_api_admin_logs_runners_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunnerLogsOverviewResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    RunnerLogsOverviewResponse:
      properties:
        workspaces:
          items:
            $ref: '#/components/schemas/RunnerLogsOverviewEntry'
          type: array
          title: Workspaces
      type: object
      required:
        - workspaces
      title: RunnerLogsOverviewResponse
    RunnerLogsOverviewEntry:
      properties:
        workspace_id:
          type: string
          title: Workspace Id
        workspace_name:
          type: string
          title: Workspace Name
        total_sessions:
          type: integer
          title: Total Sessions
        running_sessions:
          type: integer
          title: Running Sessions
        latest_session_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Latest Session At
      type: object
      required:
        - workspace_id
        - workspace_name
        - total_sessions
        - running_sessions
      title: RunnerLogsOverviewEntry
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````