我正在尝试将 prometheues 配置到 .Net Core 3.1 应用程序中。我的应用程序在 http2 协议上运行,并且我在 appsetting.json 中有以下配置。
"Kestrel": {
"EndpointDefaults": {
"Protocols": "Http2"
}
},
但是,我无法在 prometheus UI 中启动并运行该服务。(我查询“up”以检查服务器运行状态)。我在普罗米修斯日志中收到以下消息。
caller=tls_config.go:191 component=web msg="TLS is disabled." http2=false
如果我将协议设置为 Http1AndHttp2 ,我会在 prometheus 中启动并运行该服务。但是当仅支持 http2 协议时,我需要启动服务。
还请在我的 prometheus.yml 中找到我所做的配置
- job_name: "service"
# metrics_path defaults to '/metrics'
scheme: https
tls_config:
insecure_skip_verify: true
static_configs:
- targets:
- localhost:5001