File tree Expand file tree Collapse file tree
microbootstrap/instruments Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ class PyroscopeConfig(BaseInstrumentConfig):
1919
2020 pyroscope_endpoint : pydantic .HttpUrl | None = None
2121 pyroscope_sample_rate : int = 100
22- pyroscope_auth_token : str | None = None
2322 pyroscope_tags : dict [str , str ] = pydantic .Field (default_factory = dict )
2423 pyroscope_additional_params : dict [str , typing .Any ] = pydantic .Field (default_factory = dict )
2524
@@ -38,7 +37,6 @@ def bootstrap(self) -> None:
3837 pyroscope .configure (
3938 application_name = self .instrument_config .opentelemetry_service_name or self .instrument_config .service_name ,
4039 server_address = str (self .instrument_config .pyroscope_endpoint ),
41- auth_token = self .instrument_config .pyroscope_auth_token or "" ,
4240 sample_rate = self .instrument_config .pyroscope_sample_rate ,
4341 tags = (
4442 {"service_namespace" : self .instrument_config .opentelemetry_namespace }
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ dependencies = [
4141 " rich>=13" ,
4242 " sentry-sdk>=2.7" ,
4343 " structlog>=24" ,
44- " pyroscope-io< =1.0.0; platform_system != 'Windows'" ,
44+ " pyroscope-io> =1.0.0; platform_system != 'Windows'" ,
4545 " opentelemetry-distro[otlp]>=0.54b1" ,
4646 " opentelemetry-instrumentation-aio-pika>=0.54b1" ,
4747 " opentelemetry-instrumentation-aiohttp-client>=0.54b1" ,
You can’t perform that action at this time.
0 commit comments