Prometheus is configured by a configuration file, which is found at `<your_project>/<your_environment>/prometheus/scrape_config.yml`
The following is an example of how your Prometheus configuration should look like:
```
scrape_configs:
- job_name: 'my-application'
metrics_path: '/metrics' # Unless your scrape endpoint requires otherwise the default is /metrics
static_configs:
- targets:
- 'host:port'
- 'http://yourmetricsendpointurl'
labels:
app_name: "my-application-name"
# basic_auth: incase your metrics endpoint uses authentication then uncomment these three lines and fill the fields username and password.
# username:
# password:
```
For more specific information please consult the official Prometheus documentation at: <https://prometheus.io/docs/prometheus/latest/configuration/configuration/>