Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save agaro1121/323e381d1603306b42167d0ff2239359 to your computer and use it in GitHub Desktop.
Save agaro1121/323e381d1603306b42167d0ff2239359 to your computer and use it in GitHub Desktop.
Aws Kinesis Records Viewer

The process to view records in kinesis are as follows:

  1. Get a shard iterator:
aws kinesis get-shard-iterator --shard-id shardId-000000000000 --shard-iterator-type LATEST --stream-name
  1. Run your producer using kpl or anyother library and language.

  2. Read records of the recently created shard iterator:

aws kinesis get-records --shard-iterator
  1. If could also view the payload using: Use this site https://www.base64decode.org/. And drop the payload to decode.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment