-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:m-cmp/mc-observability
- Loading branch information
Showing
4 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -295,7 +295,6 @@ services: | |
- internal_network | ||
- external_network | ||
volumes: | ||
- ../python/scheduler/airflow-home:/usr/local/airflow | ||
- /etc/localtime:/etc/localtime:ro | ||
command: > | ||
/bin/bash -c " | ||
|
@@ -312,12 +311,10 @@ services: | |
airflow users create --username admin --password admin --email [email protected] --firstname admin --lastname admin --role Admin | ||
# Import variables & Make connections | ||
# airflow variables import -a overwrite /usr/local/airflow/airflow_variables.json | ||
airflow variables set --description 'O11Y Manger API BASE URL' API_BASE_URL http://mc-o11y-manager:18080/api/o11y | ||
airflow connections add --conn-type http --conn-host mc-o11y-insight-service --conn-schema http --conn-port 9001 api_base_url | ||
airflow connections add --conn-type mysql --conn-host mariadb --conn-schema mc_observability --conn-login mc-agent --conn-password mc-agent --conn-port 3306 mcmp_db | ||
airflow connections add --conn-type http --conn-host mc-manager --conn-port 18080 o11y-manager | ||
airflow connections add --conn-type influxdb --conn-host mc-o11y-influx --conn-port 8086 --conn-schema downsampling --conn-login mc-agent --conn-password mc-agent influxdb | ||
# Reload & Run dags | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ pyarrow==16.1.0 | |
numpy==1.24.4 | ||
pandas==2.0.3 | ||
influxdb==5.3.2 | ||
WTForms==2.3.3 | ||
simple-dag-editor==0.1.1 |