diff --git a/axiom/run.go b/axiom/run.go index d16bc8d4a..5acbe1538 100644 --- a/axiom/run.go +++ b/axiom/run.go @@ -240,7 +240,7 @@ func (c *axiomClient) do(ctx context.Context, rawURL string, id int, body, v any func (c *axiomClient) query(ctx context.Context, id int, aplQuery string, noCache bool) (*aplQueryResponse, *http.Response, error) { uri := *c.apiURL uri.Path = path.Join(uri.Path, "v1/datasets/_apl") - uri.RawQuery = fmt.Sprintf("nocache=%t&format=tabular", noCache) + uri.RawQuery = fmt.Sprintf("nocache=%t&format=legacy", noCache) body := struct { APL string `json:"apl"`