Skip to content

Commit

Permalink
Merge pull request #331 from jasonacox/pr/321
Browse files Browse the repository at this point in the history
Fix mean in solar energy yr panel #330
  • Loading branch information
jasonacox authored Jul 25, 2023
2 parents 6c3759c + 95d0136 commit 1045956
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dashboards/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -3710,7 +3710,7 @@
"measurement": "http",
"orderByTime": "ASC",
"policy": "kwh",
"query": "SELECT sum(\"solar\") FROM \"kwh\".\"http\" WHERE (\"solar\" > 0) GROUP BY time(1d) fill(0) tz('$tz')",
"query": "SELECT sum(\"solar\") FROM \"kwh\".\"http\" WHERE (\"solar\" > 0) GROUP BY time(1d) fill(null) tz('$tz')",
"rawQuery": true,
"refId": "A",
"resultFormat": "time_series",
Expand Down Expand Up @@ -3743,7 +3743,7 @@
"uid": "${DS_INFLUXDB}"
},
"hide": false,
"query": "SELECT sum(\"from_grid\") - sum(\"to_grid\") as \"grid\" FROM \"kwh\".\"http\" WHERE $timeFilter GROUP BY time(1d) fill(0) tz('$tz')",
"query": "SELECT sum(\"from_grid\") - sum(\"to_grid\") as \"grid\" FROM \"kwh\".\"http\" WHERE $timeFilter GROUP BY time(1d) fill(null) tz('$tz')",
"rawQuery": true,
"refId": "C",
"resultFormat": "time_series"
Expand Down Expand Up @@ -12143,6 +12143,6 @@
"timezone": "browser",
"title": "Powerwall - Power Flow",
"uid": "RSabAvRRzZ",
"version": 48,
"version": 49,
"weekStart": ""
}

0 comments on commit 1045956

Please sign in to comment.