I was write file openapi.yml
wth openapi 3.0 description for services in my helidon project. But I use standart helidon handlers too (health and metrics):
return Routing.builder()
.register(JsonSupport.create())
.register("/api/files", health)
.register("/api/files", metrics)
.register("/api/files/storage", fileService)
.register("/api/files", OpenAPISupport.create(config))
.build();
How make section for health and metrics in my openapi.yml? I use:
<dependency>
<groupId>io.helidon.openapi</groupId>
<artifactId>helidon-openapi</artifactId>
<version>1.3.1</version>
</dependency>