Lumigo.DotNET 1.0.51

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

Lumigo.io

CircleCI Nuget

Easily trace your .NET Lambda functions using the Lumigo platform 🚀

Supported Runtimes

  • .NET Core 3.1
  • .NET 6
  • .NET 8

Setup

Installation

Add the Lumigo tracer package via NuGet by running:

dotnet add package Lumigo.DotNET

Wrapping Your Lambda

Wrap your lambda function by implementing a supplier which contains your code:

Synchronous handler
using Lumigo.DotNET;
using Lumigo.DotNET.Instrumentation;
...
public class Function : LumigoRequestHandler
    {
        public Response FunctionHandler(string input, ILambdaContext context)
        {
            return Handle(input, context, () =>
            {
                //Your lambda code
                //return <result>; - For void functions remove the return statements
            });
        }
    }
Asynchronous handler
using Lumigo.DotNET;
using Lumigo.DotNET.Instrumentation;
...
public class Function : LumigoRequestHandler
    {
        public async Task<Response> FunctionHandler(string input, ILambdaContext context)
        {
            return await Handle(input, context, async () =>
            {
                //Your lambda code
                //return <result>; - For void functions remove the return statements
            });
        }
    }

Execution Tags

Execution tags allow you to dynamically add dimensions to your Lambda function invocations so that they can be identified, searched for, and filtered in Lumigo. They can be utilized to find specific invocations and create custom widgets, helping you simplify the complexity of monitoring distributed applications. The Quick Bytes video for Execution Tags video gives examples of use-cases for execution tags.

Adding an execution tag to a Lambda invocation is done via the LumigoRequestHandler.AddExecutionTag API:

using Amazon.Lambda.Core;

using Lumigo.DotNET;
using Lumigo.DotNET.Instrumentation;
using Lumigo.DotNET.Utilities.Extensions;

using System.Net.Http;

[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]

namespace HelloDotNet6 {

    public class Function : LumigoRequestHandler
    {
        public async Task<string> Handler(string input, ILambdaContext context)
        {
            return await Handle(input, context, async () =>
                {
                    this.AddExecutionTag("Key1", "Value1");

                    return "\"Hello world\"";
                }
            );
        }
    }
}

It is possible to set multiple execution tags for the same Lambda invocation, as well as multiple values for the same execution tag:

using Amazon.Lambda.Core;

using Lumigo.DotNET;
using Lumigo.DotNET.Instrumentation;
using Lumigo.DotNET.Utilities.Extensions;

using System.Net.Http;

[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]

namespace HelloDotNet6 {

    public class Function : LumigoRequestHandler
    {
        public async Task<string> Handler(string input, ILambdaContext context)
        {
            return await Handle(input, context, async () =>
                {
                    this.AddExecutionTag("Key1", "Value1");
                    this.AddExecutionTag("Key2", "Value2");
                    this.AddExecutionTag("Key2", "Value3");

                    return "\"Hello world\"";
                }
            );
        }
    }
}

Connect Your Lumigo Account

Add LUMIGO_TRACER_TOKEN environment variable to connect the tracing to your Lumigo account.

Track HTTP Requests

To track HTTP requests add UseLumigo to the HTTP client:

using Amazon.Lambda.Core;

using Lumigo.DotNET;
using Lumigo.DotNET.Instrumentation;
using Lumigo.DotNET.Utilities.Extensions;

using System.Net.Http;

[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]

namespace HelloDotNet6 {

    public class Function : LumigoRequestHandler
    {
        public async Task<string> Handler(string input, ILambdaContext context)
        {
            return await Handle(input, context, async () =>
                {
                    HttpResponseMessage response = await new HttpClient().UseLumigo().GetAsync("https://httpbin.org/status/200");
                    response.EnsureSuccessStatusCode();
                    return "\"Hello world\"";
                }
            );
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.51 36,580 9/9/2024
1.0.50 250 9/8/2024
1.0.49 382 9/3/2024
1.0.48 350 9/1/2024
1.0.47 12,631 6/4/2023
1.0.46 314 5/15/2023
1.0.45 19,746 1/18/2023
1.0.44 439 1/18/2023
1.0.43 514 12/15/2022
1.0.42 421 12/14/2022
1.0.41 448 12/13/2022
1.0.40 7,147 12/13/2022
1.0.39 427 12/8/2022
1.0.38 667 10/2/2022
1.0.37 527 10/2/2022
1.0.36 738 1/4/2022
1.0.35 466 12/22/2021
1.0.34 476 12/16/2021
1.0.33 483 12/16/2021
1.0.32 456 12/16/2021
1.0.31 581 12/14/2021
1.0.30 433 12/14/2021
1.0.29 467 12/13/2021
1.0.28 469 12/12/2021
1.0.27 478 12/1/2021
1.0.26 475 11/30/2021
1.0.25 470 11/30/2021
1.0.24 452 11/29/2021
1.0.23 463 11/29/2021
1.0.22 1,399 11/18/2021
1.0.21 473 11/18/2021
1.0.20 653 11/3/2021
1.0.19 528 11/3/2021
1.0.18 470 11/1/2021
1.0.17 591 10/31/2021
1.0.16 554 10/27/2021
1.0.15 487 10/27/2021
1.0.14 484 10/27/2021
1.0.13 525 10/25/2021
1.0.12 492 10/14/2021
1.0.11 468 10/13/2021
1.0.10 626 9/29/2021
1.0.2.2 579 9/14/2021
1.0.2.1 747 8/24/2021
1.0.2 493 8/24/2021
1.0.1.6 4,022 8/24/2021
1.0.1.5 482 8/24/2021
1.0.1.4 508 8/24/2021
1.0.1.3 506 8/24/2021
1.0.1.2 572 8/23/2021
1.0.1.1 510 8/23/2021
1.0.1 518 8/19/2021