We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7abbc9c + 41cb649 commit e6e9235Copy full SHA for e6e9235
RELEASE_NOTES.md
@@ -10,6 +10,7 @@
10
11
## New Features
12
13
+* The CLI tool supports requesting component states without metrics.
14
15
## Bug Fixes
16
src/frequenz/client/reporting/__main__.py
@@ -29,10 +29,11 @@ def main() -> None:
29
parser.add_argument(
30
"--metrics",
31
type=str,
32
- nargs="+",
+ nargs="*",
33
choices=[e.name for e in Metric],
34
help="List of metrics to process",
35
- required=True,
+ required=False,
36
+ default=[],
37
)
38
39
"--states",
0 commit comments