asp.net core接入prometheus

安装prometheus和Grafana

参考之前的文章->安装prometheus和Grafana教程

源代码

dotnet源代码

新建.net core7 web项目

修改Program.cs

cs 复制代码
using Prometheus;

namespace PrometheusStu01;

public class Program
{
    public static void Main(string[] args)
    {
        var builder = WebApplication.CreateBuilder(args);
        builder.Services.AddControllers();
        
        var app = builder.Build();
        
        app.UseRouting();
        //http请求的中间件,收集http请求信息的
        app.UseHttpMetrics();
        //映射监控地址为  /metrics
        app.MapMetrics();
        app.MapControllers();
        app.Run();
    }
}

安装prometheus-net.AspNetCore 8.2.1

访问http://localhost:5122/metrics

修改prometheus.yml

yml 复制代码
scrape_configs:
  # 省略其他配置
  - job_name: "asp.net core web"
    static_configs:
      - targets: ["127.0.0.1:5122"]

重启





修改Program.cs

cs 复制代码
using Prometheus;

namespace PrometheusStu01;

public class Program
{
    public static void Main(string[] args)
    {
        var builder = WebApplication.CreateBuilder(args);
        builder.Services.AddControllers();
        
        var app = builder.Build();
        
        app.UseRouting();
        //http请求的中间件,收集http请求信息的
        app.UseMetricServer();
        //看这里>^.^<
        app.UseMetricServer();
        //映射监控地址为  /metrics
        app.MapMetrics();
        app.MapControllers();
        app.Run();
    }
}

内存占用情况

参考

https://www.cnblogs.com/savorboard/p/diagnostics.html
https://www.cnblogs.com/sheng-jie/p/how-much-you-know-about-diagnostic-in-dotnet.html
https://learn.microsoft.com/zh-cn/dotnet/core/diagnostics/metrics-collection

相关推荐
NiNg_1_23444 分钟前
SpringBoot整合SpringSecurity实现密码加密解密、登录认证退出功能
java·spring boot·后端
Chrikk2 小时前
Go-性能调优实战案例
开发语言·后端·golang
幼儿园老大*2 小时前
Go的环境搭建以及GoLand安装教程
开发语言·经验分享·后端·golang·go
canyuemanyue2 小时前
go语言连续监控事件并回调处理
开发语言·后端·golang
杜杜的man2 小时前
【go从零单排】go语言中的指针
开发语言·后端·golang
customer084 小时前
【开源免费】基于SpringBoot+Vue.JS周边产品销售网站(JAVA毕业设计)
java·vue.js·spring boot·后端·spring cloud·java-ee·开源
Yaml45 小时前
智能化健身房管理:Spring Boot与Vue的创新解决方案
前端·spring boot·后端·mysql·vue·健身房管理
小码编匠6 小时前
一款 C# 编写的神经网络计算图框架
后端·神经网络·c#