google_api_cloud_trace v0.7.0 GoogleApi.CloudTrace.V1.Api.Projects View Source
API calls for all endpoints tagged Projects
.
Link to this section Summary
Functions
Sends new traces to Stackdriver Trace or updates existing traces. If the ID of a trace that you send matches that of an existing trace, any fields in the existing trace and its spans are overwritten by the provided values, and any new fields provided are merged with the existing trace data. If the ID does not match, a new trace is created.
Gets a single trace by its ID.
Returns of a list of traces that match the specified filter conditions.
Link to this section Functions
cloudtrace_projects_patch_traces(connection, project_id, optional_params \\ [], opts \\ []) View Source
Sends new traces to Stackdriver Trace or updates existing traces. If the ID of a trace that you send matches that of an existing trace, any fields in the existing trace and its spans are overwritten by the provided values, and any new fields provided are merged with the existing trace data. If the ID does not match, a new trace is created.
Parameters
- connection (GoogleApi.CloudTrace.V1.Connection): Connection to server
- project_id (String.t): ID of the Cloud project where the trace data is stored.
optional_params (KeywordList): [optional] Optional parameters
- :$.xgafv (String.t): V1 error format.
- :access_token (String.t): OAuth access token.
- :alt (String.t): Data format for response.
- :callback (String.t): JSONP
- :fields (String.t): Selector specifying which fields to include in a partial response.
- :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
- :oauth_token (String.t): OAuth 2.0 token for the current user.
- :prettyPrint (boolean()): Returns response with indentations and line breaks.
- :quotaUser (String.t): Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
- :upload_protocol (String.t): Upload protocol for media (e.g. "raw", "multipart").
- :uploadType (String.t): Legacy upload protocol for media (e.g. "media", "multipart").
- :body (Traces):
Returns
{:ok, %GoogleApi.CloudTrace.V1.Model.Empty{}} on success {:error, info} on failure
cloudtrace_projects_traces_get(connection, project_id, trace_id, optional_params \\ [], opts \\ []) View Source
Gets a single trace by its ID.
Parameters
- connection (GoogleApi.CloudTrace.V1.Connection): Connection to server
- project_id (String.t): ID of the Cloud project where the trace data is stored.
- trace_id (String.t): ID of the trace to return.
optional_params (KeywordList): [optional] Optional parameters
- :$.xgafv (String.t): V1 error format.
- :access_token (String.t): OAuth access token.
- :alt (String.t): Data format for response.
- :callback (String.t): JSONP
- :fields (String.t): Selector specifying which fields to include in a partial response.
- :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
- :oauth_token (String.t): OAuth 2.0 token for the current user.
- :prettyPrint (boolean()): Returns response with indentations and line breaks.
- :quotaUser (String.t): Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
- :upload_protocol (String.t): Upload protocol for media (e.g. "raw", "multipart").
- :uploadType (String.t): Legacy upload protocol for media (e.g. "media", "multipart").
Returns
{:ok, %GoogleApi.CloudTrace.V1.Model.Trace{}} on success {:error, info} on failure
cloudtrace_projects_traces_list(connection, project_id, optional_params \\ [], opts \\ []) View Source
Returns of a list of traces that match the specified filter conditions.
Parameters
- connection (GoogleApi.CloudTrace.V1.Connection): Connection to server
- project_id (String.t): ID of the Cloud project where the trace data is stored.
optional_params (KeywordList): [optional] Optional parameters
- :$.xgafv (String.t): V1 error format.
- :access_token (String.t): OAuth access token.
- :alt (String.t): Data format for response.
- :callback (String.t): JSONP
- :fields (String.t): Selector specifying which fields to include in a partial response.
- :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
- :oauth_token (String.t): OAuth 2.0 token for the current user.
- :prettyPrint (boolean()): Returns response with indentations and line breaks.
- :quotaUser (String.t): Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
- :upload_protocol (String.t): Upload protocol for media (e.g. "raw", "multipart").
- :uploadType (String.t): Legacy upload protocol for media (e.g. "media", "multipart").
- :endTime (DateTime.t): End of the time interval (inclusive) during which the trace data was collected from the application.
- :filter (String.t): An optional filter against labels for the request. By default, searches use prefix matching. To specify exact match, prepend a plus symbol (`+`) to the search term. Multiple terms are ANDed. Syntax: `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces where any root span starts with `NAME_PREFIX`. `+root:NAME` or `+NAME`: Return traces where any root span's name is exactly `NAME`. `span:NAME_PREFIX`: Return traces where any span starts with `NAME_PREFIX`. `+span:NAME`: Return traces where any span's name is exactly `NAME`. `latency:DURATION`: Return traces whose overall latency is greater or equal to than `DURATION`. Accepted units are nanoseconds (`ns`), milliseconds (`ms`), and seconds (`s`). Default is `ms`. For example, `latency:24ms` returns traces whose overall latency is greater than or equal to 24 milliseconds. `label:LABEL_KEY`: Return all traces containing the specified label key (exact match, case-sensitive) regardless of the key:value pair's value (including empty values). `LABEL_KEY:VALUE_PREFIX`: Return all traces containing the specified label key (exact match, case-sensitive) whose value starts with `VALUE_PREFIX`. Both a key and a value must be specified. `+LABEL_KEY:VALUE`: Return all traces containing a key:value pair exactly matching the specified text. Both a key and a value must be specified. `method:VALUE`: Equivalent to `/http/method:VALUE`. `url:VALUE`: Equivalent to `/http/url:VALUE`.
- :orderBy (String.t): Field used to sort the returned traces. Optional. Can be one of the following: `trace_id` `name` (`name` field of root span in the trace) `duration` (difference between `end_time` and `start_time` fields of the root span) `start` (`start_time` field of the root span) Descending order can be specified by appending `desc` to the sort field (for example, `name desc`). Only one sort field is permitted.
- :pageSize (integer()): Maximum number of traces to return. If not specified or <= 0, the implementation selects a reasonable value. The implementation may return fewer traces than the requested page size. Optional.
- :pageToken (String.t): Token identifying the page of results to return. If provided, use the value of the `next_page_token` field from a previous request. Optional.
- :startTime (DateTime.t): Start of the time interval (inclusive) during which the trace data was collected from the application.
- :view (String.t): Type of data returned for traces in the list. Optional. Default is `MINIMAL`.
Returns
{:ok, %GoogleApi.CloudTrace.V1.Model.ListTracesResponse{}} on success {:error, info} on failure