kezhenxu94
3 years ago
committed by
GitHub
17 changed files with 184 additions and 21 deletions
@ -0,0 +1,22 @@
|
||||
# |
||||
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||
# contributor license agreements. See the NOTICE file distributed with |
||||
# this work for additional information regarding copyright ownership. |
||||
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
# (the "License"); you may not use this file except in compliance with |
||||
# the License. You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
# |
||||
|
||||
apiVersion: 1 |
||||
datasources: |
||||
- name: Prometheus |
||||
type: prometheus |
||||
url: http://prom:9090 |
@ -0,0 +1,44 @@
|
||||
# |
||||
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||
# contributor license agreements. See the NOTICE file distributed with |
||||
# this work for additional information regarding copyright ownership. |
||||
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
# (the "License"); you may not use this file except in compliance with |
||||
# the License. You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
# |
||||
|
||||
version: '2.1' |
||||
|
||||
services: |
||||
prom: |
||||
image: prom/prometheus |
||||
networks: [ test ] |
||||
ports: |
||||
- "9090:9090" |
||||
volumes: |
||||
- ./prometheus.yml:/etc/prometheus/prometheus.yml |
||||
command: |
||||
- --config.file=/etc/prometheus/prometheus.yml |
||||
|
||||
grafana: |
||||
image: grafana/grafana |
||||
networks: [ test ] |
||||
ports: |
||||
- "3000:3000" |
||||
environment: |
||||
GF_AUTH_ANONYMOUS_ENABLED: true |
||||
volumes: |
||||
- ../grafana:/dashboards:ro |
||||
- ./datasources:/etc/grafana/provisioning/datasources:ro |
||||
- ./dashboards/provisioning.yaml:/etc/grafana/provisioning/dashboards/provisioning.yaml:ro |
||||
|
||||
networks: |
||||
test: |
@ -0,0 +1,31 @@
|
||||
# |
||||
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||
# contributor license agreements. See the NOTICE file distributed with |
||||
# this work for additional information regarding copyright ownership. |
||||
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
# (the "License"); you may not use this file except in compliance with |
||||
# the License. You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
# |
||||
|
||||
global: |
||||
scrape_interval: 15s |
||||
evaluation_interval: 15s |
||||
rule_files: |
||||
scrape_configs: |
||||
- job_name: 'DolphinScheduler' |
||||
metrics_path: '/actuator/prometheus' |
||||
scrape_interval: 5s |
||||
static_configs: |
||||
- targets: |
||||
- 'host.docker.internal:5679' # Change the address to the address of DolphinScheduler master server |
||||
- 'host.docker.internal:1235' # Change the address to the address of DolphinScheduler worker server |
||||
- 'host.docker.internal:50053' # Change the address to the address of DolphinScheduler alert server |
||||
- 'host.docker.internal:8080' # Change the address to the DolphinScheduler standalone server |
Loading…
Reference in new issue