We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug If you use MacOS you need to change the host.docker.internal instead of localhost in the config/prometeus.yaml
host.docker.internal
localhost
config/prometeus.yaml
This:
global: scrape_interval: 15s evaluation_interval: 15s scrape_configs: - job_name: "memgraph-metrics" static_configs: - targets: ["localhost:9115"]
Should be replaced with this:
global: scrape_interval: 15s evaluation_interval: 15s scrape_configs: - job_name: "memgraph-metrics" static_configs: - targets: ["host.docker.internal:9115"]
This should be implemented in the exporter code.
The text was updated successfully, but these errors were encountered:
gitbuda
No branches or pull requests
Describe the bug
If you use MacOS you need to change the
host.docker.internal
instead oflocalhost
in theconfig/prometeus.yaml
This:
Should be replaced with this:
This should be implemented in the exporter code.
The text was updated successfully, but these errors were encountered: