I am trying to send data to the Azure Blob Storage service. In the future this data should be sent every 5 seconds but at the moment I am trying to keep it simple.
So, here is what I know (I am a beginner):
Part 1 : I know how to save a message.payload into a local file: Inject node and file node. The output of this is the message.payload.
Part 2: I know how to upload a local file into the Blob Storage: Inject node and Blob Storage node. The input should be the name of the file I want to upload.
As you can imagine, the problem is that the output of Part 1 is a message.payload and the input of Part 2 should be the name of the file and not the content of it, which is the message.payload. I believe there has to be a solution for this and I have been googling but haven't found anything since I think my problem is very specific. Maybe someone here has some advice for me.
So basically the question is, how do I get the name of the file that I am saving in Part 1 to be the message.payload right before Part 2 starts?
Thanks in advance! Cheers