Color types in Drilldown output

This commit is contained in:
2022-08-02 17:10:41 +01:00
parent e4651c4ce1
commit 1ed7f6a24c
6 changed files with 27 additions and 13 deletions

View File

@@ -135,13 +135,15 @@ REST_FRAMEWORK = {
}
from app.local_settings import * # noqa
if PROFILER:
if PROFILER: # noqa - trust me its there
import pyroscope
pyroscope.configure(
application_name = "neptune",
server_address = "http://pyroscope:4040",
auth_token = os.getenv("PYROSCOPE_AUTH_TOKEN", ""),
application_name="neptune",
server_address="http://pyroscope:4040",
auth_token=os.getenv("PYROSCOPE_AUTH_TOKEN", ""),
# tags = {
# "region": f'{os.getenv("REGION")}',
# }
)
)