You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _versions/main/guides/rest.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1624,7 +1624,7 @@ public User userPrivate() {
1624
1624
}
1625
1625
----
1626
1626
1627
-
When the result the `userPublic` method is serialized, the `id` field will not be contained in the response as the `Public` view does not include it.
1627
+
When the result of the `userPublic` method is serialized, the `id` field will not be contained in the response as the `Public` view does not include it.
1628
1628
The result of `userPrivate` however will include the `id` as expected when serialized.
1629
1629
1630
1630
===== Reflection-free Jackson serialization and deserialization
See link:{concepts}#_gauges[Gauges] in the Micrometer documentation for more information and examples.
282
+
See link:{concepts}/gauges[Gauges] in the Micrometer documentation for more information and examples.
283
283
Of note are two special cases: `TimeGauge` for measuring time, and a `MultiGauge` for reporting several criteria together.
284
284
285
285
NOTE: Micrometer does not create strong references to the objects it observes by default.
@@ -336,7 +336,7 @@ void countThisMethod(){
336
336
<1> A CDI interceptor will create and register a counter called `counted.method`
337
337
<2> The interceptor-created counter will have the "extra" dimension tag with value "annotated"
338
338
339
-
See link:{concepts}#_counters[Counters] in the Micrometer documentation for more information and examples, including the less common `FunctionCounter` that can be used to measure the result returned by an always increasing function.
339
+
See link:{concepts}/counters[Counters] in the Micrometer documentation for more information and examples, including the less common `FunctionCounter` that can be used to measure the result returned by an always increasing function.
340
340
341
341
When should you use a counter?
342
342
Use a counter if you are doing something that can not be either timed or summarized.
Both timers and distribution summaries can be configured to emit additional statistics, like histogram data, precomputed percentiles, or service level objective (SLO) boundaries.
481
-
See link:{concepts}#_timers[Timers] and link:{concepts}#_distribution_summaries[Distribution Summaries] in the Micrometer documentation for more information and examples, including memory footprint estimation for both types.
481
+
See link:{concepts}/timers[Timers] and link:{concepts}/distribution-summaries[Distribution Summaries] in the Micrometer documentation for more information and examples, including memory footprint estimation for both types.
0 commit comments