WARNING: Version 6.1 of Packetbeat has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Specify which transaction protocols to monitor
editSpecify which transaction protocols to monitor
editThe packetbeat.protocols
section of the packetbeat.yml
config file
contains configuration options for each supported protocol, including common
options like enabled
, ports
, send_request
, send_response
, and options
that are protocol-specific.
Currently, Packetbeat supports the following protocols:
- ICMP (v4 and v6)
- DNS
- HTTP
- AMQP 0.9.1
- Cassandra
- Mysql
- PostgreSQL
- Redis
- Thrift-RPC
- MongoDB
- Memcache
- TLS
Example configuration:
packetbeat.protocols: - type: icmp enabled: true - type: dns ports: [53] - type: http ports: [80, 8080, 8000, 5000, 8002] - type: amqp ports: [5672] - type: cassandra ports: [9042] - type: memcache ports: [11211] - type: mysql ports: [3306] - type: redis ports: [6379] - type: pgsql ports: [5432] - type: thrift ports: [9090] - type: tls ports: [443]