sebarys
sebarys
Thanks @dkrcharlie and @mp911de ! So current implementation works only to first connection issues with Redis?
Hi, We're having similar scenario: we would like to run stage/test cluster using AWS Spot fleet to reduce costs. Is there any pland to deliver it in near future? Thanks...
Are you able to verify if you see the same issue when running such test snippet?
Hi, Thanks it helped! :) Regarding documentation: did you know by chance why testcontainers `reuse` feature is not documented at all? I know that it is not stable API, but...
Anyway @jbwheatley LocalstacvV2 module is not mentioned in docu https://github.com/testcontainers/testcontainers-scala#modules I think it would be worth here to mention it
Other finding: for `byteBufferBody` when I provided example value ``` .out( byteBufferBody.example(Example.of(ByteBuffer.wrap(SampleExportContent.getBytes))) and header("Content-Type", "text/csv") ) ``` generated openapi example is `java.nio.HeapByteBuffer[pos=0 lim=2018 cap=2018]`, not provided, stringified value ``` responses:...
sure @adamw : https://github.com/softwaremill/tapir/issues/2256
@ivantopo is there any progress in Tapir integration? I see code on master https://github.com/kamon-io/Kamon/tree/master/instrumentation/kamon-tapir/src but no information in documentation about it
@devu1997 @ivantopo I see that Tapir support metrics collection https://tapir.softwaremill.com/en/latest/server/observability.html#prometheus-metrics Maybe there is a way to gather request/response counters and duration histograms without need for code instrumentation: if I understand...
@ivantopo @devu1997 I was able to implement tapir metrics collector version that use Kamon metrics registry: ``` package com.example import kamon.Kamon import kamon.tag.TagSet import sttp.tapir.AnyEndpoint import sttp.tapir.metrics.{EndpointMetric, Metric, MetricLabels} import...