JoseLuisSR / awsmeter

JMeter plugin to execute load test over Kinesis Data Stream, SQS Standard and FIFO Queues, SNS Standard and FIFO Topics, Cognito AWS services.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

don't support escape character when store data in kinesis

wanghuanjing opened this issue · comments

Descript:
My project need the data that send in kinesis must include a null character, which use escape character "\0" for null, so my test data like: "test\0", but it seems the \0 is not was escaped when storing to Kinesis, as I check from my cloud side, the binary chars for "\0" is [92 48] instead of [0], could you help to check how can I store the escape character to kinesis, please ? thanks

Descript:
My project need the data that send in kinesis must include a null character, which use escape character "\0" for null, so my test data like: "test\0", but it seems the \0 is not was escaped when storing to Kinesis, as I check from my cloud side, the binary chars for "\0" is [92 48] instead of [0], could you help to check how can I store the escape character to kinesis, please ? thanks

I found one way to resolve this: ${__unescape(\0)}, use this function will escape to null, forgive I didn't realize that before.