feat(api): changes

This commit is contained in:
Taha Yassine Kraiem 2022-04-19 19:10:56 +02:00
parent 0bc8a08ebc
commit 1642c1ffd1
9 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
import json
import schemas
from chalicelib.core import custom_metrics, dashboard
from chalicelib.core import custom_metrics, metrics
from chalicelib.utils import helper
from chalicelib.utils import pg_client
from chalicelib.utils.TimeUTC import TimeUTC

View file

@ -1,5 +1,5 @@
import schemas
from chalicelib.core.dashboard import __get_constraints, __get_constraint_values
from chalicelib.core.metrics import __get_constraints, __get_constraint_values
from chalicelib.utils import helper, dev
from chalicelib.utils import pg_client
from chalicelib.utils.TimeUTC import TimeUTC

View file

@ -1,7 +1,7 @@
from fastapi import Body
import schemas
from chalicelib.core import dashboard
from chalicelib.core import metrics
from chalicelib.core import metadata
from chalicelib.utils import helper
from routers.base import get_routers

View file

@ -1,7 +1,7 @@
from fastapi import Body, Depends
import schemas
from chalicelib.core import dashboards2, custom_metrics
from chalicelib.core import dashboards, custom_metrics
from or_dependencies import OR_context
from routers.base import get_routers

2
ee/api/.gitignore vendored
View file

@ -260,5 +260,5 @@ Pipfile
/build_alerts.sh
/routers/subs/metrics.py
/routers/subs/v1_api.py
/chalicelib/core/dashboards2.py
/chalicelib/core/dashboards.py
entrypoint.sh

View file

@ -1,7 +1,7 @@
import json
import schemas
from chalicelib.core import dashboard
from chalicelib.core import metrics
from chalicelib.core import sourcemaps, sessions
from chalicelib.utils import ch_client, metrics_helper
from chalicelib.utils import pg_client, helper

View file

@ -1,6 +1,6 @@
import schemas
from chalicelib.core.dashboard import __get_basic_constraints, __get_meta_constraint
from chalicelib.core.dashboard import __get_constraint_values, __complete_missing_steps
from chalicelib.core.metrics import __get_basic_constraints, __get_meta_constraint
from chalicelib.core.metrics import __get_constraint_values, __complete_missing_steps
from chalicelib.utils import ch_client
from chalicelib.utils import helper, dev
from chalicelib.utils.TimeUTC import TimeUTC