Raycynix.Extensions.Metrics.Abstractions 3.0.0

dotnet add package Raycynix.Extensions.Metrics.Abstractions --version 3.0.0
                    
NuGet\Install-Package Raycynix.Extensions.Metrics.Abstractions -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="Raycynix.Extensions.Metrics.Abstractions" Version="3.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Raycynix.Extensions.Metrics.Abstractions" Version="3.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Raycynix.Extensions.Metrics.Abstractions" />
                    
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 Raycynix.Extensions.Metrics.Abstractions --version 3.0.0
                    
#r "nuget: Raycynix.Extensions.Metrics.Abstractions, 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 Raycynix.Extensions.Metrics.Abstractions@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=Raycynix.Extensions.Metrics.Abstractions&version=3.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Raycynix.Extensions.Metrics.Abstractions&version=3.0.0
                    
Install as a Cake Tool

Raycynix.Extensions.Metrics.Abstractions

Version 3.0.0 contains shared conventions and helpers for provider-neutral Raycynix metrics.

API

  • RaycynixMetrics.MeterName — the shared meter name Raycynix.Extensions
  • RaycynixMetrics.MeterVersion — the instrumentation release version
  • RaycynixMetrics.CreateMeter(IMeterFactory) — creates a factory-managed meter
  • HistogramExtensions.MeasureDuration(...) — records an elapsed duration in seconds when disposed
using System.Diagnostics.Metrics;
using Raycynix.Extensions.Metrics.Abstractions;

public sealed class OrderMetrics
{
    private readonly Counter<long> _processed;

    public OrderMetrics(IMeterFactory meterFactory)
    {
        var meter = RaycynixMetrics.CreateMeter(meterFactory);
        _processed = meter.CreateCounter<long>(
            "raycynix.orders.processed",
            unit: "{order}");
    }

    public void Record(string status) => _processed.Add(
        1,
        new KeyValuePair<string, object?>("raycynix.order.status", status));
}

The 2.x custom metrics interfaces were removed. Consumers now depend directly on System.Diagnostics.Metrics, allowing any compatible listener or OpenTelemetry exporter to collect the same instruments.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Raycynix.Extensions.Metrics.Abstractions:

Package Downloads
Raycynix.Extensions.Messaging

Transport-agnostic messaging, dispatch, direct requests, standard .NET metrics instrumentation, scoped envelopes, and outbox/inbox reliability foundations.

Raycynix.Extensions.Metrics

Standard System.Diagnostics.Metrics and IMeterFactory registration for provider-neutral Raycynix application instrumentation.

Raycynix.Extensions.Database.Observability

Database observability integration for recording initialization, creation, migration, and model-building through tracing and standard .NET metrics.

GitHub repositories

This package is not used by any popular GitHub repositories.

v3.0.0 removes the custom metrics service and instrument interfaces in favor of System.Diagnostics.Metrics, and provides the shared Raycynix meter identity and duration recording helper.