Phillip Webb
157091a811
Merge branch '3.0.x'
2 years ago
Phillip Webb
0b15962aca
Merge branch '2.7.x' into 3.0.x
2 years ago
Phillip Webb
b07269a018
Merge branch '3.0.x'
2 years ago
Phillip Webb
c4de86c244
Merge branch '2.7.x' into 3.0.x
2 years ago
Phillip Webb
df5898a146
Reformat code following spring-javaformat upgrade
2 years ago
Andy Wilkinson
1847a9deb6
Upgrade to Spring Framework 6.0.5
...
Closes gh-34301
2 years ago
Andy Wilkinson
e617d362d5
Merge branch '3.0.x'
...
Closes gh-34208
2 years ago
Andy Wilkinson
efbeab74ee
Merge branch '2.7.x' into 3.0.x
...
Closes gh-34207
2 years ago
Mirko Sobeck
ff04f009c0
Add missing Micrometer PropertiesConfigAdapterTests
...
Closes gh-33743
2 years ago
Andy Wilkinson
5cef7632ee
Start building against Spring Framework 6.0.5 snapshots
...
This commit adapts to the changes made for
spring-projects/spring-framework#29885 .
Closes gh-34152
2 years ago
Andy Wilkinson
1c9e22c845
Merge branch '3.0.x'
...
Closes gh-34121
2 years ago
Andy Wilkinson
3551030e3f
Add ObservationFilter beans to auto-configured ObservationRegistry
...
Fixes gh-33968
2 years ago
Moritz Halbritter
23f1c896c9
Merge branch '3.0.x'
...
Closes gh-34015
2 years ago
Johnny Lim
bc7fc90550
Replace Base64Utils with JDK's Base64
...
See gh-33967
2 years ago
Marcin Grzejszczak
06aec1a9bf
Adds CompositeSpanExporter
...
Micrometer Tracing comes with 3 generic interfaces, SpanExportingPredicate,
SpanReporter and SpanFilter, thanks to which you can decide whether you
want to export a span, how you want to report it and how to mutate it
regardless of which tracer library you are using.
Without this change usage of these 3 interfaces is not possible
for OpenTelemetry.
With this change we're putting all SpanExporters to the
CompositeSpanExporter and apply the exporters only after predicates,
filtering and reporting took place.
See gh-34002
2 years ago
Eddú Meléndez
92dd004375
Add property `headers` in `OtlpProperties`
...
In Micrometer 1.11, headers property has been introduced.
See gh-34004
2 years ago
Krzysztof Krason
0e68cae57f
Use instanceof patterns
...
See gh-33987
2 years ago
Krzysztof Krason
a9c547e767
Use text blocks
...
See gh-33987
2 years ago
Krzysztof Krason
6e46423983
Use diamond operators
...
See gh-33987
2 years ago
Phillip Webb
5120242996
Merge branch '2.7.x' into 3.0.x
2 years ago
Krzysztof Krason
888d4ac392
Use '==' rather than '.equals' with enum value
...
See gh-33987
2 years ago
Moritz Halbritter
31ca94833a
Use parent-based sampler by default
...
Closes gh-33821
2 years ago
Phillip Webb
71efc55bf9
Merge branch '2.7.x'
2 years ago
Phillip Webb
7c508fa324
Update copyright year of changed files
2 years ago
Moritz Halbritter
94f4a4396c
Merge branch '2.7.x'
...
Closes gh-33880
2 years ago
Moritz Halbritter
e8d809fe65
Replace 'via' with 'over' or 'through' in the documentation
...
Closes gh-33878
2 years ago
Phillip Webb
fad88232b9
Update copyright year of changed files
2 years ago
Phillip Webb
a889c539ab
Merge branch '2.7.x'
2 years ago
Phillip Webb
a0fe8241a7
Update copyright year of changed files
2 years ago
Moritz Halbritter
f08842019e
Merge branch '2.7.x'
...
Closes gh-33841
2 years ago
Moritz Halbritter
96175a8e50
Use OperationParameter consistently
...
Closes gh-31240
2 years ago
Andy Wilkinson
433364601d
Merge branch '2.7.x'
2 years ago
Andy Wilkinson
3b2e5e5292
Remove references to https://repo.spring.io/release
2 years ago
Moritz Halbritter
52760f6b78
Merge branch '2.7.x'
...
Closes gh-33756
2 years ago
Yongjo Lee
0440e5d1ac
Fix duplicate 'the' typo
...
See gh-33736
2 years ago
Moritz Halbritter
fe1c1edcd4
Change transient to volatile in CompositeHandlerExceptionResolver
2 years ago
Phillip Webb
a2ac38e203
Update copyright year of changed files
2 years ago
Phillip Webb
1621cfd578
Merge branch '2.7.x'
2 years ago
Phillip Webb
6a0a61f1ce
Refine EndpointRequest matcher `toString` and apply to reactive variant
...
Refine the recently introduced `EndpointRequest` matcher `toString()`
to use lower-case item names. Also applied the same logic to the
reactive variant.
See gh-33690
2 years ago
Moritz Halbritter
3b6b795c9f
Merge branch '2.7.x'
...
Closes gh-33729
2 years ago
rishal
c84399e705
Add toString method for EndpointRequestMatcher
...
See gh-33690
2 years ago
Krzysztof Krason
cf6493f65c
Simplify AssertJ assertions and also make them more readable
...
See gh-33653
2 years ago
Phillip Webb
f588793445
Update copyright year of changed files
2 years ago
Phillip Webb
0254619782
Merge branch '2.7.x'
2 years ago
Phillip Webb
e4772cf3b7
Update copyright year of changed files
2 years ago
Brian Clozel
28f9f20d39
Declare order for ServerHttpObservationFilter WebFilter
...
This commit declares an `@Order` for the `ServerHttpObservationFilter`
bean declaration in the Observation WebFlux auto-configuration.
This allows developers to consistently order other `WebFilter` instances
relatively to this one. Here, `@Order(Ordered.HIGHEST_PRECEDENCE + 1)`
has been chosen to align with the order of its MVC counterpart.
Fixes gh-33444
2 years ago
Brian Clozel
3310b59520
Polish
2 years ago
Brian Clozel
593b5311e9
Configure GraphQL web propagation for tracing
...
As of spring-projects/spring-graphql#547 , Spring GraphQL introduced a
`PropagationWebGraphQlInterceptor` that propagates the incoming tracing
information in HTTP request headers into the GraphQL context.
This commit auto-configures the propagation interceptor if the
application exposes a GraphQL HTTP endpoint and if it is configured for
Tracing support.
Fixes gh-33542
2 years ago
Moritz Halbritter
725337f976
Make fields final
...
Closes gh-33537
2 years ago
Johnny Lim
d21572a189
Resolve TODOs for observability tests
...
See gh-33481
2 years ago