We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
query_range
These functions can be called either with named parameters or positioned parameters.
Example queries for query_range. Named parameters query. source = prometheus.query_range(query="promQL", start=123, end=145, step=45)
source = prometheus.query_range(query="promQL", start=123, end=145, step=45)
Positioned parameters query. ``source = prometheus.query_range("promQL", 123, 145, 45)`
The text was updated successfully, but these errors were encountered:
vamsimanohar
Successfully merging a pull request may close this issue.
query_range
table function is defined to support pass through promQL query directly to prometheus.These functions can be called either with named parameters or positioned parameters.
Example queries for query_range.
Named parameters query.
source = prometheus.query_range(query="promQL", start=123, end=145, step=45)
Positioned parameters query.
``source = prometheus.query_range("promQL", 123, 145, 45)`
The text was updated successfully, but these errors were encountered: