-
Notifications
You must be signed in to change notification settings - Fork 4
docs: add README #334
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+235
−0
Merged
docs: add README #334
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,235 @@ | ||
| # Vaadin Observability Kit | ||
|
|
||
| Production telemetry for [Vaadin Flow](https://vaadin.com) applications, using | ||
| [Micrometer](https://micrometer.io). The kit instruments the Vaadin runtime — | ||
| sessions, UIs, navigation, requests, errors and real browser-side timing — and | ||
| records everything into your application's `MeterRegistry`, so it shows up in | ||
| whatever backend you already use (Prometheus, OTLP, Graphite, …). Tracing spans | ||
| are emitted through the Micrometer Observation API. | ||
|
|
||
| It is a drop-in: with Spring Boot you **add one dependency and you're done** — no | ||
| code, no annotations, no configuration required. | ||
|
|
||
| > Observability Kit is a commercial Vaadin product. See [License](#license). | ||
|
|
||
| ## Requirements | ||
|
|
||
| - Java 21 or newer | ||
| - Vaadin 25.3 or newer (Flow 25.3+) | ||
| - A Micrometer `MeterRegistry` — the Spring Boot starter provides one out of the box | ||
| - Spring Boot 4 (only for the `observability-kit-starter`; plain-Spring and | ||
| standalone setups are also supported) | ||
|
|
||
| ## Getting started (Spring Boot) | ||
|
|
||
| Add the starter: | ||
|
|
||
| ```xml | ||
| <dependency> | ||
| <groupId>com.vaadin</groupId> | ||
| <artifactId>observability-kit-starter</artifactId> | ||
| <version>5.0-SNAPSHOT</version> | ||
| </dependency> | ||
| ``` | ||
|
|
||
| That's the whole setup. On startup the kit auto-configures a `MeterRegistry` | ||
| (through Spring Boot's Micrometer support) and wires the Vaadin instrumentation | ||
| onto it. Sessions, UIs, navigation, request handling, errors and client-side | ||
| timing all start recording automatically. | ||
|
|
||
| ### Exposing the metrics | ||
|
|
||
| The kit *records* into a registry; to *export* the metrics, add Spring Boot | ||
| Actuator and the registry backend of your choice — for example Prometheus: | ||
|
|
||
| ```xml | ||
| <dependency> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-actuator</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.micrometer</groupId> | ||
| <artifactId>micrometer-registry-prometheus</artifactId> | ||
| </dependency> | ||
| ``` | ||
|
|
||
| ```properties | ||
| management.endpoints.web.exposure.include=prometheus | ||
| ``` | ||
|
|
||
| The metrics are then available at `GET /actuator/prometheus`. | ||
|
|
||
| ## Working with the metrics in your application | ||
|
|
||
| Everything the kit records lives in the application `MeterRegistry`. You can read | ||
| it from anywhere a bean is injectable — including a Vaadin view — and record your | ||
| own meters right alongside the built-in ones: | ||
|
|
||
| ```java | ||
| @Route("latency") | ||
| public class LatencyView extends VerticalLayout { | ||
|
|
||
| private static final String SERVER_TIMER = "vaadin.request.duration"; | ||
|
|
||
| private final transient MeterRegistry registry; | ||
|
|
||
| public LatencyView(MeterRegistry registry) { | ||
| this.registry = registry; | ||
|
|
||
| add(new Button("Do work", e -> timed("do-work", () -> doWork()))); | ||
| add(new Button("Show server timing", e -> { | ||
| Timer timer = registry.find(SERVER_TIMER).timer(); | ||
| if (timer != null) { | ||
| Notification.show("%d requests, max %.0f ms".formatted( | ||
| timer.count(), timer.max(TimeUnit.MILLISECONDS))); | ||
| } | ||
| })); | ||
| } | ||
|
|
||
| /** Record a custom timer next to the kit's built-in meters. */ | ||
| private void timed(String action, Runnable work) { | ||
| Timer.Sample sample = Timer.start(registry); | ||
| try { | ||
| work.run(); | ||
| } finally { | ||
| sample.stop(registry.timer("app.interaction", "action", action)); | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| The built-in server-side request timer is `vaadin.request.duration`; the | ||
| browser-observed round trip (when client metrics are enabled) is | ||
| `vaadin.client.rpc.duration`. See [Metrics](#metrics) for the full list. | ||
|
|
||
| ## Other setups | ||
|
|
||
| ### Plain Spring (without Spring Boot) | ||
|
|
||
| Add the Spring module, import the configuration, and provide a `MeterRegistry` | ||
| bean: | ||
|
|
||
| ```xml | ||
| <dependency> | ||
| <groupId>com.vaadin</groupId> | ||
| <artifactId>observability-kit-spring</artifactId> | ||
| <version>5.0-SNAPSHOT</version> | ||
| </dependency> | ||
| ``` | ||
|
|
||
| ```java | ||
| @Configuration | ||
| @Import(ObservabilityConfiguration.class) | ||
| class ObservabilityConfig { | ||
|
|
||
| @Bean | ||
| MeterRegistry meterRegistry() { | ||
| return new SimpleMeterRegistry(); | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ### Standalone (without Spring) | ||
|
|
||
| Add the core module and install the kit at servlet-context startup — for example | ||
| from a `ServletContextListener` — so the registry is in place before the | ||
| `VaadinService` initializes: | ||
|
|
||
| ```xml | ||
| <dependency> | ||
| <groupId>com.vaadin</groupId> | ||
| <artifactId>observability-kit-micrometer</artifactId> | ||
| <version>5.0-SNAPSHOT</version> | ||
| </dependency> | ||
| ``` | ||
|
|
||
| ```java | ||
| @WebListener | ||
| public class ObservabilitySetup implements ServletContextListener { | ||
|
|
||
| @Override | ||
| public void contextInitialized(ServletContextEvent event) { | ||
| MeterRegistry registry = new SimpleMeterRegistry(); | ||
| ObservabilityKit.install(registry, | ||
| ObservabilitySettings.builder().build()); | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ## Configuration | ||
|
|
||
| Every feature is enabled by default. With the Spring Boot starter, configure the | ||
| kit through `vaadin.observability.*` properties: | ||
|
|
||
| ```properties | ||
| # Turn the whole kit off | ||
| vaadin.observability.enabled=false | ||
|
|
||
| # Or toggle individual feature groups | ||
| vaadin.observability.client=false | ||
| vaadin.observability.traces=false | ||
| ``` | ||
|
|
||
| | Property | Default | Description | | ||
| | --- | --- | --- | | ||
| | `vaadin.observability.enabled` | `true` | Master switch for the auto-configuration. | | ||
| | `vaadin.observability.sessions` | `true` | Session count, lifetime and lock metrics. | | ||
| | `vaadin.observability.uis` | `true` | UI count metrics. | | ||
| | `vaadin.observability.navigation` | `true` | Navigation timing. | | ||
| | `vaadin.observability.requests` | `true` | Server-side request and RPC timing. | | ||
| | `vaadin.observability.errors` | `true` | Error counters. | | ||
| | `vaadin.observability.client` | `true` | Browser-side timing collected from the client. | | ||
| | `vaadin.observability.traces` | `true` | Emit tracing spans via the Observation API. | | ||
| | `vaadin.observability.traces-session-id` | `false` | Include the session id as a span attribute. | | ||
| | `vaadin.observability.route-cardinality-limit` | `200` | Maximum number of distinct `route` tag values before they collapse to `_other`. | | ||
| | `vaadin.observability.client-rate-per-session` | `100` | Maximum client-side samples accepted per session (throttling guard). | | ||
|
|
||
| For plain Spring the same keys are read via `@Value`; for standalone use, build an | ||
| `ObservabilitySettings` with the matching builder methods: | ||
|
|
||
| ```java | ||
| ObservabilitySettings.builder() | ||
| .client(false) | ||
| .traces(false) | ||
| .routeCardinalityLimit(500) | ||
| .build(); | ||
| ``` | ||
|
|
||
| ## Metrics | ||
|
|
||
| | Meter | Type | Description | | ||
| | --- | --- | --- | | ||
| | `vaadin.sessions.active` | Gauge | Currently active sessions. | | ||
| | `vaadin.sessions.created` | Counter | Sessions created. | | ||
| | `vaadin.sessions.duration` | Timer | Session lifetime. | | ||
| | `vaadin.session.lock.wait` | Timer | Time spent waiting to acquire the session lock. | | ||
| | `vaadin.session.lock.hold` | Timer | Time the session lock is held. | | ||
| | `vaadin.ui.active` | Gauge | Currently active UIs. | | ||
| | `vaadin.ui.created` | Counter | UIs created. | | ||
| | `vaadin.navigation` | Timer | Navigation duration (tagged by `route`, `outcome`). | | ||
| | `vaadin.request.duration` | Timer | Server-side request handling time. | | ||
| | `vaadin.rpc.duration` | Timer | Server-side RPC invocation time (tagged by `type`). | | ||
| | `vaadin.errors` | Counter | Server-side errors (tagged by `exception`). | | ||
| | `vaadin.client.bootstrap.duration` | Timer | Browser application bootstrap time. | | ||
| | `vaadin.client.navigation.duration` | Timer | Browser-observed navigation time. | | ||
| | `vaadin.client.rpc.duration` | Timer | Browser-observed server round trip. | | ||
| | `vaadin.client.web_vitals.lcp` | Timer | Largest Contentful Paint. | | ||
| | `vaadin.client.web_vitals.fcp` | Timer | First Contentful Paint. | | ||
| | `vaadin.client.errors` | Counter | Errors reported by the browser. | | ||
| | `vaadin.client.dropped` | Counter | Client samples dropped before recording. | | ||
| | `vaadin.client.throttled` | Counter | Client samples rejected by the per-session rate limit. | | ||
|
|
||
| ## Tracing | ||
|
|
||
| When tracing is enabled (the default) and an `ObservationRegistry` is available, | ||
| the kit emits spans through the Micrometer Observation API for the Vaadin request | ||
| lifecycle, navigation and RPC. Spring Boot Actuator supplies an | ||
| `ObservationRegistry` automatically; the standalone bootstrap creates one for you. | ||
| To export the spans, add a Micrometer tracing bridge (for example OpenTelemetry or | ||
| Zipkin) as you would for any Micrometer-instrumented application. Set | ||
| `vaadin.observability.traces=false` to disable span emission. | ||
|
|
||
| ## License | ||
|
|
||
| Observability Kit is available under the Vaadin Commercial License and Service | ||
| Terms. See <https://vaadin.com/commercial-license-and-service-terms>. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.