magic-visibility_pcaps_filter_v1

The packet capture filter. When this field is empty, all packets are captured.

APIs.ioEngineeringPlatform

Properties

Name Type Description
destination_address string The destination IP address of the packet.
destination_port number The destination port of the packet.
protocol number The protocol number of the packet.
source_address string The source IP address of the packet.
source_port number The source port of the packet.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-magic-visibility-pcaps-filter-v1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/magic-visibility_pcaps_filter_v1",
  "title": "magic-visibility_pcaps_filter_v1",
  "description": "The packet capture filter. When this field is empty, all packets are captured.",
  "properties": {
    "destination_address": {
      "description": "The destination IP address of the packet.",
      "example": "1.2.3.4",
      "type": "string"
    },
    "destination_port": {
      "description": "The destination port of the packet.",
      "example": 80,
      "type": "number"
    },
    "protocol": {
      "description": "The protocol number of the packet.",
      "example": 6,
      "type": "number"
    },
    "source_address": {
      "description": "The source IP address of the packet.",
      "example": "1.2.3.4",
      "type": "string"
    },
    "source_port": {
      "description": "The source port of the packet.",
      "example": 123,
      "type": "number"
    }
  },
  "type": "object"
}