Common Issues with Queries | Honeycomb

Common Issues with Queries

If you need to troubleshoot querying in Honeycomb, explore these solutions to common issues.

Tip
To ask questions and learn more, visit our Support Knowledge Base or join our Pollinators Community.

Query Builder 

Troubleshoot issues related to Query Builder.

You cannot VISUALIZE COUNT when using relational field prefixes 

When you are building a query that contains relational fields, Honeycomb does not allow joined fields in the VISUALIZE clause.

You can get the same effect by swapping the relational field prefix and the primary span (the one without a relational field prefix) in your query and including the primary span in the VISUALIZE clause instead.

For example, you want to aggregate data to find how many database queries exist on average for transaction X. You might want to write a query that looks at all of transaction X and calculates the SUM of the duration of the database query spans: VISUALIZE SUM (child.duration_ms) WHERE is_root GROUP BY name. Instead, try: VISUALIZE SUM(duration_ms) WHERE name=db.query GROUP BY root.name.

You receive an error when you run a query that contains relational fields against the API 

We do not support relational fields in the Honeycomb Query API. Use the Query Builder to run queries that contain relational fields.

You receive a notice that fields were removed from your query 

When you select a new dataset, if the fields in the existing query do not exist in the new dataset, Honeycomb notifies you about the field(s) that were removed from your query.

Screenshot illustrating the informational message

If the fields should be available, make sure the fields in the old dataset exist in the new dataset.

Query Builder takes a long time to produce results 

If you are running a query that contains relational fields, your query may take a long time to run. Add more filters to your WHERE clause or reduce your time window.

Query results are missing some traces 

If you are running a query that contains relational fields, some traces may be missing from your query results. Often, this is because you have many datasets within your environment and relational fields have a built-in joinable time range. When traces exceed the joinable time range for a relational field, they are excluded from the query results.

Query results do not show missing spans 

If you are running a query that contains relational fields, Honeycomb only returns spans that have a matching span to join with. For example, if you want to find traces that are missing their root span, you might query with a filter of root.name does-not-exist. This query will only return traces that do have a root span, but the root span is missing a name field. If the root span is missing entirely, nothing will appear in the results.

Query results are unexpected 

Sometimes queries may not return results that are quite what you expect.

If you are running a query that contains relational fields:

  • Make sure all column names defined in your dataset are distinct from the relational field prefixes. For example, you should avoid having a column defined in your dataset called root.name because this will collide with the root. relational field prefix, and Honeycomb will try to query the name column on the root span.

  • Make sure your instrumentation is not accidentally sending duplicate spans. When Honeycomb finds multiple matching spans for a given prefix, it will choose one to join and ignore the rest. If a trace has two root spans, only one will be joined for the root. prefix. If your supplied filters match multiple spans in the same trace and any fields are used in the GROUP BY clause, you may receive confusing results.

Sometimes unexpected query results can also result from Honeycomb’s approach to querying:

  • If you are running a query that contains multiple any. relational fields, Honeycomb applies them all to the same span. Additionally, any. finds the first match randomly; it is not ordered as it searches through a trace.

  • Because Query Builder’s main purpose is to produce accurate aggregate numbers, we implement a strict single-match join rather than using the approach taken by traditional relational databases. Each aggregate will only count each primary span (the one without a relational field prefix) in your query once and will only join it with a single other span for each of the available prefixes.

    To illustrate how this works, imagine you have a trace with ten leaf spans and another with just one. You want to get the sum of root span durations for traces that contain leaf spans, so you query with SUM(root.duration_ms) WHERE name=leaf. An SQL-style implementation would count the first trace’s root duration ten times. Suppressing duplicates to avoid this would immediately run into trouble if you wanted to add a GROUP BY clause. Instead, in Honeycomb, you would query with SUM(duration_ms) WHERE trace.parent_id does-not-exist AND any.name=leaf.

Query Assistant 

Troubleshoot issues related to Query Assistant.

Query Assistant does not produce a query 

We do our best to produce queries for a broad collection of input, but we cannot guarantee a query for all inputs.

We recommend that you rephrase your input, or try using a different input.

Query Assistant takes a long time to produce a query 

Query Assistant relies on OpenAI’s API, which usually responds in under 5 seconds. If you receive no response to your request after 10 seconds, compute resources for OpenAI’s API are likely unavailable for your request.

We recommend waiting for a few seconds and then trying your request again.

Query Assistant returns different answers when you give it the same input 

Because Large Language Models (LLMs) are nondeterministic, we cannot guarantee that you will always receive the same query fo the same input, even though we try to be consistent.

To ensure you have a consistent query to run, we recommend saving your query to a Board for later use.

Derived Columns 

Troubleshoot issues related to Derived Columns.

A Derived Column displays a null or unexpected value 

Null or unexpected values in Derived Columns are usually related to:

  • Mismatched field types. Many functions are sensitive to the input’s value type.

    Review the field types in the schema to ensure they align with the inputs of the functions. If necessary, coerce the fields with a cast operator function.

  • Name collisions. If data from an event sent to Honeycomb uses the same name as a Derived Column, the Derived Column takes priority over the data sent to Honeycomb.

    We recommend that you rename the field in your instrumentation or rename the Derived Column.

When a name collision occurs for a Derived Column, it may cause confusing behavior in Honeycomb. For example, links that use a duplicate field name may point to the wrong location.

Honeycomb requires that Derived Columns names be unique across their containing Environment. Derived Column names should not match the name of any other Derived Column or any other field in any Dataset contained within the Environment.

When you create a Derived Column in Honeycomb, we try to check that you have entered a display name that is unique to your Environment (although duplicate names can still occur). If the Derived Column exists before Honeycomb receives a field name with the same name, we allow both the pre-existing Derived Column and the new field with the duplicate name to exist, and we display a warning message in the Data Settings section of the UI under the Define Schema view.

To resolve this issue, check that your Derived Column names are unique and not already in use by a field in any Dataset in your Environment. If you find a duplicate name, we recommend renaming the Derived Column as soon as possible, making sure that the new name is unique to your Environment. If you unable to change the name of the Derived Column, then change your instrumentation to rename the field instead.

If you rename the field in your instrumentation, you must also delete it in Honeycomb. To do this, use the Column Deletion API. This method will prevent the column from being queried and remove the data in question from new query results, but it will not remove permalinks to existing queries that may contain this data. If you are a Pro/Enterprise user, support can help you with deletion. To request help, visit Honeycomb Support to create a ticket for our support team, or email support@honeycomb.io.