-
Notifications
You must be signed in to change notification settings - Fork 15
feat(stack): add NetData to the stack, no auth yet #187
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
base: master
Are you sure you want to change the base?
Changes from all commits
ed76c34
10915bd
3a98628
af753c1
ac3c9c6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -630,6 +630,26 @@ services: | |
| # For backwards compatibility | ||
| TOPIC_LIST: "application_record_counts" | ||
|
|
||
| #---------------------------------------------------------------------------# | ||
| # NetData Host Monitoring # | ||
| #---------------------------------------------------------------------------# | ||
| netdata: | ||
| image: netdata/netdata | ||
| networks: | ||
| - api | ||
| hostname: netdata # set to fqdn of host | ||
| cap_add: | ||
| - SYS_PTRACE | ||
| security_opt: | ||
| - apparmor:unconfined | ||
| environment: | ||
| PGID: 999 | ||
| volumes: | ||
| - /proc:/host/proc:ro | ||
| - /sys:/host/sys:ro | ||
| - /var/run/docker.sock:/var/run/docker.sock:ro | ||
| - ./etc/netdata/netdata.conf:/etc/netdata/netdata.conf:ro | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If only a few options are updated, You can also use ...
command: -W set section option value -W set section2 option2 value
...Coz i see most of the |
||
|
|
||
| #---------------------------------------------------------------------------# | ||
| # Docker Monitoring # | ||
| #---------------------------------------------------------------------------# | ||
|
|
@@ -660,6 +680,7 @@ services: | |
| - dashboard | ||
| - managementportal-app | ||
| - kafka-manager | ||
| - netdata | ||
| ports: | ||
| - "80:80" | ||
| - "443:443" | ||
|
|
@@ -671,6 +692,7 @@ services: | |
| - "./etc/webserver/ip-access-control.conf:/etc/nginx/ip-access-control.conf:ro" | ||
| - "./etc/webserver/kafka-manager.htpasswd:/etc/nginx/kafka-manager.htpasswd:ro" | ||
| - "./etc/webserver/optional-services.conf:/etc/nginx/optional-services.conf" | ||
| - "./etc/webserver/netdata.htpasswd:/etc/nginx/netdata.htpasswd:ro" | ||
| # healthcheck hard to do, however, it is possible to monitor this externally | ||
| # with | ||
| # docker logs --since 2m radarcphadoopstack_webserver_1 | grep "connect() failed" | ||
|
|
||
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.