GenericService
Abstract base class for services that use an embedded Jetty server for admin servlet hosting.
Hosts the admin endpoints (ping, version, health check, and thread dump servlets) via ServletService, delegating metrics, Zipkin tracing, health checks, and lifecycle coordination to AbstractGenericService.
Subclasses should call initServletService during initialization to set up the service infrastructure.
Parameters
The application-specific configuration values.
Configuration for admin endpoints.
Configuration for Prometheus metrics.
Configuration for Zipkin tracing.
A lambda returning the application version string for the version endpoint.
Whether the service is running in test mode.
Type Parameters
The type of the configuration values object.
See also
For a Ktor-based variant of this service.
Properties
Whether admin endpoints are enabled, based on AdminConfig.enabled.
Whether Prometheus metrics collection is enabled, based on MetricsConfig.enabled.
Whether Zipkin distributed tracing is enabled, based on ZipkinConfig.enabled.
The JMX reporter for Dropwizard metrics. Initialized when metrics are enabled.
The Prometheus metrics service. Initialized when metrics are enabled.
The Jetty-based servlet service hosting admin endpoints. Initialized when admin is enabled.
The Zipkin span reporter service. Initialized when Zipkin tracing is enabled.