prometheus / jmx_exporter

A process for exposing JMX Beans via HTTP for Prometheus consumption

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The http response header X-Content-Type-Options ,X-XSS-Protection,X-Frame-Options are missing

shavim opened this issue · comments

The contents of my agent configuration file are as follows:

httpServer:
authentication:
basic:
username: agent
password: 'agent'
lowercaseOutputLabelNames: true
lowercaseOutputName: true
rules:

  • pattern: "java.lang<type=Runtime><>(.*):(.+)"
    name: java_runtime_$1
    help: Java Runtime $1
    type: GAUGE
    action: ignore
    value: $2
    labels:
    app: "applicationname"

The JMX exporter is designed to be called from Prometheus. These headers are specific to browser access, which is not a common usage pattern.