Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

CDP CLI df metrics time period argument poorly documented

avatar
Contributor

I'm trying to use the cdp cli (v. 0.9.106 on my local machine) to get KPI metrics from CDF. I'm using the command `cdp df list-deployment-system-metrics --deployment-crn my-deployment-crn` but struggling to correctly format the required `--metrics-time-period` arg. The documentation isn't helpful here:

Screenshot 2024-03-25 at 9.11.58 AM.png

I've tried a few things like:

`--metrics-time-period "2024-03-24T12:00:00Z:2024-03-24T16:00:00Z"`

`--metrics-time-period LAST_24_HOURS`

`--metrics-time-period "yesterday"`

But they all scream back:

An error occurred: No enum constant com.cloudera.dfx.metrics.TimeSpan.TimePeriod.yesterday (Status Code: 400; Error Code: INVALID_ARGUMENT; Service: df; Operation: listDeploymentSystemMetrics;

If someone could elaborate on what this command is expecting, or better yet, offer up some examples of successful executions, that'd be great!

1 ACCEPTED SOLUTION

avatar
Expert Contributor

Hi @ipsonThanks for bringing this to our community!

You can use one of the below options with --metrics-time-period.

LAST_THIRTY_MINUTES, LAST_ONE_HOUR, LAST_TWELVE_HOURS, LAST_ONE_DAY

Let me know if this helps.

Cheers!

View solution in original post

2 REPLIES 2

avatar
Expert Contributor

Hi @ipsonThanks for bringing this to our community!

You can use one of the below options with --metrics-time-period.

LAST_THIRTY_MINUTES, LAST_ONE_HOUR, LAST_TWELVE_HOURS, LAST_ONE_DAY

Let me know if this helps.

Cheers!

avatar
Contributor

That works. Thanks!