-
I am getting a consistent NO DATA message on my CT2 data line, but its inconsistent. One refresh of the data there will be a value there and in the next refresh it might say NO DATA. The oddity is when I use the default dashboard for the CT probe data I do not get any drops of the data. Im not sure how to go about trouble shooting this as I believe the data stream is solid based upon the default CT probe data dashboard. But when I bring it into where and how I want to display it, chaos happens.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @ejg3855, can you elaborate on this part?
Where are you trying to bring the data into? It looks like you're trying to use the InfluxDB API which I'm not super familiar with. |
Beta Was this translation helpful? Give feedback.
-
I just copied and edited your CT probes dashboard.
…On Mon, Nov 13, 2023, 16:25 David Albrecht ***@***.***> wrote:
Hi @ejg3855 <https://github.com/ejg3855>, can you elaborate on this part?
But when I bring it into where and how I want to display it, chaos happens
Where are you trying to bring the data into? It looks like you're trying
to use the InfluxDB API which I'm not super familiar with.
—
Reply to this email directly, view it on GitHub
<#116 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AI7F77FJZXZNTLAP6FUSJGTYEKF3TAVCNFSM6AAAAAA7JVAYO2VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TKNJYG42DK>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
Looking a bit more closely at your API request, it could just be that the time range is too short:
I'm referring to the
now-5s
part specifically. The power monitor takes readings quicker than that, but it actually caches 25 readings and then writes them as a batch to reduce overheard and wear and tear on the microSD card. So, the actual database might not have any update for about 20-30 seconds, but when it gets updated, that 20-30 second gap will get filled in.Can you try increasing the time range to
now-30s
? That will give you multiple results, so you might also wa…