Receive decrypted frames at any time

Hello. I want to receive decrypted frames at any time.

Available now:

  • Data integrations HTTP, MQTT - to receive decrypted frames, but only new (fresh) frames
  • GRPC, REST API - to receive raw and encrypted frames at any time.

I know I can decrypt frame via EncryptFRMPayload, but I don’t want to do it.

What can you offer?

Data integrations HTTP, MQTT - to receive decrypted frames, but only new (fresh) frames

Basically that :slight_smile: You could implement a HTTP or MQTT handler which persists all frames into a database.

GRPC, REST API - to receive raw and encrypted frames at any time.

This is for debugging purposes. It is in no way meant to be a “data buffer”.

Let’s say I created a service that receives messages via mqtt and saves them in the database. How do I get the missed messages? (ie when my service did not work)

You have to make sure that your services are up and running in order to receive all data. Alternatively you could use the HTTP integration and have multiple handlers running behind a load-balancer.