Skip to content
New issue

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

always install latest version of prometheus #446

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/macrobench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
tags:
- prometheus
roles:
- { role: cloudalchemy.prometheus, when: stats_remote_db_host is defined }

Check failure on line 38 in ansible/macrobench.yml

View workflow job for this annotation

GitHub Actions / build

syntax-check[specific]

the role 'cloudalchemy.prometheus' was not found in /github/workspace/ansible/roles:/github/home/.cache/ansible-compat/21a323/roles:/github/home/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:/github/workspace/ansible

Check failure on line 38 in ansible/macrobench.yml

View workflow job for this annotation

GitHub Actions / build

syntax-check[specific]

the role 'cloudalchemy.prometheus' was not found in /github/workspace/ansible/roles:/github/home/.cache/ansible-compat/21a323/roles:/github/home/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:/github/workspace/ansible
vars:
vitess_cluster: 'main'
mysqld_targets: "{% set targets = [] -%}{% for host in groups['vttablet'] -%}{% for tablet in hostvars[host]['tablets'] -%}{{ targets.append( hostvars[host]['ansible_default_ipv4']['address']+':'+ (tablet.mysqld_exporter_port | default(9104) |string )) }}{% endfor -%}{% endfor -%}{{ targets }}"
Expand All @@ -43,7 +43,7 @@
gateway_targets: "{% set targets = [] -%}{% for host in groups['vtgate'] -%}{% for gateway in hostvars[host]['gateways'] -%}{{ targets.append( hostvars[host]['ansible_default_ipv4']['address']+':'+ (gateway.port | default(15001) | string )) }}{% endfor -%}{% endfor -%}{{ targets }}"
vtctld_targets: "{% set targets = [] -%}{% for host in groups['vtctld'] -%}{{ targets.append( hostvars[host]['ansible_default_ipv4']['address']+':'+ (vtctld_port | default(15000) | string )) }}{% endfor -%}{{ targets }}"
node_targets: "{% set targets= [] -%}{% for host in groups['all'] -%}{{ targets.append( hostvars[host]['ansible_default_ipv4']['address']+':9100' ) }}{% endfor -%}{{ targets }}"
prometheus_skip_install: true
prometheus_skip_install: false
prometheus_targets:
tablets:
- targets: '{{ tablet_targets }}'
Expand Down
Loading