Skip to content

Commit

Permalink
Merge pull request #207 from coroot/docker_compose_name
Browse files Browse the repository at this point in the history
deploy: set Docker Compose project name
  • Loading branch information
apetruhin committed Apr 29, 2024
2 parents dc67911 + dee00eb commit 36f1f2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion deploy/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
version: '3.8'

name: coroot

volumes:
prometheus_data: {}
coroot_data: {}
Expand All @@ -19,7 +21,7 @@ services:
- clickhouse
- prometheus

coroot-node-agent:
node-agent:
image: ghcr.io/coroot/coroot-node-agent
privileged: true
pid: "host"
Expand Down
6 changes: 5 additions & 1 deletion front/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@
<v-btn v-if="status.prometheus.action === 'wait'" outlined @click="refresh">refresh</v-btn>
</template>
<template v-else-if="status.node_agent.status !== 'ok'">
<div class="flex-grow-1 mb-3 mb-sm-0">No metrics found. Looks like you didn't install <b>node-agent</b>.</div>
<div class="flex-grow-1 mb-3 mb-sm-0">
No metrics found. If you just installed Coroot and node-agent, please wait a couple minutes for it to collect data.
<br />
If you haven't installed node-agent, please do so now.
</div>
<AgentInstallation outlined>Install node-agent</AgentInstallation>
</template>
<template v-else-if="status.kube_state_metrics && status.kube_state_metrics.status !== 'ok'">
Expand Down

0 comments on commit 36f1f2e

Please sign in to comment.