Processors

List Processors

get
Responses
200

OK

application/json
get
GET /v1/processors HTTP/1.1
Host: 
Accept: */*
{
  "processors": [
    {
      "apiVersion": "string",
      "kind": "string",
      "metadata": {
        "additionalInfo": {
          "documentation": [
            {
              "text": "text",
              "url": "text"
            }
          ],
          "message": "string"
        },
        "dateModified": "text",
        "deprecated": true,
        "description": "string",
        "displayName": "string",
        "hash": "text",
        "icon": "string",
        "id": "string",
        "labels": {},
        "name": "string",
        "resourceDocLink": "string",
        "stability": "string",
        "version": 1,
        "warning": "string"
      },
      "spec": {
        "disabled": true,
        "licenseEnabled": true,
        "parameters": [
          {
            "credential": true,
            "name": "text",
            "sensitive": true,
            "value": null
          }
        ],
        "processors": [
          {
            "description": "text",
            "disabled": true,
            "displayName": "text",
            "id": "text",
            "licenseEnabled": true,
            "name": "text",
            "parameters": [
              {
                "credential": true,
                "name": "text",
                "sensitive": true,
                "value": null
              }
            ],
            "processors": "[Circular Reference]",
            "public": true,
            "recommendation": "text",
            "routes": {
              "logs": [
                {
                  "components": [
                    "text"
                  ],
                  "id": "text"
                }
              ],
              "logs+metrics": [
                {
                  "components": [
                    "text"
                  ],
                  "id": "text"
                }
              ],
              "logs+metrics+traces": [
                {
                  "components": [
                    "text"
                  ],
                  "id": "text"
                }
              ],
              "logs+traces": [
                {
                  "components": [
                    "text"
                  ],
                  "id": "text"
                }
              ],
              "metrics": [
                {
                  "components": [
                    "text"
                  ],
                  "id": "text"
                }
              ],
              "metrics+traces": [
                {
                  "components": [
                    "text"
                  ],
                  "id": "text"
                }
              ],
              "traces": [
                {
                  "components": [
                    "text"
                  ],
                  "id": "text"
                }
              ]
            },
            "secOpsPipelineName": "text",
            "type": "text",
            "version": "text"
          }
        ],
        "public": true,
        "recommendation": "text",
        "type": "text",
        "version": "text"
      },
      "status": {
        "latest": true
      }
    }
  ]
}

Get Processor by name

get
Path parameters
namestringRequired

the name of the Processor

Responses
200

OK

application/json
get
GET /v1/processors/{name} HTTP/1.1
Host: 
Accept: */*
{
  "processor": {
    "apiVersion": "string",
    "kind": "string",
    "metadata": {
      "additionalInfo": {
        "documentation": [
          {
            "text": "text",
            "url": "text"
          }
        ],
        "message": "string"
      },
      "dateModified": "text",
      "deprecated": true,
      "description": "string",
      "displayName": "string",
      "hash": "text",
      "icon": "string",
      "id": "string",
      "labels": {},
      "name": "string",
      "resourceDocLink": "string",
      "stability": "string",
      "version": 1,
      "warning": "string"
    },
    "spec": {
      "disabled": true,
      "licenseEnabled": true,
      "parameters": [
        {
          "credential": true,
          "name": "text",
          "sensitive": true,
          "value": null
        }
      ],
      "processors": [
        {
          "description": "text",
          "disabled": true,
          "displayName": "text",
          "id": "text",
          "licenseEnabled": true,
          "name": "text",
          "parameters": [
            {
              "credential": true,
              "name": "text",
              "sensitive": true,
              "value": null
            }
          ],
          "processors": [
            "[Circular Reference]"
          ],
          "public": true,
          "recommendation": "text",
          "routes": {
            "logs": [
              {
                "components": [
                  "text"
                ],
                "id": "text"
              }
            ],
            "logs+metrics": [
              {
                "components": [
                  "text"
                ],
                "id": "text"
              }
            ],
            "logs+metrics+traces": [
              {
                "components": [
                  "text"
                ],
                "id": "text"
              }
            ],
            "logs+traces": [
              {
                "components": [
                  "text"
                ],
                "id": "text"
              }
            ],
            "metrics": [
              {
                "components": [
                  "text"
                ],
                "id": "text"
              }
            ],
            "metrics+traces": [
              {
                "components": [
                  "text"
                ],
                "id": "text"
              }
            ],
            "traces": [
              {
                "components": [
                  "text"
                ],
                "id": "text"
              }
            ]
          },
          "secOpsPipelineName": "text",
          "type": "text",
          "version": "text"
        }
      ],
      "public": true,
      "recommendation": "text",
      "type": "text",
      "version": "text"
    },
    "status": {
      "latest": true
    }
  }
}

Delete processor by name

delete
Path parameters
namestringRequired

the name of the processor to delete

Responses
204

Successful Delete, no content

No content

delete
DELETE /v1/processors/{name} HTTP/1.1
Host: 
Accept: */*

No content

Was this helpful?