qyl.win-arm64 7.1.0

dotnet add package qyl.win-arm64 --version 7.1.0
                    
NuGet\Install-Package qyl.win-arm64 -Version 7.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="qyl.win-arm64" Version="7.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="qyl.win-arm64" Version="7.1.0" />
                    
Directory.Packages.props
<PackageReference Include="qyl.win-arm64" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add qyl.win-arm64 --version 7.1.0
                    
#r "nuget: qyl.win-arm64, 7.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package qyl.win-arm64@7.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=qyl.win-arm64&version=7.1.0
                    
Install as a Cake Addin
#tool nuget:?package=qyl.win-arm64&version=7.1.0
                    
Install as a Cake Tool

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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.1.0 55 9/17/2026
7.0.0 48 9/17/2026
6.0.0 109 9/12/2026
5.1.0 112 9/11/2026
5.0.2 129 9/11/2026
5.0.1 176 9/11/2026
5.0.0 111 9/7/2026
4.0.0 93 9/7/2026
3.0.0 108 9/3/2026
2.0.0 99 9/2/2026
1.1.8 135 8/1/2026
1.1.7 141 8/1/2026
1.1.5 117 7/31/2026
1.1.3 118 7/28/2026
1.1.2 119 7/28/2026
1.1.1 111 7/28/2026
1.1.0 112 7/28/2026
1.0.0 100 7/28/2026
0.1.0-beta.15 73 7/26/2026
0.1.0-beta.14 75 7/26/2026
Loading failed