我已经在我的linux节点上安装了prometheus。我在 Windows 服务器上有一个 go 应用程序,用于从应用导出指标。Windows 节点的指标路径位于 /app/metrics。请注意,指标的输出采用 json 格式。
这是我的prometheus.yml:
scrape_configs:
- job_name: 'prometheus_metrics'
static_configs:
- targets: ['localhost:9090']
- job_name: 'node_exporter_metrics'
static_configs:
- targets: ['localhost:9100']
- job_name: 'app-qa-1'
metrics_path: /app/metrics
scheme: http
static_configs:
- targets: ['app-qa-1:1701']
当我查询指标并通过舞会工具时,我得到:
error while linting: text format parsing error in line 1: invalid metric name
在我的目标页面上,我的Windows节点有这个错误:
"INVALID" is not a valid start token
这就是我的Windows节点中的指标的样子:
"api.engine.gateway.50-percentile": 0,
"api.engine.gateway.75-percentile": 0,
"api.engine.gateway.95-percentile": 0,
"api.engine.gateway.99-percentile": 0,
"api.engine.gateway.999-percentile": 0,
"api.engine.gateway.count": 0,
"api.engine.gateway.fifteen-minute": 0,
"api.engine.gateway.five-minute": 0,
LEATH
相关分类