thanks for reply
no, ping is not reachable i guess i have 2 options
1. deploy prometheus inside kubernetes cluster and use this conf in prometheus.yml
# Discover targets from Eureka and scrape metrics from them (Whitebox monitoring)
- job_name: eureka-discovery
scrape_interval: 15s
scrape_timeout: 15s
eureka_sd_configs:
- server: http://<eureka_ip:port>
refresh_interval: 30s
relabel_configs:
- source_labels: [__meta_eureka_app_name]
target_label: application
- source_labels: [__meta_eureka_app_instance_metadata_metrics_path]
target_label: __metrics_path__
- source_labels: [__address__]
target_label: instance
2. prometheus federation? not sure if it will work. im considering this option because we have 2 kubernetes cluster where we can centralize and unify all information , dashboards ...
i guess it will be more easy from and administrative point of view
thnks in advance