I want to add my HTTPS target URL to Prometheus, an error like this appears:
"https://myDomain.dev" is not a valid hostname"
my domain can access and run using proxy pass Nginx with port 9100(basically I made a domain for node-exporter)
my configuration prometheus.yml
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
- job_name: 'domain-job'
static_configs:
- targets: ['https://myDomain.dev']
is there any more configuration to add?