Replies: 2 comments 5 replies
-
Hi @fuadar ! Thanks for opening this. I confess I haven't tested the "manual steps" in quite a while but they should mirror what is in What we know:
InfluxDB CQsYou can run this again - it won't hurt even if you already ran it during the manual steps: docker exec -it influxdb influx -import -path=/var/lib/influxdb/influxdb.sql Does it report any errors? Give it 5m and check the dashboard (reload). TelegrafThis is a required tool to get the data into InfluxDB. Check it: # check telegraf for logs
docker logs telegraf
# check to make sure telegraf config files are there
ls -l telegraf*
The important ones are [[outputs.influxdb]]
urls = ["http://influxdb:8086"]
database = "powerwall"
skip_database_creation = false
retention_policy = "raw"
[[inputs.http]]
urls = [
"http://pypowerwall:8675/aggregates",
"http://pypowerwall:8675/soe",
"http://pypowerwall:8675/strings",
"http://pypowerwall:8675/temps/pw",
"http://pypowerwall:8675/freq",
"http://pypowerwall:8675/pod"
]
method = "GET"
insecure_skip_verify = true
timeout = "4s"
data_format = "json"
[[processors.date]]
tag_key = "month"
date_format = "Jan"
timezone = "America/Los_Angeles"
[[processors.date]]
tag_key = "year"
date_format = "2006"
timezone = "America/Los_Angeles"
# Alert Data
[[inputs.http]]
urls = [
"http://pypowerwall:8675/alerts/pw"
]
name_override = "alerts"
method = "GET"
insecure_skip_verify = true
timeout = "4s"
data_format = "json" |
Beta Was this translation helpful? Give feedback.
-
Issue does seem to be in telgraf
and i cant login to it to check
In Powerwall.yml
Should it be telegraf.local ? |
Beta Was this translation helpful? Give feedback.
-
Have installed powerwall-dashboard using manual steps. All looks good but my graphs only have weather data i can see the grid flow from the powerwall but no other grid data
![image](https://user-images.githubusercontent.com/2882496/220005313-d7b7fe6d-9799-453c-9672-f665f2e67b35.png)
docker logs -f looks clean as well
Here is an example of my Grafana dashboard
I've also run the pypowerwall curls and i can see data is coming
Beta Was this translation helpful? Give feedback.
All reactions