DI с ILogger в Azure webJob - PullRequest
       86

DI с ILogger в Azure webJob

0 голосов
/ 20 сентября 2018

У меня есть проект лазурного webjob, созданный в .net framework 4.6.я пытаюсь реализовать внедрение зависимостей с помощью ILogger и записать информацию в приложениях.

class Program
{
    private static IConfigurationRoot configuration;

    // Please set the following connection strings in app.config for this WebJob to run:
    // AzureWebJobsDashboard and AzureWebJobsStorage
    public static void Main()
    {
        var config = new JobHostConfiguration();

        if (config.IsDevelopment)
        {
            config.UseDevelopmentSettings();
        }
        var builder = new ConfigurationBuilder()
                      .SetBasePath(Directory.GetCurrentDirectory())
                      .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
                      .AddEnvironmentVariables();

        IServiceCollection serviceCollection = new ServiceCollection();
        ConfigureServices(serviceCollection);
        //config.JobActivator = new CustomJobActivator(serviceCollection.BuildServiceProvider());
        config.LoggerFactory = new LoggerFactory()
           .AddApplicationInsights(configuration.GetSection("ApplicationInsights")["InstrumentationKey"], null);
        config.UseTimers();
        var host = new JobHost(config);
        // The following code ensures that the WebJob will be running continuously
        host.RunAndBlock();
    }

    private static void ConfigureServices(IServiceCollection serviceCollection)
    {
        serviceCollection.AddTransient<Functions, Functions>();
        serviceCollection.AddLogging();
    }
}

appSettings.json

{   
    "ApplicationInsights": {
        "InstrumentationKey": "8028437c-888-666-444-2cf3777106a8"
    }
}

Functions.cs

public class Functions
{
    private readonly ILogger<Functions> _logger;

    public Functions(ILogger<Functions> logger)
    {
        _logger = logger;
    }

    public void ProcessTimerMessage([TimerTrigger("0 */5 * * * *")]TimerInfo timerInfo, TextWriter log)
    {
        //LOG THIS IN APP INSIGHTS
        _logger.LogError("Error");
    }
}

Я также попытался добавить приведенный ниже код в метод ConfigureServices.Но все же не повезло.

var telemetryClient = new TelemetryClient(new TelemetryConfiguration()
{
       InstrumentationKey = "<< Instrumentation Key >>"
});
serviceCollection.AddSingleton(x => telemetryClient).AddLogging();

В журналах приложений регистрируются только журналы трассировки, тогда как журналы объектов регистратора не отображаются.Пожалуйста, помогите

1 Ответ

0 голосов
/ 21 сентября 2018

Я создал проект веб-задания из шаблона веб-задания, .net framework 4.6.1, шаги, как показано ниже:

шаг 1: создать проект enter image description here

шаг 2: установите следующий пакет:

Install-Package Microsoft.Azure.WebJobs -version 2.2.0
Install-Package Microsoft.Extensions.Logging -version 2.0.1
Install-Package Microsoft.Extensions.Logging.Console -version 2.0.1
Install-Package Microsoft.Azure.WebJobs.Logging.ApplicationInsights -version 2.2.0
Install-Package System.Configuration.ConfigurationManager -version 4.4.1

шаг 3: в app.config добавьте следующее: enter image description here

шаг 4: моя программа.cs:

  using Microsoft.Azure.WebJobs;
  using Microsoft.Extensions.Logging;
  using System.Configuration;

    namespace WebJob7
    {

        class Program
        {

            static void Main()
            {
                var config = new JobHostConfiguration();
                var instrumentationKey =
                   ConfigurationManager.AppSettings["APPINSIGHTS_INSTRUMENTATIONKEY"];

                config.DashboardConnectionString = "";

                config.LoggerFactory = new LoggerFactory()
                    .AddApplicationInsights(instrumentationKey, null)
                    .AddConsole();

                if (config.IsDevelopment)
                {
                    config.UseDevelopmentSettings();
                }

                var host = new JobHost(config);

                host.RunAndBlock();
            }
        }
    }

шаг 5: мой код в Function.cs:

using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;

namespace WebJob7
{
    public class Functions
    {
        // This function will get triggered/executed when a new message is written 
        // on an Azure Queue called queue.
        public static void ProcessQueueMessage([QueueTrigger("queue")] string message, ILogger logger)
        {
        //you can directly use this line of code.
        //logger.LogError(new Exception(),"it is a test error...");

        //or use the following code
        try
        {
            int i = int.Parse("123er");
        }
        catch(Exception ex)
        {
            logger.LogError(ex,"it's a exception here 0927..........");
        }

        }
    }
}

После выполнения журналы отображаются на портале Azure -> перейти как исключение: enter image description here

Нажмите, чтобы увидеть подробности: enter image description here

...