Introducing Query Template Links
https://ui.honeycomb.io/quickstart/datasets/slow-app?query={"breakdowns":["endpoint"],"calculations":[{"column":"response_time_ms","op":"AVG"}]}
- Quick shortcuts generated via command-line tool or dynamic browser bookmarks
- Links to host- or shard-specific graphs from a configuration interface.
- Links to version-specific graphs generated by a build manager.
- Links to a specific time range generated by a monitoring tool, external to Honeycomb Triggers.
- Links to errors or events filtered for a specific employee, included in internal documentation or tools.
https://ui.honeycomb.io/quickstart/datasets/slow-app?query={"breakdowns":["endpoint"],"calculations":[{"column":"response_time_ms","op":"AVG"}]}
{ "breakdowns": [ "endpoint" ], "calculations": [ { "column": "response_time_ms", "op": "AVG" }, { "op": "COUNT" } ], "filters": [ { "column": "endpoint", "op": "starts-with", "value": "/products" } ], "orders": [ { "op": "COUNT", "order": "descending" } ], "limit": 10, }
echo https://ui.honeycomb.io/quickstart/datasets/slow-app?query=$(echo '{"breakdowns":["endpoint"],"calculations":[{"column":"response_time_ms","op":"AVG"},{"op":"COUNT"}],"filters":[{"column":"endpoint","op":"starts-with","value":"/products"}],"orders":[{"op":"COUNT","order":"descending"}],"limit":10}' | jq -c '.filters[1] = {"column":"hostname", "op": "=", "value": "app41"}') https://ui.honeycomb.io/quickstart/datasets/slow-app?query={"breakdowns":["endpoint"],"calculations":[{"column":"response_time_ms","op":"AVG"},{"op":"COUNT"}],"filters":[{"column":"endpoint","op":"starts-with","value":"/products"},{"column":"hostname","op":"=","value":"app41"}],"orders":[{"op":"COUNT","order":"descending"}],"limit":10}