(query string)
| 312 | } |
| 313 | |
| 314 | func (c *Client) SearchTraceQL(query string) (*tempopb.SearchResponse, error) { |
| 315 | m := &tempopb.SearchResponse{} |
| 316 | _, err := c.getFor(c.buildSearchQueryURL("q", query, 0, 0, 0, 0, c.queryParams), m) |
| 317 | if err != nil { |
| 318 | return nil, err |
| 319 | } |
| 320 | |
| 321 | return m, nil |
| 322 | } |
| 323 | |
| 324 | func (c *Client) SearchTraceQLWithRange(query string, start int64, end int64) (*tempopb.SearchResponse, error) { |
| 325 | m := &tempopb.SearchResponse{} |
nothing calls this directly
no test coverage detected