I followed the Aws tutorial for setting up a node.js project just fine, however it seems like it can only trace http requests.
var AWSXRay = require('aws-xray-sdk');
AWSXRay.captureHTTPsGlobal(require('http'));
var http = require('http');
My project will aslo start utilizing websocket connections apart from the http that already were already set up, but I can't set up Aws xray to also capture my websocket calls (messages after the handshake is established).
The documentation doesn't touch anything websocket related, though.
Is it possible to setup xray to trace websocket connections as well?