Lumigo.DotNET 1.0.2.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Lumigo.DotNET --version 1.0.2.2                
NuGet\Install-Package Lumigo.DotNET -Version 1.0.2.2                
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.2.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Lumigo.DotNET --version 1.0.2.2                
#r "nuget: Lumigo.DotNET, 1.0.2.2"                
#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.
// Install Lumigo.DotNET as a Cake Addin
#addin nuget:?package=Lumigo.DotNET&version=1.0.2.2

// Install Lumigo.DotNET as a Cake Tool
#tool nuget:?package=Lumigo.DotNET&version=1.0.2.2                

Lumigo .NET Tracer

Nuget GitHub GitHub top language

Supported Runtimes: .NET Core 2.1, .NET Core 3.1

This readme explains how to deploy .NET Test function that impletemets "Lumigo .NET Tracer"

Adding NuGet Package

    Install-Package Lumigo.DotNET

Wrapping your Lambda

  • Wrap your lambda function by implementing a supplier which contains your code
public class Function : LumigoRequestHandler
    {
        public Function()
        {
            LumigoBootstrap.Bootstrap();
        }

        public async Task<string> FunctionHandler(string input, ILambdaContext context)
        {
            return await Handle(input, context, async () =>
            {
                //Your lambda code
                //return <result of type OUTPUT>;
            });
        }
    }
  • For handler return void use:
public class Function : LumigoRequestHandler
    {
        public Function()
        {
            LumigoBootstrap.Bootstrap();
        }

        public async Task FunctionHandler(string input, ILambdaContext context)
        {
            return await Handle(input, context, async () =>
            {
                //Your lambda code
            });
        }
    }

Configuration

Environment variables

    Adding `LUMIGO_TRACER_TOKEN` environment variables

Building and Deployment using the Serverless framework

  • Make sure you have dotnet installed on your machine by running brew install --cask dotnet.
  • Create a .Net project template by running sls create -t aws-csharp -n hello-world .. This command will create a .net template for a service named hello-world in current directory.
  • After creation run ./build.sh in the created template directory. The command will build th zip artifact for the Lambda.
  • Run sls deploy to deploy your lambda Pay attention Each time you are changing the code you need to run ./buid.sh and then sls deploy, incase you are only changing the serverless.yml run sls deploy
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. 
.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 3,549 9/9/2024
1.0.50 94 9/8/2024
1.0.49 203 9/3/2024
1.0.48 163 9/1/2024
1.0.47 7,886 6/4/2023
1.0.46 173 5/15/2023
1.0.45 13,681 1/18/2023
1.0.44 284 1/18/2023
1.0.43 367 12/15/2022
1.0.42 288 12/14/2022
1.0.41 280 12/13/2022
1.0.40 5,830 12/13/2022
1.0.39 300 12/8/2022
1.0.38 475 10/2/2022
1.0.37 374 10/2/2022
1.0.36 537 1/4/2022
1.0.35 301 12/22/2021
1.0.34 282 12/16/2021
1.0.33 296 12/16/2021
1.0.32 267 12/16/2021
1.0.31 402 12/14/2021
1.0.30 263 12/14/2021
1.0.29 285 12/13/2021
1.0.28 277 12/12/2021
1.0.27 287 12/1/2021
1.0.26 284 11/30/2021
1.0.25 289 11/30/2021
1.0.24 267 11/29/2021
1.0.23 280 11/29/2021
1.0.22 1,220 11/18/2021
1.0.21 291 11/18/2021
1.0.20 471 11/3/2021
1.0.19 330 11/3/2021
1.0.18 305 11/1/2021
1.0.17 398 10/31/2021
1.0.16 367 10/27/2021
1.0.15 308 10/27/2021
1.0.14 323 10/27/2021
1.0.13 336 10/25/2021
1.0.12 302 10/14/2021
1.0.11 308 10/13/2021
1.0.10 448 9/29/2021
1.0.2.2 388 9/14/2021
1.0.2.1 556 8/24/2021
1.0.2 299 8/24/2021
1.0.1.6 3,491 8/24/2021
1.0.1.5 306 8/24/2021
1.0.1.4 324 8/24/2021
1.0.1.3 316 8/24/2021
1.0.1.2 393 8/23/2021
1.0.1.1 330 8/23/2021
1.0.1 331 8/19/2021