Jetic · Capability

Jetic Platform API — Monitoring

Jetic Platform API — Monitoring. 2 operations. Lead operation: Jetic Get deployment logs. Self-contained Naftiko capability covering one Jetic business surface.

Run with Naftiko JeticMonitoring

What You Can Do

GET
Getdeploymentlogs — Jetic Get deployment logs
/v1/deployments/{deploymentid}/logs
GET
Getdeploymentmetrics — Jetic Get deployment metrics
/v1/deployments/{deploymentid}/metrics

MCP Tools

jetic-get-deployment-logs

Jetic Get deployment logs

read-only idempotent
jetic-get-deployment-metrics

Jetic Get deployment metrics

read-only idempotent

Capability Spec

platform-monitoring.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Jetic Platform API — Monitoring
  description: 'Jetic Platform API — Monitoring. 2 operations. Lead operation: Jetic Get deployment logs. Self-contained Naftiko
    capability covering one Jetic business surface.'
  tags:
  - Jetic
  - Monitoring
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JETIC_API_KEY: JETIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-monitoring
    baseUri: https://app.us1.jetic.io/api/v1
    description: Jetic Platform API — Monitoring business capability. Self-contained, no shared references.
    resources:
    - name: deployments-deploymentId-logs
      path: /deployments/{deploymentId}/logs
      operations:
      - name: getdeploymentlogs
        method: GET
        description: Jetic Get deployment logs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: query
          type: string
          description: Type of logs to retrieve.
        - name: since
          in: query
          type: string
          description: Retrieve logs since this timestamp.
        - name: limit
          in: query
          type: integer
          description: Maximum number of log lines.
    - name: deployments-deploymentId-metrics
      path: /deployments/{deploymentId}/metrics
      operations:
      - name: getdeploymentmetrics
        method: GET
        description: Jetic Get deployment metrics
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: from
          in: query
          type: string
          description: Start of the metrics time range.
        - name: to
          in: query
          type: string
          description: End of the metrics time range.
    authentication:
      type: bearer
      token: '{{env.JETIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-monitoring-rest
    port: 8080
    description: REST adapter for Jetic Platform API — Monitoring. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/deployments/{deploymentid}/logs
      name: deployments-deploymentid-logs
      description: REST surface for deployments-deploymentId-logs.
      operations:
      - method: GET
        name: getdeploymentlogs
        description: Jetic Get deployment logs
        call: platform-monitoring.getdeploymentlogs
        with:
          type: rest.type
          since: rest.since
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/deployments/{deploymentid}/metrics
      name: deployments-deploymentid-metrics
      description: REST surface for deployments-deploymentId-metrics.
      operations:
      - method: GET
        name: getdeploymentmetrics
        description: Jetic Get deployment metrics
        call: platform-monitoring.getdeploymentmetrics
        with:
          from: rest.from
          to: rest.to
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-monitoring-mcp
    port: 9090
    transport: http
    description: MCP adapter for Jetic Platform API — Monitoring. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: jetic-get-deployment-logs
      description: Jetic Get deployment logs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-monitoring.getdeploymentlogs
      with:
        type: tools.type
        since: tools.since
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: jetic-get-deployment-metrics
      description: Jetic Get deployment metrics
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-monitoring.getdeploymentmetrics
      with:
        from: tools.from
        to: tools.to
      outputParameters:
      - type: object
        mapping: $.