-
Notifications
You must be signed in to change notification settings - Fork 26
Additional HTTP-HEADERS from ASM logging not Forwarded with Telemetry Logging #286
Description
Environment
- Telemetry Streaming Version: 1.39.0
- BIG-IP Version: 17.1.2
Summary
With Telemetry data, some HTTP HEADERS are not being forwarded (from the ASM/WAF).
This is however forwarded when CEF logging is being done.
I double checked on the Elasticsearch where the DATA is received.
With the RAW DATA coming in with Telemetry versus CEF, is definitely a difference herein.
Steps To Reproduce
{
"class": "Telemetry",
"My_System": {
"class": "Telemetry_System",
"systemPoller": {
"interval": 60
}
},
"My_Listener": {
"class": "Telemetry_Listener",
"port": 8110
},
"My_Consumer": {
"class": "Telemetry_Consumer",
"type": "Generic_HTTP",
"host": "1.2.3.4",
"protocol": "http",
"port": 1234,
"path": "/",
"method": "POST",
"headers": [
{
"name": "content-type",
"value": "application/json"
}
],
"outputMode": "processed",
"compressionType": "none",
"customOpts": [
{ "name": "keepAlive", "value": true },
{"name": "keepAliveMsecs", "value": 30000 },
{ "name": "maxSockets", "value": 30 },
{ "name": "maxFreeSockets", "value": 30 }
]
}
}