qyl 7.1.0

dotnet tool install --global qyl --version 7.1.0
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local qyl --version 7.1.0
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=qyl&version=7.1.0
                    
nuke :add-package qyl --version 7.1.0
                    

qyl

A local OpenTelemetry investigation stack for .NET. Run the collector on your own machine, instrument an application with one line, and read the traces, logs and metrics back through the embedded dashboard, the collector API, or MCP.

dotnet tool install --global qyl
qyl up

qyl up starts the collector and its embedded dashboard on 127.0.0.1:5100, diagnostics on :5200, OTLP ingestion on :4318 and :4317, and the runner API on :18889. Telemetry is stored under ~/.qyl/, never in the working directory. All five ports are checked up front, so a conflict fails the command instead of leaving a half-bound stack.

The tool is a NativeAOT binary per platform: the qyl package selects the matching qyl.<rid> package for linux, macOS and Windows on x64 and arm64.

Send telemetry to it

dotnet add package Qyl.Telemetry.Hosting
using Qyl;

builder.AddQyl();

AddQyl() activates the automatic instrumentation and exports traces, metrics and logs over OTLP, discovering the running collector on localhost. Environment variables alone export nothing; without the call there is no exporter to configure.

Read it back

  • The dashboard at http://127.0.0.1:5100.
  • The collector API under /api/v1/: traces, logs, and metrics aggregated server-side into buckets by name, attribute matchers, time range and step.
  • MCP, for an agent: qyl-mcp-server over stdio locally, or the hosted endpoint at https://mcp.qyl.at/mcp.

More

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
7.1.0 59 9/17/2026
7.0.0 56 9/17/2026
6.0.0 124 9/12/2026
5.1.0 125 9/11/2026
5.0.2 137 9/11/2026
5.0.1 185 9/11/2026
5.0.0 122 9/7/2026
4.0.0 112 9/7/2026
3.0.0 123 9/3/2026
2.0.0 115 9/2/2026
1.1.8 198 8/1/2026
1.1.7 184 8/1/2026
1.1.5 174 7/31/2026
1.1.3 171 7/28/2026
1.1.2 160 7/28/2026
1.1.1 168 7/28/2026
1.1.0 173 7/28/2026
1.0.0 168 7/28/2026
0.1.0-beta.15 126 7/26/2026
0.1.0-beta.14 132 7/26/2026
Loading failed