I am using paid services of thinger.io .
My problem is that i am not able to see the data in bucket whereas data is loaded in to bucket
which can be verified by exporting bucket and dashboard from the bucket .
How to make bukcet data visible ( bukcet header are visible)
Taking a look to your bucket configuration, I can see that the data source configuration is set on “from write call”. This configuration must be used when your devices are programmed using a thing.stream_resource instruction, as you can check on this part of the documentation: http://docs.thinger.io/console/#data-buckets-create-bucket
To solve this problem you just have to change the configuration of the data source to “from device resource” and select a sampling interval. Or you can change your program to include the stream instruction but in this case be careful to include an algorithm that prevents this instruction from being executed permanently each loop
As Ega tolds, it could be fine if you share the hole code. However, calling “write bucket” each loop is not the best idea, because the server is only going to get the data each 60s (30s in your case that have a maker account) and this is creating a lot of work and trafic in your processor.
So I recomend you includding a limitation algorithm as the one below or change the configuration to sampling interval from device resource.
finally, I’m seeing that you have written “BucketId” in your code, this instruction will only write data in a platform bucket with the ID=bucketId, be careful with that!!
It is important to understand that the dashboard and the buckets are two different things, the fact that one is showing data does not mean that the other should also work, I don’t see anything strange in that.
Can you share your code, in the appropriate way (very important), to see what is going on?
I usually think this too, when I don’t know or don’t understand something in the right way.