-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding limit query parameter origin inspector #568
Adding limit query parameter origin inspector #568
Conversation
fastly/stats_origin_inspector.go
Outdated
@@ -91,6 +91,8 @@ type GetOriginMetricsInput struct { | |||
End *time.Time | |||
// GroupBy is the dimensions to return in the query. | |||
GroupBy []string | |||
// Limit is the limit of returned data |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please describe the units of this; is it entries, rows, something else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it to Limit is the limit of entries requested
, I also took the initiative to change it under domain inspector too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I edited the 'limit' descriptions to be more in line with other descriptions across our API schemas.
Co-authored-by: Kevin P. Fleming <kpfleming@users.noreply.github.com>
Co-authored-by: Kevin P. Fleming <kpfleming@users.noreply.github.com>
This PR adds the missing
limit
query parameter to the request on origin inspector endpoint.