Skip to content

Commit

Permalink
Deploying documents(1.1.0-SNAPSHOT) to refs/heads/main from 999409f
Browse files Browse the repository at this point in the history
  • Loading branch information
ttddyy committed Apr 19, 2024
1 parent 39ec331 commit 00ad211
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 32 deletions.
16 changes: 8 additions & 8 deletions docs/1.1.0-SNAPSHOT/docs/html/getting-started.html
Original file line number Diff line number Diff line change
Expand Up @@ -625,13 +625,13 @@ <h1>Getting Started</h1>
<h2 id="getting-started-introducing-datasource-micrometer"><a class="anchor" href="#getting-started-introducing-datasource-micrometer"></a><a class="link" href="#getting-started-introducing-datasource-micrometer">1. Introducing Datasource Micrometer</a></h2>
<div class="sectionbody">
<div class="paragraph">
<p>The Datasource Micrometer provides a <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> instrumentation for JDBC operations.</p>
<p>The Datasource Micrometer provides a <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Micrometer Observation API</a> instrumentation for JDBC operations.</p>
</div>
<div class="paragraph">
<p>Currently, this project provides two modules - core instrumentation and its Spring Boot Auto Configuration.</p>
</div>
<div class="paragraph">
<p>If you are a <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> user but not using Spring Boot, you can directly use the <code>datasource-micrometer</code> module, which doesn&#8217;t have a dependency on Spring Framework.<br>
<p>If you are a <a href="https://micrometer.io">Micrometer</a> user but not using Spring Boot, you can directly use the <code>datasource-micrometer</code> module, which doesn&#8217;t have a dependency on Spring Framework.<br>
If you are a Spring Boot 3 user, then you can add the <code>datasource-micrometer-spring-boot</code> module to the classpath.
Then, it automatically instruments the <code>DataSource</code> and provides a tracing capability on the JDBC operations.</p>
</div>
Expand All @@ -641,21 +641,21 @@ <h2 id="getting-started-introducing-datasource-micrometer"><a class="anchor" hre
<div class="sect2">
<h3 id="getting-started-intro-background"><a class="anchor" href="#getting-started-intro-background"></a><a class="link" href="#getting-started-intro-background">1.1. Background</a></h3>
<div class="paragraph">
<p>The Micrometer v1.10.0 introduced the new <a href="https://micrometer.io/docs/observation">Observation API</a> and <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> module.
The <a href="https://micrometer.io/docs/observation">Observation API</a> allows measuring(observing) any interested behavior from the code in action. Then, notifies it to the registered handlers.
The <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> module provides an observation handler implementation that creates distributed traces(spans). It uses a tracer that has abstracted the popular tracer implementations and gives the vendor free APIs for tracing.</p>
<p>The Micrometer v1.10.0 introduced the new <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> and <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> module.
The <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> allows measuring(observing) any interested behavior from the code in action. Then, notifies it to the registered handlers.
The <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> module provides an observation handler implementation that creates distributed traces(spans). It uses a tracer that has abstracted the popular tracer implementations and gives the vendor free APIs for tracing.</p>
</div>
<div class="paragraph">
<p>In Spring Boot 2.x, the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> provided the instrumentation to the many components including JDBC operations.
It was a central library that provides tracing instrumentation to the Spring Boot applications.
However, with the new observability, the responsibility for instrumentation has shifted to the individual component.
For example, Spring Framework will provide native instrumentation support for its components using the <a href="https://micrometer.io/docs/observation">Observation API</a>.
For example, Spring Framework will provide native instrumentation support for its components using the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a>.
As a result, there will be no <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> for Spring Boot 3.</p>
</div>
<div class="paragraph">
<p>This Datasource Micrometer project provides instrumentation on the JDBC operations to cover what was provided by the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> but with the <a href="https://micrometer.io/docs/observation">Observation API</a>.
<p>This Datasource Micrometer project provides instrumentation on the JDBC operations to cover what was provided by the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> but with the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a>.
The initial version aims users to smoothly transition from Spring Boot 2.x with Spring Cloud Sleuth to the Spring Boot 3 in JDBC instrumentation.
In addition, since the <a href="https://micrometer.io/docs/observation">Observation API</a> and <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> are independent from Spring ecosystem, the instrumentation is available to the non-spring applications as well.</p>
In addition, since the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> and <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> are independent from Spring ecosystem, the instrumentation is available to the non-spring applications as well.</p>
</div>
</div>
<div class="sect2">
Expand Down
16 changes: 8 additions & 8 deletions docs/1.1.0-SNAPSHOT/docs/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -690,13 +690,13 @@ <h2 id="getting-started"><a class="anchor" href="#getting-started"></a><a class=
<div class="sect2">
<h3 id="getting-started-introducing-datasource-micrometer"><a class="anchor" href="#getting-started-introducing-datasource-micrometer"></a><a class="link" href="#getting-started-introducing-datasource-micrometer">2.1. Introducing Datasource Micrometer</a></h3>
<div class="paragraph">
<p>The Datasource Micrometer provides a <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> instrumentation for JDBC operations.</p>
<p>The Datasource Micrometer provides a <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Micrometer Observation API</a> instrumentation for JDBC operations.</p>
</div>
<div class="paragraph">
<p>Currently, this project provides two modules - core instrumentation and its Spring Boot Auto Configuration.</p>
</div>
<div class="paragraph">
<p>If you are a <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> user but not using Spring Boot, you can directly use the <code>datasource-micrometer</code> module, which doesn&#8217;t have a dependency on Spring Framework.<br>
<p>If you are a <a href="https://micrometer.io">Micrometer</a> user but not using Spring Boot, you can directly use the <code>datasource-micrometer</code> module, which doesn&#8217;t have a dependency on Spring Framework.<br>
If you are a Spring Boot 3 user, then you can add the <code>datasource-micrometer-spring-boot</code> module to the classpath.
Then, it automatically instruments the <code>DataSource</code> and provides a tracing capability on the JDBC operations.</p>
</div>
Expand All @@ -706,21 +706,21 @@ <h3 id="getting-started-introducing-datasource-micrometer"><a class="anchor" hre
<div class="sect3">
<h4 id="getting-started-intro-background"><a class="anchor" href="#getting-started-intro-background"></a><a class="link" href="#getting-started-intro-background">2.1.1. Background</a></h4>
<div class="paragraph">
<p>The Micrometer v1.10.0 introduced the new <a href="https://micrometer.io/docs/observation">Observation API</a> and <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> module.
The <a href="https://micrometer.io/docs/observation">Observation API</a> allows measuring(observing) any interested behavior from the code in action. Then, notifies it to the registered handlers.
The <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> module provides an observation handler implementation that creates distributed traces(spans). It uses a tracer that has abstracted the popular tracer implementations and gives the vendor free APIs for tracing.</p>
<p>The Micrometer v1.10.0 introduced the new <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> and <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> module.
The <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> allows measuring(observing) any interested behavior from the code in action. Then, notifies it to the registered handlers.
The <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> module provides an observation handler implementation that creates distributed traces(spans). It uses a tracer that has abstracted the popular tracer implementations and gives the vendor free APIs for tracing.</p>
</div>
<div class="paragraph">
<p>In Spring Boot 2.x, the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> provided the instrumentation to the many components including JDBC operations.
It was a central library that provides tracing instrumentation to the Spring Boot applications.
However, with the new observability, the responsibility for instrumentation has shifted to the individual component.
For example, Spring Framework will provide native instrumentation support for its components using the <a href="https://micrometer.io/docs/observation">Observation API</a>.
For example, Spring Framework will provide native instrumentation support for its components using the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a>.
As a result, there will be no <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> for Spring Boot 3.</p>
</div>
<div class="paragraph">
<p>This Datasource Micrometer project provides instrumentation on the JDBC operations to cover what was provided by the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> but with the <a href="https://micrometer.io/docs/observation">Observation API</a>.
<p>This Datasource Micrometer project provides instrumentation on the JDBC operations to cover what was provided by the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> but with the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a>.
The initial version aims users to smoothly transition from Spring Boot 2.x with Spring Cloud Sleuth to the Spring Boot 3 in JDBC instrumentation.
In addition, since the <a href="https://micrometer.io/docs/observation">Observation API</a> and <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> are independent from Spring ecosystem, the instrumentation is available to the non-spring applications as well.</p>
In addition, since the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> and <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> are independent from Spring ecosystem, the instrumentation is available to the non-spring applications as well.</p>
</div>
</div>
<div class="sect3">
Expand Down
16 changes: 8 additions & 8 deletions docs/current-snapshot/docs/html/getting-started.html
Original file line number Diff line number Diff line change
Expand Up @@ -625,13 +625,13 @@ <h1>Getting Started</h1>
<h2 id="getting-started-introducing-datasource-micrometer"><a class="anchor" href="#getting-started-introducing-datasource-micrometer"></a><a class="link" href="#getting-started-introducing-datasource-micrometer">1. Introducing Datasource Micrometer</a></h2>
<div class="sectionbody">
<div class="paragraph">
<p>The Datasource Micrometer provides a <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> instrumentation for JDBC operations.</p>
<p>The Datasource Micrometer provides a <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Micrometer Observation API</a> instrumentation for JDBC operations.</p>
</div>
<div class="paragraph">
<p>Currently, this project provides two modules - core instrumentation and its Spring Boot Auto Configuration.</p>
</div>
<div class="paragraph">
<p>If you are a <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> user but not using Spring Boot, you can directly use the <code>datasource-micrometer</code> module, which doesn&#8217;t have a dependency on Spring Framework.<br>
<p>If you are a <a href="https://micrometer.io">Micrometer</a> user but not using Spring Boot, you can directly use the <code>datasource-micrometer</code> module, which doesn&#8217;t have a dependency on Spring Framework.<br>
If you are a Spring Boot 3 user, then you can add the <code>datasource-micrometer-spring-boot</code> module to the classpath.
Then, it automatically instruments the <code>DataSource</code> and provides a tracing capability on the JDBC operations.</p>
</div>
Expand All @@ -641,21 +641,21 @@ <h2 id="getting-started-introducing-datasource-micrometer"><a class="anchor" hre
<div class="sect2">
<h3 id="getting-started-intro-background"><a class="anchor" href="#getting-started-intro-background"></a><a class="link" href="#getting-started-intro-background">1.1. Background</a></h3>
<div class="paragraph">
<p>The Micrometer v1.10.0 introduced the new <a href="https://micrometer.io/docs/observation">Observation API</a> and <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> module.
The <a href="https://micrometer.io/docs/observation">Observation API</a> allows measuring(observing) any interested behavior from the code in action. Then, notifies it to the registered handlers.
The <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> module provides an observation handler implementation that creates distributed traces(spans). It uses a tracer that has abstracted the popular tracer implementations and gives the vendor free APIs for tracing.</p>
<p>The Micrometer v1.10.0 introduced the new <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> and <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> module.
The <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> allows measuring(observing) any interested behavior from the code in action. Then, notifies it to the registered handlers.
The <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> module provides an observation handler implementation that creates distributed traces(spans). It uses a tracer that has abstracted the popular tracer implementations and gives the vendor free APIs for tracing.</p>
</div>
<div class="paragraph">
<p>In Spring Boot 2.x, the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> provided the instrumentation to the many components including JDBC operations.
It was a central library that provides tracing instrumentation to the Spring Boot applications.
However, with the new observability, the responsibility for instrumentation has shifted to the individual component.
For example, Spring Framework will provide native instrumentation support for its components using the <a href="https://micrometer.io/docs/observation">Observation API</a>.
For example, Spring Framework will provide native instrumentation support for its components using the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a>.
As a result, there will be no <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> for Spring Boot 3.</p>
</div>
<div class="paragraph">
<p>This Datasource Micrometer project provides instrumentation on the JDBC operations to cover what was provided by the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> but with the <a href="https://micrometer.io/docs/observation">Observation API</a>.
<p>This Datasource Micrometer project provides instrumentation on the JDBC operations to cover what was provided by the <a href="https://spring.io/projects/spring-cloud-sleuth">Spring Cloud Sleuth</a> but with the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a>.
The initial version aims users to smoothly transition from Spring Boot 2.x with Spring Cloud Sleuth to the Spring Boot 3 in JDBC instrumentation.
In addition, since the <a href="https://micrometer.io/docs/observation">Observation API</a> and <a href="https://micrometer.io/docs/tracing">Micrometer Tracing</a> are independent from Spring ecosystem, the instrumentation is available to the non-spring applications as well.</p>
In addition, since the <a href="https://docs.micrometer.io/micrometer/reference/observation.html">Observation API</a> and <a href="https://docs.micrometer.io/tracing/reference/">Micrometer Tracing</a> are independent from Spring ecosystem, the instrumentation is available to the non-spring applications as well.</p>
</div>
</div>
<div class="sect2">
Expand Down
Loading

0 comments on commit 00ad211

Please sign in to comment.