- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试做一件相当简单的事情,但不知何故,在我今天阅读了所有 Microsoft 文档和 SO 帖子之后,我遗漏了一些东西。
我想为我的 Azure Functions 进行一些适当的日志记录,在整个互联网上,最佳实践看起来像是 Application Insights,但我一直在努力让我的 AI 记录我的自定义日志。
这是我的测试函数,如果需要我也可以创建一个测试项目。
主机.json
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": false
},
"logLevel": {
"default": "Information",
"Minerva.Clocking": "Information"
}
}
}
}
启动.cs
public class Startup : FunctionsStartup
{
public override void Configure(IFunctionsHostBuilder builder)
{
ServiceProvider serviceProvider = builder.Services.BuildServiceProvider();
Configurations.StaticConfig = serviceProvider.GetService<IConfiguration>();
ConfigureServices(builder.Services);
}
private static void ConfigureServices(IServiceCollection services)
{
services.AddTransient<IEmailService, EmailService>();
services.AddHttpClient();
}
}
我的测试功能
namespace Minerva.Clocking.Endpoints
{
public class LoggingTestFunction
{
private readonly IEmailService m_EmailService;
public LoggingTestFunction(IEmailService emailService)
{
m_EmailService = emailService;
}
[FunctionName("LoggingTestFunction")]
public async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log)
{
log.LogInformation($"C# HTTP trigger function processed a request. Execution time: {DateTime.Now}");
log.LogInformation("Info from function");
log.LogWarning("Warning from function");
log.LogError("Error from function");
m_EmailService.LogSimpleMessage();
m_EmailService.Foo();
string name = req.Query["name"];
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
dynamic data = JsonConvert.DeserializeObject(requestBody);
name = name ?? data?.name;
string responseMessage = string.IsNullOrEmpty(name)
? "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response."
: $"Hello, {name}. This HTTP triggered function executed successfully.";
return new OkObjectResult(responseMessage);
}
}
}
我的电子邮件服务
namespace Minerva.Clocking.Services
{
public class EmailService : IEmailService
{
private readonly HttpClient m_httpClient;
private readonly ILogger<EmailService> m_EmailLogger;
public EmailService(IHttpClientFactory httpClientFactory, ILogger<EmailService> logger)
{
m_httpClient = httpClientFactory.CreateClient();
m_EmailLogger = logger;
}
public void LogSimpleMessage()
{
m_EmailLogger.LogInformation("This is a information to be seen in azure");
m_EmailLogger.LogError("This is a error to be seen in azure");
m_EmailLogger.LogWarning("This is a warning to be seen in azure");
}
public void Foo()
{
m_EmailLogger.LogInformation("Foo");
m_Telemetry.TrackTrace("BarLog", Microsoft.ApplicationInsights.DataContracts.SeverityLevel.Information);
m_Telemetry.TrackEvent("BarEvent");
}
}
}
每当我在 azure 中查看 AI 日志时,我看到的都是函数本身内记录的消息,而我的 EmailService 中没有任何内容
很可能我遗漏了一些东西,但我不确定是什么,有人可以给我指出一个文档或其他东西,可以让我在 AI 中记录我的 Azure Functions 内的所有内容吗?
我还希望能够在控制台中查看日志,但我在互联网上找不到任何相关信息(我知道我是一个糟糕的搜索者)。
谢谢
编辑:更新了代码以包含 ClientTelemetry。我可以在 Azure 中看到来自遥测的日志,但仍然没有来自 ILogger 的日志。
最佳答案
我相信问题出在您的 host.json 中。请尝试以下操作:
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true
},
"logLevel": {
"Minerva.Clocking.Endpoints.LoggingTestFunction": "Information"
}
}
}
}
来源:https://github.com/jeffhollan/functions-csharp-custom-ilogger和 https://github.com/Azure/Azure-Functions/issues/1484#issuecomment-594914999
关于c# - 使用 DI 在 Azure Function 中使用 ILogger,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68458845/
在我的 ZF2 应用程序中,我使用 Zend\Di\Di创建我所有的类实例。使用 Zend\Di\Definition\CompilerDefinition 扫描 DI 定义并使用 APC 缓存。这避
为什么人们使用 Spring DI 而不是 JSR330 DI?我看到许多项目仍在高速推进,而 spring DI 却忽视了 JSR330 规范。许多人甚至不知道它的存在。是不是它的营销力度不够,而
我正在使用 spring 制作一个 Web 应用程序,在 web.xml 中我定义了 context-param 来查找 application-context.xml 文件,该文件扫描除 Contr
给定的是 Intel 8086 处理器的汇编程序,它将数组中的数字相加: .model small .stack 100h .data array dw 1,2,3,1,2 sum
.NET 和 Java 都有大量可用的 DI/IoC 容器,并且每个 有许多我发现在不同方面非常有用的模式 与他们合作。我现在正处于我想做等价的地步 JavaScript 中的东西。由于 JavaSc
我有一个使用 Spring 进行 DI 的 Swing 项目,现在我正在尝试迁移到 Eclipse 4 和 OSGi. 使用 Spring 的配置文件,用户可以注释/取消注释 bean,以添加/删除功
Spring 有两种两种类型的 DI:setter DI 和构造 DI。 基于构造函数的 DI 修复了需要注入(inject)依赖项的顺序。基于 Setter 的 DI 不提供此功能。 基于 Sett
TL;博士 在 JCenter 访问 Kodein 核心包是未经授权的。 详情 我们正在使用 Kodein 进行依赖注入(inject),但是当 Gradle 尝试下载任何 org.kodein.*
我已经使用 NInject 一段时间了,现在我将在 Asp.net Core 中开始一个项目。好像NInject cannot be used with Asp.net Core .所以现在我的问题是
目前缺乏有关 DI 主题的文档 - Dependency Injection 。与现有解决方案(Ninject、Autofac、StructureMap)相比,使用内置 DI 有何优点/缺点?默认依赖
我想做的是将两个 Actor (木乃伊 Actor 和爸爸 Actor )传递给小 Actor 。由于使用 actor 引用而不是 actor 是最佳实践,因此我使用 IActorRef 将木乃伊 a
我是 MQL4 的菜鸟,我正在编写我的第一个 EA。 我的目标是获取 ADX 指标的 +DI 和 -DI 的变量。 我使用了 iADX() 函数,如下所示: double a; int OnInit(
我有一个环境,有 4 个相同的设备,我必须连接到这些设备并通过 TCP 连接请求一些参数(每个设备都有其 IP 地址)。 我为需要一些参数的单个设备实现了一个类(如 IP 地址、端口、轮询间隔等...
我正在尝试将 DI(使用 Autofac)引入现有的 Windows 窗体应用程序。 此应用程序有一个基本的插件架构,其中每个插件都显示自己的表单。在启动时,应用程序会扫描已注册的程序集以查找实现 I
我有一个基于 .NET Core API Gateway 的项目。我想引入依赖注入(inject)(di),因为我需要引入的很多包都是基于这种模式的,所以需要使用 IServiceCollection
我正在尝试使用蛋糕模式进行依赖注入(inject),如下所示: trait FooComponent { val foo: Foo trait Foo; } trait AlsoNeedsFo
我即将创建一个桌面应用程序(使用 .NET windows 窗体) 本质上,我想创建一个 n 层应用程序,但我也想要层之间的松散耦合。但是,我不太确定这是否是 Windows 窗体的好方法 现在我只是
我想在我的一个项目中使用依赖注入(inject) (DI)。我写了一个基本的 DI 库,其工作原理如下 let di = new DI(); di.register('screen', Screen)
在: module.directive 'name', -> (scope, element, attr) -> # Whatever implemenation 链接函数的 scope、
我使用这个库https://github.com/smsapi/smsapi-php-client从站点发送短信。但是当我尝试处理服务中的基类时遇到了问题。所以我的问题是有没有办法用参数调用静态方法?
我是一名优秀的程序员,十分优秀!