Skip to content
Snippets Groups Projects
Commit 04a9d024 authored by Alžbeta Hajná's avatar Alžbeta Hajná
Browse files

feat: observe for new created car components

parent 04ffb1a3
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !42. Comments created here will be created in the context of that merge request.
......@@ -165,7 +165,6 @@
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -7,6 +7,8 @@ import cz.muni.pa165.generated.core.model.CarComponentCreateDto;
import cz.muni.pa165.generated.core.model.CarComponentDto;
import cz.muni.pa165.generated.core.model.CarComponentType;
import cz.muni.pa165.generated.core.model.CarComponentUpdateDto;
import io.micrometer.observation.Observation;
import io.micrometer.observation.ObservationRegistry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
......@@ -20,6 +22,9 @@ import java.util.List;
public class CarComponentController implements CarComponentServiceApiDelegate {
private static final Logger log = LoggerFactory.getLogger(CarComponentController.class);
@Autowired
private ObservationRegistry observationRegistry;
private final CarComponentFacade componentFacade;
......@@ -53,6 +58,8 @@ public class CarComponentController implements CarComponentServiceApiDelegate {
public ResponseEntity<CarComponentDto> createCarComponent(CarComponentCreateDto componentCreateDto) {
log.debug("createCarComponent() called");
Observation.createNotStarted("pa165.core.createCarComponent", observationRegistry)
.observe(() -> ResponseEntity.ok(componentFacade.create(componentCreateDto)));
return ResponseEntity.ok(componentFacade.create(componentCreateDto));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment