fix(ui): fix xray tooltips (#711)

* fix(ui): fix xray tooltips

* fix(ui): rm console

* feat(chalice): fixed experimental conflict

* chore(build): api build script is exiting the flow. so making it as last
step.

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
Co-authored-by: Taha Yassine Kraiem <tahayk2@gmail.com>
Co-authored-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
Delirium 2022-09-02 15:04:06 +01:00 committed by GitHub
parent 7c2704e034
commit 187c12bfb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 6 deletions

View file

@ -34,5 +34,11 @@ if config("EXP_ALERTS", cast=bool, default=False):
else:
from . import alerts_processor as alerts_processor
if config("EXP_FUNNELS", cast=bool, default=False):
print(">>> Using experimental funnels")
if not config("EXP_SESSIONS_SEARCH", cast=bool, default=False):
from . import sessions as sessions_legacy
from . import significance_exp as significance
from . import significance_exp as significance
else:
from . import significance as significance

View file

@ -65,4 +65,5 @@ EXP_AUTOCOMPLETE=false
EXP_ERRORS_SEARCH=false
EXP_METRICS=false
EXP_7D_MV=false
EXP_ALERTS=false
EXP_ALERTS=false
EXP_FUNNELS=false

View file

@ -38,7 +38,7 @@ const TimelinePointer = React.memo((props: Props) => {
<div className="">
<b>{item.success ? 'Slow resource: ' : 'Missing resource:'}</b>
<br />
{item.name}
{item.name.length > 200 ? (item.name.slice(0, 100) + ' ... ' + item.name.slice(-50)) : item.name}
</div>
}
delay={0}

View file

@ -11,9 +11,7 @@ echo $DOCKER_REPO
exit 1
} || {
docker login $DOCKER_REPO
cd ../../api
PUSH_IMAGE=1 bash build.sh $@
cd ../backend
cd ../../backend
PUSH_IMAGE=1 bash build.sh $@
cd ../utilities
PUSH_IMAGE=1 bash build.sh $@
@ -21,4 +19,6 @@ echo $DOCKER_REPO
PUSH_IMAGE=1 bash build.sh $@
cd ../frontend
PUSH_IMAGE=1 bash build.sh $@
cd ../api
PUSH_IMAGE=1 bash build.sh $@
}