Our mobile app uses couchbase lite (version 2.7) and it replicates the data to couchbase server through sync_gateway. Now we want to capture the calls being triggered from couchbaseLite to the sync_gateway. we need to capture these calls because we want to simulate these calls in our load testing tool and load test the sync_gateway directly from our load test tool.
we tried using charles proxy to capture these requests, but however we are not able to capture the replication requests. Only request i could capture is _blipsync call (and that too in websocket format).
I understand that couchbaseLite 2.7 talks to sync gateway in websocket layer. But is there a way i can capture the requests triggered from couchbase lite to the sync_gateway for push/pull replications?