-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Regression on data-transport-layer metrics #910
Copy link
Copy link
Closed
Labels
Description
Describe the bug
From the current develop branch tip, the dtl service in the docker-compose project build returns a 404 for /metrics.
To Reproduce
Steps to reproduce the behavior:
- git checkout develop
- git pull
- cd ops
- docker-compose up --build --detached
- curl -v http://127.0.0.1:7878/metrics
That's giving me a 404. If we go back to e6350e2 it seems to work fine.
- git checkout e6350e2
- cd ops
- docker-compose up --build --detached
- curl -v http://127.0.0.1:7878/metrics
I'm not sure if I need to add any settings now that we updated the common-ts for metrics in 0c16805
Expected behavior
The curl request should return a list off metrics and values like:
$ curl http://127.0.0.1:7878/metrics
# HELP L1_Data_Transport_Serviceprocess_cpu_user_seconds_total Total user CPU time spent in seconds.
# TYPE L1_Data_Transport_Serviceprocess_cpu_user_seconds_total counter
L1_Data_Transport_Serviceprocess_cpu_user_seconds_total 17.375885
# HELP L1_Data_Transport_Serviceprocess_cpu_system_seconds_total Total system CPU time spent in seconds.
# TYPE L1_Data_Transport_Serviceprocess_cpu_system_seconds_total counter
L1_Data_Transport_Serviceprocess_cpu_system_seconds_total 3.836926
# HELP L1_Data_Transport_Serviceprocess_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE L1_Data_Transport_Serviceprocess_cpu_seconds_total counter
L1_Data_Transport_Serviceprocess_cpu_seconds_total 21.212811000000002
...
]
Reactions are currently unavailable