Lines Matching refs:Traced
56 #### Traced Annotation
58 The `opencensus-contrib-spring` package provides support for a `@Traced` annotation
65 To enable the `@Traced` annotation, include the `CensusSpringAspect` bean.
68 <!-- traces explicit calls to Traced -->
78 will be wrapped in a Span in the same way that `@Traced` wraps methods.
92 with support for both `@Traced` and database connection tracing.
107 <!-- traces explicit calls to Traced -->
122 ### Traced Usage
124 Once configured, you can use the `@Traced` annotation to indicate that a method should
125 be wrapped with a `Span`. By default, `@Traced` will use the name of the method as the
126 span name. However, `@Traced` supports an optional name attribute to allow a custom
130 @Traced()
135 // a custom span name can also be provided to Traced
136 @Traced(name = "custom-span-name")