Interface PathTracingConfig
public interface PathTracingConfig
Traced system configuration for web server for a specific path.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
Fluent API builder forPathTracingConfig
. -
Method Summary
Modifier and TypeMethodDescriptionstatic PathTracingConfig.Builder
builder()
Create a new builder to configure traced path configuration.static PathTracingConfig
Create a new traced path configuration fromConfig
.boolean
Method used by Helidon to check if this tracing is valid for the specified method and path.Associated configuration of tracing valid for the configured path and (possibly) methods.
-
Method Details
-
create
Create a new traced path configuration fromConfig
.- Parameters:
config
- config of a path- Returns:
- traced path configuration
-
builder
Create a new builder to configure traced path configuration.- Returns:
- a new builder instance
-
matches
Method used by Helidon to check if this tracing is valid for the specified method and path.- Parameters:
method
- HTTP methodpath
- invoked path- Returns:
true
if matched
-
tracedConfig
TracingConfig tracedConfig()Associated configuration of tracing valid for the configured path and (possibly) methods.- Returns:
- traced system configuration
-