Traffic Processing with Plugins
Understanding Stacks and Plugins
In Qtap's configuration, traffic processing is organized using two key concepts:
Stacks: Named collections of plugins that work together to process traffic
Plugins: Individual components that perform specific functions on captured traffic
This structure allows you to create different processing configurations for different types of traffic.
New to plugins? Follow the Complete Guide for hands-on examples progressing through all 4 levels of plugin configuration (from basic to production-ready).
Stack Configuration
Stacks are defined in the stacks section of your qpoint.yaml file. Each stack has a unique name and contains one or more plugins:
stacks:
default_stack: # Stack name
plugins: # List of plugins in this stack
- type: http_capture
config:
# Plugin-specific configurationYou can create multiple stacks for different purposes, each with its own set of plugins and configurations.
Available Plugins
Qtap includes several plugins that provide different processing capabilities. Rules use Rulekit - Qpoint's flexible expression-based rules engine for evaluating conditions against HTTP traffic.
HTTP Capture Plugin
The http_capture plugin provides comprehensive HTTP traffic capture with flexible logging levels and the ability to upload payloads to object storage.
Basic Configuration
Level Options
none: No capture (effectively disables the plugin)summary: Basic information (method, path, status code)details: Includes headersfull: Complete information including request/response bodies
Example with Rules
This configuration:
Uses summary level by default
Captures full details for all traffic to
httpbin.orgCaptures detailed information for server errors (5xx)
Captures full information for client errors (4xx)
Container and Pod-based Filtering
You can also create rules based on container or Kubernetes pod attributes:
The http_capture plugin uploads captured payloads to the configured object store when capture levels include body content. When using full level, both headers and bodies are captured and stored. When using details level, only headers are captured (no body storage).
Access Logs Plugin
The access_logs plugin provides formatted logging of HTTP traffic to stdout. It does not upload to the object store.
Basic Configuration
Mode Options
summary: Basic information (method, path, status code)details: Includes headers and timing informationfull: Complete information including request/response bodies
Example with Rules
Report Usage Plugin
The report_usage plugin sends anonymized usage metrics to Pulse. This is mainly useful when using Qplane. It works alongside other plugins and doesn't affect traffic capture.
This plugin is optional and can be included in any stack.
Error Detection Plugin (Deprecated)
DEPRECATED: The detect_errors plugin is deprecated and will be removed in a future version.
Migration: Use http_capture plugin with rulekit rules instead - it provides more flexibility and better performance.
Why deprecated: The http_capture plugin's rule-based filtering supersedes this plugin's functionality with a more powerful and flexible approach.
The detect_errors plugin captures detailed information when responses meet specific error criteria and optionally uploads the specified headers and/or bodies to the object store.
Example of OLD (deprecated) approach:
NEW approach using http_capture with rules:
Migration benefits:
More flexible filtering (combine status codes with headers, paths, etc.)
Better performance (single plugin instead of multiple)
Access to full rulekit expression syntax
Consistent configuration across all capture scenarios
Debug Plugin (Deprecated)
DEPRECATED: The debug plugin is deprecated and will be removed in a future version.
Migration: Use access_logs plugin for console output, or http_capture for more flexible capture.
Why deprecated: The access_logs plugin provides better formatting and more features, making this plugin redundant.
The debug plugin provides basic logging of HTTP traffic.
Example of OLD (deprecated) approach:
NEW approach using access_logs:
Migration benefits:
Better formatted output (Apache-style logs)
Support for both console and JSON formats
Rule-based selective logging
Consistent with other plugins
Rule Expressions with Rulekit
Both the http_capture and access_logs plugins use Rulekit for rule evaluation. Rulekit is Qpoint's expression-based rules engine that evaluates conditions against key-value data from HTTP traffic.
Expression Syntax
Rule expressions follow a straightforward pattern:
Multiple conditions can be combined using logical operators:
Available Fields for Rule Expressions
Request Fields
http.req.method
http.req.method == "POST"
HTTP method (GET, POST, etc.)
http.req.path
http.req.path contains "/api/"
Request path
http.req.host
http.req.host == "api.example.com"
Host header value
http.req.url
http.req.url contains "search"
Full URL
http.req.headers.<name>
http.req.headers.content-type == "application/json"
Request header by name
Response Fields
http.res.status
http.res.status >= 400
HTTP status code
http.res.headers.<name>
http.res.headers.content-type contains "json"
Response header by name
Source Context Fields
src.container.name
src.container.name == "my-app"
Container name
src.container.labels.<key>
src.container.labels.app == "frontend"
Container label value
src.pod.name
src.pod.name == "frontend-abc123"
Kubernetes pod name
src.pod.labels.<key>
src.pod.labels.version == "v2"
Pod label value
Operators for Rule Expressions
Rulekit supports various operators for building expressions:
Comparison Operators
==
eq
Equal to
http.req.method == "GET"
!=
ne
Not equal to
http.req.host != "internal.example.com"
>
gt
Greater than
http.res.status > 200
>=
ge
Greater than or equal to
http.res.status >= 400
<
lt
Less than
http.res.status < 300
<=
le
Less than or equal to
http.res.status <= 399
=~
matches
Matches regex pattern
http.req.path matches /^\/api\/v\d+\//
contains
Contains substring
http.req.url contains "search"
in
Is contained in array
http.req.method in ["GET", "HEAD"]
Logical Operators
and
&&
Logical AND
http.req.method == "POST" and http.res.status >= 400
or
||
Logical OR
http.req.path contains "/admin" or http.req.path contains "/auth"
not
!
Logical NOT
not http.req.host == "public.example.com"
Value Types
Rulekit expressions support various value types:
Boolean:
true,falseNumber: Integer or floating-point values (e.g.,
200,1.5)String: Text enclosed in double quotes (e.g.,
"example.com")Regex Pattern: Patterns enclosed in slashes
/pattern/or vertical bars|pattern|Array: Values in square brackets (e.g.,
[200, 201, 204])
Using Rulekit Macros
You can define reusable expression macros in the rulekit section of your configuration:
Known Limitation: The not operator does not currently work in rule expressions or macros. Use explicit negation with != and && operators instead.
For example, instead of:
Use:
Complete Configuration Example
Here's a comprehensive example that demonstrates various plugin features:
Additional Resources
Rulekit Documentation: For detailed information about rule expressions, operators, and advanced features, visit the Rulekit GitHub repository
Rulekit Examples: The repository includes an interactive CLI demo tool for testing rule expressions
Last updated