Replies: 1 comment 7 replies
-
Hi @natrlhy - since that project is using the same URL payloads to import the Powerwall data, there is a chance that you would only need to copy the database from "PowerwallData" to "powerwall" (what this project uses).
CREATE DATABASE powerwall
SELECT * INTO "powerwall"."autogen".:MEASUREMENT FROM "PowerwallData"."autogen"./.*/ GROUP BY *
SELECT * INTO "powerwall"."raw".:MEASUREMENT FROM "PowerwallData"."raw"./.*/ GROUP BY *
|
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I've been running https://github.com/liveaverage/dc-powerwall-dashboard for some time, and it also runs an InfluxDB. Would I be able to use the existing data somehow with this project? I know it's a pretty open ended question and general but I wanted to start the conversation to see how I may be able to bring that data into running this project instead.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions