Deep-Live-Cam
Deep-Live-Cam copied to clipboard
Adding Dockerfile
Added Dockerfile and how to run using it
Summary by Sourcery
Add Docker usage instructions to the README, providing users with guidance on how to build and run the application using Docker.
Documentation:
- Add instructions to the README for running the application using Docker, including build and run commands.
HI @Andkju,
There isn't any way to recover device telemetry data.
I suggest that the data were removed because the TTL expired.
- The TTL on the Prototype subscription is set to 180 days by default.
- Thingsboard deletes all data with a TTL value of more than 180 days.
If you wanna store your data for more than 180 days, you may overwrite the default value in the "Save Timeseries" rule node or use the "TTL" metadata field of your message. Here is a link to Cloud Subscriptions Plans, where you can find additional information about Prototype subscription.
Dear @SuminDenys The information was displayed on dashboards; is there a way to retrieve it from there? If not, how could I modify the 'TTL' field of the message from my devices without losing the existing information? I only use ThingsBoard in its web version. Thank you very much for your support.
Hi @Andkju,
The information in the dashboard is only structured data that ThingsBoard obtains from the database and displays using widgets.
- There is no way to retrieve old data that is no longer displayed from a dashboard.
- You can use the following link: Working with telemetry data to find possible options for how you can rewrite the TTL value via Rule Chain.
- Also, I add some screenshots with examples below as a hint for you.
Hello @SuminDenys, in the last picture you added a transformation script right? I just put "157788000 " in the default TTL meaning to store the data for 5 years. Please correct me if I'm wrong. Thank you so much for your patience.
Hi @Andkju,
- Yes, I added a transformation script in the last screenshot.
- To save data for five years, you must set the Default TTL to value "157766400" in the Save Timeseries node
Here's how it's calculated:
1 year = 365 days
1 day = 24 hours
1 hour = 60 minutes
1 minute = 60 seconds
So:
365×24×60×60=31,536,000 seconds
For a leap year, which has 366 days:
366×24×60×60=31,622,400 seconds
Five years with leap year included equal (31,536,000×4)+31,622,400=157766400
I'm closing this issue due to inactivity. Feel free to reopen if you still have some questions.