@@ -582,66 +582,22 @@ public List setEndTime(String endTime) {
582
582
}
583
583
584
584
/**
585
- * Optional. A filter against labels for the request. By default, searches use prefix
586
- * matching. To specify exact match, prepend a plus symbol (`+`) to the search term.
587
- * Multiple terms are ANDed. Syntax: * `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces
588
- * where any root span starts with `NAME_PREFIX`. * `+root:NAME` or `+NAME`: Return traces
589
- * where any root span's name is exactly `NAME`. * `span:NAME_PREFIX`: Return traces where
590
- * any span starts with `NAME_PREFIX`. * `+span:NAME`: Return traces where any span's name
591
- * is exactly `NAME`. * `latency:DURATION`: Return traces whose overall latency is greater
592
- * or equal to than `DURATION`. Accepted units are nanoseconds (`ns`), milliseconds (`ms`),
593
- * and seconds (`s`). Default is `ms`. For example, `latency:24ms` returns traces whose
594
- * overall latency is greater than or equal to 24 milliseconds. * `label:LABEL_KEY`: Return
595
- * all traces containing the specified label key (exact match, case-sensitive) regardless of
596
- * the key:value pair's value (including empty values). * `LABEL_KEY:VALUE_PREFIX`: Return
597
- * all traces containing the specified label key (exact match, case-sensitive) whose value
598
- * starts with `VALUE_PREFIX`. Both a key and a value must be specified. *
599
- * `+LABEL_KEY:VALUE`: Return all traces containing a key:value pair exactly matching the
600
- * specified text. Both a key and a value must be specified. * `method:VALUE`: Equivalent to
601
- * `/http/method:VALUE`. * `url:VALUE`: Equivalent to `/http/url:VALUE`.
585
+ * Optional. A filter against properties of the trace. See [filter syntax
586
+ * documentation](https://cloud.google.com/trace/docs/trace-filters) for details.
602
587
*/
603
588
@ com .google .api .client .util .Key
604
589
private java .lang .String filter ;
605
590
606
- /** Optional. A filter against labels for the request. By default, searches use prefix matching. To
607
- specify exact match, prepend a plus symbol (`+`) to the search term. Multiple terms are ANDed.
608
- Syntax: * `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces where any root span starts with
609
- `NAME_PREFIX`. * `+root:NAME` or `+NAME`: Return traces where any root span's name is exactly
610
- `NAME`. * `span:NAME_PREFIX`: Return traces where any span starts with `NAME_PREFIX`. *
611
- `+span:NAME`: Return traces where any span's name is exactly `NAME`. * `latency:DURATION`: Return
612
- traces whose overall latency is greater or equal to than `DURATION`. Accepted units are nanoseconds
613
- (`ns`), milliseconds (`ms`), and seconds (`s`). Default is `ms`. For example, `latency:24ms`
614
- returns traces whose overall latency is greater than or equal to 24 milliseconds. *
615
- `label:LABEL_KEY`: Return all traces containing the specified label key (exact match, case-
616
- sensitive) regardless of the key:value pair's value (including empty values). *
617
- `LABEL_KEY:VALUE_PREFIX`: Return all traces containing the specified label key (exact match, case-
618
- sensitive) whose value starts with `VALUE_PREFIX`. Both a key and a value must be specified. *
619
- `+LABEL_KEY:VALUE`: Return all traces containing a key:value pair exactly matching the specified
620
- text. Both a key and a value must be specified. * `method:VALUE`: Equivalent to
621
- `/http/method:VALUE`. * `url:VALUE`: Equivalent to `/http/url:VALUE`.
591
+ /** Optional. A filter against properties of the trace. See [filter syntax
592
+ documentation](https://cloud.google.com/trace/docs/trace-filters) for details.
622
593
*/
623
594
public java .lang .String getFilter () {
624
595
return filter ;
625
596
}
626
597
627
598
/**
628
- * Optional. A filter against labels for the request. By default, searches use prefix
629
- * matching. To specify exact match, prepend a plus symbol (`+`) to the search term.
630
- * Multiple terms are ANDed. Syntax: * `root:NAME_PREFIX` or `NAME_PREFIX`: Return traces
631
- * where any root span starts with `NAME_PREFIX`. * `+root:NAME` or `+NAME`: Return traces
632
- * where any root span's name is exactly `NAME`. * `span:NAME_PREFIX`: Return traces where
633
- * any span starts with `NAME_PREFIX`. * `+span:NAME`: Return traces where any span's name
634
- * is exactly `NAME`. * `latency:DURATION`: Return traces whose overall latency is greater
635
- * or equal to than `DURATION`. Accepted units are nanoseconds (`ns`), milliseconds (`ms`),
636
- * and seconds (`s`). Default is `ms`. For example, `latency:24ms` returns traces whose
637
- * overall latency is greater than or equal to 24 milliseconds. * `label:LABEL_KEY`: Return
638
- * all traces containing the specified label key (exact match, case-sensitive) regardless of
639
- * the key:value pair's value (including empty values). * `LABEL_KEY:VALUE_PREFIX`: Return
640
- * all traces containing the specified label key (exact match, case-sensitive) whose value
641
- * starts with `VALUE_PREFIX`. Both a key and a value must be specified. *
642
- * `+LABEL_KEY:VALUE`: Return all traces containing a key:value pair exactly matching the
643
- * specified text. Both a key and a value must be specified. * `method:VALUE`: Equivalent to
644
- * `/http/method:VALUE`. * `url:VALUE`: Equivalent to `/http/url:VALUE`.
599
+ * Optional. A filter against properties of the trace. See [filter syntax
600
+ * documentation](https://cloud.google.com/trace/docs/trace-filters) for details.
645
601
*/
646
602
public List setFilter (java .lang .String filter ) {
647
603
this .filter = filter ;
0 commit comments