• Home
  • Raw
  • Download

Lines Matching +full:traces +full:- +full:db

7 //     http://www.apache.org/licenses/LICENSE-2.0
33 // This file describes an API for collecting and viewing traces and spans
41 "https://www.googleapis.com/auth/cloud-platform,"
45 // Returns of a list of traces that match the specified filter conditions.
48 get: "/v1/projects/{project_id}/traces"
56 get: "/v1/projects/{project_id}/traces/{trace_id}"
61 // Sends new traces to Stackdriver Trace or updates existing traces. If the ID
68 patch: "/v1/projects/{project_id}/traces"
69 body: "traces"
71 option (google.api.method_signature) = "project_id,traces";
82 // Globally unique identifier for the trace. This identifier is a 128-bit
83 // numeric value formatted as a 32-byte hex string. For example,
91 // List of new or updated traces.
92 message Traces { message
93 // List of traces.
94 repeated Trace traces = 1; field
99 // end-to-end latency of an operation and, optionally, one or more subspans for
109 // Indicates that the span covers server-side handling of an RPC or other
113 // Indicates that the span covers the client-side wrapper around an RPC or
118 // Identifier for the span. Must be a 64-bit integer other than 0 and
130 // The name may be a method name or some other per-call site name.
133 // cross-trace spans.
152 // * `/category/product/key` for agents of well-known products (e.g.
153 // `/db/mongodb/read_size`).
154 // * `short_host/path/key` for domain-specific keys (e.g.
186 // Type of data returned for traces in the list.
208 // Optional. Type of data returned for traces in the list. Default is
212 // Optional. Maximum number of traces to return. If not specified or <= 0, the
214 // return fewer traces than the requested page size.
235 // * `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces where any root
237 // * `+root:NAME` or `+NAME`: Return traces where any root span's name is
239 // * `span:NAME_PREFIX`: Return traces where any span starts with
241 // * `+span:NAME`: Return traces where any span's name is exactly
243 // * `latency:DURATION`: Return traces whose overall latency is
246 // example, `latency:24ms` returns traces whose overall latency
248 // * `label:LABEL_KEY`: Return all traces containing the specified
249 // label key (exact match, case-sensitive) regardless of the key:value
251 // * `LABEL_KEY:VALUE_PREFIX`: Return all traces containing the specified
252 // label key (exact match, case-sensitive) whose value starts with
254 // * `+LABEL_KEY:VALUE`: Return all traces containing a key:value pair
261 // Optional. Field used to sort the returned traces.
280 repeated Trace traces = 1; field
282 // If defined, indicates that there are more traces that match the request
284 // retrieving additional traces.
303 Traces traces = 2 [(google.api.field_behavior) = REQUIRED]; field