Dmitriev Alexandr

Results 10 comments of Dmitriev Alexandr

> Are you using async? if so, have you tried this? [link](https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/80) Doesn't work for starlette>=0.24.0

but works when the instrumentator is initialized outside from lifespan event handler. ```python instrumentator = Instrumentator().instrument(app) @app.on_event("startup") async def startup_event() -> None: instrumentator.add(custom_metric()).expose(app) ```

@seyong92 According to security policy you have to set `secure=True` for cookies with `samesite="none"`. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite

I think it may cause denial of service if direct publishing is used. Imagine you have 100 rps app and RMQ server is down for 1 min, your app will...

Yes, I'm sure. This is a complaint from a user: ![image](https://user-images.githubusercontent.com/34693850/233065078-64dc6c6f-64e7-44ee-8bea-c6eaedcec5bc.png) As you can see, this is the same as the message from the apm server. There are no error...

Also, I have a sentry integration and it didn't capture any errors. But in access logs I see 500 responses when apm agent fails

This is not confidence. It happens several times on several apps, connected to elk. In all cases there is one scenario: elk server failures, 500-code responses in app/nginx access logs,...

Hi @basepi We have elk server version 8.3.1 I found some strange log records around the incident time ``` 07:50:35.279 elastic_agent.fleet_server [elastic_agent.fleet_server][info] fail enroll 07:50:35.279 elastic_agent.fleet_server [elastic_agent.fleet_server][error] perform rollback on...

Would be nice to have an optional config to fail the compilation if there is a mistake with extra for some libs e.g. `uv lock --fail-on-missing-extra`