Sysdig · Capability

Sysdig Secure API — Activity Audit

Sysdig Secure API — Activity Audit. 2 operations. Lead operation: List Activity Audit. Self-contained Naftiko capability covering one Sysdig business surface.

Run with Naftiko SysdigActivity Audit

What You Can Do

GET
Listactivityaudit — List Activity Audit
/v1/api/v1/activityaudit
GET
Listsecureevents — List Secure Events
/v1/api/v1/secureevents

MCP Tools

list-activity-audit

List Activity Audit

read-only idempotent
list-secure-events

List Secure Events

read-only idempotent

Capability Spec

secure-activity-audit.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sysdig Secure API — Activity Audit
  description: 'Sysdig Secure API — Activity Audit. 2 operations. Lead operation: List Activity Audit. Self-contained Naftiko
    capability covering one Sysdig business surface.'
  tags:
  - Sysdig
  - Activity Audit
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SYSDIG_API_KEY: SYSDIG_API_KEY
capability:
  consumes:
  - type: http
    namespace: secure-activity-audit
    baseUri: https://api.us1.sysdig.com
    description: Sysdig Secure API — Activity Audit business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-activityAudit
      path: /api/v1/activityAudit
      operations:
      - name: listactivityaudit
        method: GET
        description: List Activity Audit
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: from
          in: query
          type: integer
        - name: to
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
    - name: api-v1-secureEvents
      path: /api/v1/secureEvents
      operations:
      - name: listsecureevents
        method: GET
        description: List Secure Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: from
          in: query
          type: integer
          description: Start time in Unix epoch seconds
        - name: to
          in: query
          type: integer
          description: End time in Unix epoch seconds
        - name: limit
          in: query
          type: integer
        - name: filter
          in: query
          type: string
          description: Filter expression for events
    authentication:
      type: bearer
      token: '{{env.SYSDIG_API_KEY}}'
  exposes:
  - type: rest
    namespace: secure-activity-audit-rest
    port: 8080
    description: REST adapter for Sysdig Secure API — Activity Audit. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v1/activityaudit
      name: api-v1-activityaudit
      description: REST surface for api-v1-activityAudit.
      operations:
      - method: GET
        name: listactivityaudit
        description: List Activity Audit
        call: secure-activity-audit.listactivityaudit
        with:
          from: rest.from
          to: rest.to
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/secureevents
      name: api-v1-secureevents
      description: REST surface for api-v1-secureEvents.
      operations:
      - method: GET
        name: listsecureevents
        description: List Secure Events
        call: secure-activity-audit.listsecureevents
        with:
          from: rest.from
          to: rest.to
          limit: rest.limit
          filter: rest.filter
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: secure-activity-audit-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sysdig Secure API — Activity Audit. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-activity-audit
      description: List Activity Audit
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: secure-activity-audit.listactivityaudit
      with:
        from: tools.from
        to: tools.to
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: list-secure-events
      description: List Secure Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: secure-activity-audit.listsecureevents
      with:
        from: tools.from
        to: tools.to
        limit: tools.limit
        filter: tools.filter
      outputParameters:
      - type: object
        mapping: $.