Created
March 17, 2022 09:34
-
-
Save johnlpage/8b6b4f914d5762c000f4eed6d8687746 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ $match: { type: "electric" } }, | |
{ $unwind: "$devices" }, | |
{ $match: { "devices.watts": { $gt: 0 } } }, | |
{ $setWindowFields: { sortBy: { date: 1 }, partitionBy: "$devices.name", | |
output: { totalUsage: { $integral: { input: "$devices.watts", unit: "hour" } } } }}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment