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
To prepare for supporting resource-centric logs queries, make the following name changes to the query APIs in Logs and Metrics clients.
def query_workspace( self, workspace_id: str, query: str, *, additional_workspaces: list[str] = ..., include_statistics: bool = ..., include_visualization: bool = ..., server_timeout: int = ..., timespan: Union[timedelta, tuple[datetime, timedelta], tuple[datetime, datetime]] = ..., **kwargs ) -> Union[LogsQueryResult, LogsQueryPartialResult]
def query_resource( self, resource_uri: str, metric_names: list[str], *, aggregations: list[str] = ..., filter: str = ..., granularity: timedelta = ..., max_results: int = ..., metric_namespace: str = ..., order_by: str = ..., timespan: Union[timedelta, tuple[datetime, timedelta], tuple[datetime, datetime]] = ..., **kwargs ) -> MetricsResult
The text was updated successfully, but these errors were encountered:
rakshith91
Successfully merging a pull request may close this issue.
To prepare for supporting resource-centric logs queries, make the following name changes to the query APIs in Logs and Metrics clients.
LogsQueryClient
MetricsQueryClient
The text was updated successfully, but these errors were encountered: