qyl.linux-arm64 3.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package qyl.linux-arm64 --version 3.0.0
                    
NuGet\Install-Package qyl.linux-arm64 -Version 3.0.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.linux-arm64" Version="3.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="qyl.linux-arm64" Version="3.0.0" />
                    
Directory.Packages.props
<PackageReference Include="qyl.linux-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.linux-arm64 --version 3.0.0
                    
#r "nuget: qyl.linux-arm64, 3.0.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.linux-arm64@3.0.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.linux-arm64&version=3.0.0
                    
Install as a Cake Addin
#tool nuget:?package=qyl.linux-arm64&version=3.0.0
                    
Install as a Cake Tool

qyl

OpenSSF Scorecard OpenSSF Criticality

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

The latest public qyl release is 2.0.0, which is also the main branch source line. The site and documentation are at qyl.at. The other two hosted surfaces are endpoints rather than pages: https://api.qyl.at serves the collector read API and OTLP ingest under their route prefixes, and https://mcp.qyl.at/mcp is the MCP endpoint, which answers 401 to anything without an OAuth 2.1 bearer token.

Run the stack

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.

Send telemetry from an application

dotnet add package Qyl.Telemetry.Hosting
using Qyl;

builder.AddQyl();

AddQyl() is what wires the pipeline: it activates automatic instrumentation, registers the qyl activity sources and meters, and exports traces, metrics, and logs over OTLP — to OTEL_EXPORTER_OTLP_ENDPOINT when set, otherwise QYL_ENDPOINT, otherwise a collector discovered on localhost. Environment variables on their own export nothing; without the call there is no exporter to configure.

qyl stores and serves traces, logs, and metrics. Metric points land in a series index plus a point table, and are queried by metric name, attribute matchers, a time range, and a step — aggregated server-side into buckets, never returned as raw points. OTLP's summary point is the one shape qyl declines: its pre-computed quantiles cannot be re-aggregated over a window or merged across series, so it is reported back as a partial_success naming the instrument rather than stored unqueryable.

Artifacts and release lines

qyl is one dependency graph with several independently released packages. Each line carries its own version — the 1.0.0 launch is an event, not a number every package adopts. The versions below are the source and dependency lines main builds against, and each is published. Package registries are authoritative for public availability.

Package main / release target Repository
qyl (dotnet tool) 3.0.0 this one
Qyl.Telemetry.Hosting, Qyl.Telemetry.AutoInstrumentation* 11.0.0 Qyl.OpenTelemetry.AutoInstrumentation
Qyl.Telemetry.SemanticConventions* 8.0.0 Qyl.OpenTelemetry.SemanticConventions
Qyl.Api.Contracts, @ancplua/qyl-api-schema 9.0.0 qyl-api-schema
qyl-mcp-server 3.0.0 qyl.mcp

Qyl.Sdk and the Qyl.OpenTelemetry.* package IDs are retired. They stop at their last published versions and receive no further releases; the table above lists their successors.

Architecture

ARCHITECTURE-1.0.0.md is the normative document: component taxonomy, boundary law, the dependency-edge list, the generated loops, and the gates. docs/component-taxonomy.html is a view of the same content. On conflict the Markdown wins.

One graph, one truth, many artifacts.

Build and verify

Requires the .NET SDK pinned in global.json.

dotnet run --project eng/build/build.csproj -- Ci

Ci builds and tests the backend, builds and tests the dashboard, runs its Release-product Playwright smoke, verifies the generated contract package, and checks the collector semantic catalog.

License

MIT

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 56 9/17/2026
7.0.0 43 9/17/2026
6.0.0 109 9/12/2026
5.1.0 116 9/11/2026
5.0.2 135 9/11/2026
5.0.1 182 9/11/2026
5.0.0 114 9/7/2026
4.0.0 101 9/7/2026
3.0.0 120 9/3/2026
2.0.0 98 9/2/2026
1.1.8 148 8/1/2026
1.1.7 135 8/1/2026
1.1.5 129 7/31/2026
1.1.3 117 7/28/2026
1.1.2 108 7/28/2026
1.1.1 126 7/28/2026
1.1.0 122 7/28/2026
1.0.0 115 7/28/2026
0.1.0-beta.15 84 7/26/2026
0.1.0-beta.14 82 7/26/2026
Loading failed