Sumo Logic · Capability

Sumo Logic API — eventAnalytics

Sumo Logic API — eventAnalytics. 6 operations. Lead operation: Get All Event Extraction Rules.. Self-contained Naftiko capability covering one Sumo Logic business surface.

Run with Naftiko Sumo LogiceventAnalytics

What You Can Do

GET
Geteventextractionrules — Get All Event Extraction Rules.
/v1/v1/eventextractionrules
POST
Createeventextractionrule — Create Event Extraction Rule.
/v1/v1/eventextractionrules
GET
Geteventextractionrulesquota — Get Event Extraction Rules Quota.
/v1/v1/eventextractionrules/quota
GET
Geteventextractionrule — Get An Event Extraction Rule.
/v1/v1/eventextractionrules/{id}
PUT
Updateeventextractionrule — Update An Event Extraction Rule.
/v1/v1/eventextractionrules/{id}
DELETE
Deleteeventextractionrule — Delete An Event Extraction Rule.
/v1/v1/eventextractionrules/{id}

MCP Tools

get-all-event-extraction-rules

Get All Event Extraction Rules.

read-only idempotent
create-event-extraction-rule

Create Event Extraction Rule.

get-event-extraction-rules-quota

Get Event Extraction Rules Quota.

read-only idempotent
get-event-extraction-rule

Get An Event Extraction Rule.

read-only idempotent
update-event-extraction-rule

Update An Event Extraction Rule.

idempotent
delete-event-extraction-rule

Delete An Event Extraction Rule.

idempotent

Capability Spec

sumo-logic-eventanalytics.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sumo Logic API — eventAnalytics
  description: 'Sumo Logic API — eventAnalytics. 6 operations. Lead operation: Get All Event Extraction Rules.. Self-contained
    Naftiko capability covering one Sumo Logic business surface.'
  tags:
  - Sumo Logic
  - eventAnalytics
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SUMO_LOGIC_API_KEY: SUMO_LOGIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: sumo-logic-eventanalytics
    baseUri: https://api.au.sumologic.com/api
    description: Sumo Logic API — eventAnalytics business capability. Self-contained, no shared references.
    resources:
    - name: v1-eventExtractionRules
      path: /v1/eventExtractionRules
      operations:
      - name: geteventextractionrules
        method: GET
        description: Get All Event Extraction Rules.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createeventextractionrule
        method: POST
        description: Create Event Extraction Rule.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-eventExtractionRules-quota
      path: /v1/eventExtractionRules/quota
      operations:
      - name: geteventextractionrulesquota
        method: GET
        description: Get Event Extraction Rules Quota.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-eventExtractionRules-id
      path: /v1/eventExtractionRules/{id}
      operations:
      - name: geteventextractionrule
        method: GET
        description: Get An Event Extraction Rule.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The identifier of the event extraction rule.
          required: true
      - name: updateeventextractionrule
        method: PUT
        description: Update An Event Extraction Rule.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The identifier of the event extraction rule.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteeventextractionrule
        method: DELETE
        description: Delete An Event Extraction Rule.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The identifier of the event extraction rule.
          required: true
    authentication:
      type: basic
      username: '{{env.SUMO_LOGIC_USER}}'
      password: '{{env.SUMO_LOGIC_PASS}}'
  exposes:
  - type: rest
    namespace: sumo-logic-eventanalytics-rest
    port: 8080
    description: REST adapter for Sumo Logic API — eventAnalytics. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/eventextractionrules
      name: v1-eventextractionrules
      description: REST surface for v1-eventExtractionRules.
      operations:
      - method: GET
        name: geteventextractionrules
        description: Get All Event Extraction Rules.
        call: sumo-logic-eventanalytics.geteventextractionrules
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createeventextractionrule
        description: Create Event Extraction Rule.
        call: sumo-logic-eventanalytics.createeventextractionrule
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/eventextractionrules/quota
      name: v1-eventextractionrules-quota
      description: REST surface for v1-eventExtractionRules-quota.
      operations:
      - method: GET
        name: geteventextractionrulesquota
        description: Get Event Extraction Rules Quota.
        call: sumo-logic-eventanalytics.geteventextractionrulesquota
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/eventextractionrules/{id}
      name: v1-eventextractionrules-id
      description: REST surface for v1-eventExtractionRules-id.
      operations:
      - method: GET
        name: geteventextractionrule
        description: Get An Event Extraction Rule.
        call: sumo-logic-eventanalytics.geteventextractionrule
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateeventextractionrule
        description: Update An Event Extraction Rule.
        call: sumo-logic-eventanalytics.updateeventextractionrule
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteeventextractionrule
        description: Delete An Event Extraction Rule.
        call: sumo-logic-eventanalytics.deleteeventextractionrule
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sumo-logic-eventanalytics-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sumo Logic API — eventAnalytics. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-all-event-extraction-rules
      description: Get All Event Extraction Rules.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-eventanalytics.geteventextractionrules
      outputParameters:
      - type: object
        mapping: $.
    - name: create-event-extraction-rule
      description: Create Event Extraction Rule.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: sumo-logic-eventanalytics.createeventextractionrule
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-event-extraction-rules-quota
      description: Get Event Extraction Rules Quota.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-eventanalytics.geteventextractionrulesquota
      outputParameters:
      - type: object
        mapping: $.
    - name: get-event-extraction-rule
      description: Get An Event Extraction Rule.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-eventanalytics.geteventextractionrule
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-event-extraction-rule
      description: Update An Event Extraction Rule.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: sumo-logic-eventanalytics.updateeventextractionrule
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-event-extraction-rule
      description: Delete An Event Extraction Rule.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: sumo-logic-eventanalytics.deleteeventextractionrule
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.