Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
bb60edac
Commit
bb60edac
authored
Jun 20, 2018
by
Johnny Lim
Committed by
Stephane Nicoll
Jun 21, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
Closes gh-13534
parent
d4d16927
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
ConditionalOnEnabledEndpoint.java
...gure/endpoint/condition/ConditionalOnEnabledEndpoint.java
+1
-1
WebClientMetricsAutoConfigurationTests.java
.../web/reactive/WebClientMetricsAutoConfigurationTests.java
+2
-2
JacksonAutoConfiguration.java
.../boot/autoconfigure/jackson/JacksonAutoConfiguration.java
+2
-2
HibernateProperties.java
...ework/boot/autoconfigure/orm/jpa/HibernateProperties.java
+1
-1
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+3
-3
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/condition/ConditionalOnEnabledEndpoint.java
View file @
bb60edac
...
...
@@ -68,7 +68,7 @@ import org.springframework.core.env.Environment;
*
* <pre class="code">
* @EndpointWebExtension(endpoint = MyEndpoint.class)
* class MyEndpointWebExtension {
*
public
class MyEndpointWebExtension {
*
* }</pre>
* <p>
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/web/reactive/WebClientMetricsAutoConfigurationTests.java
View file @
bb60edac
...
...
@@ -83,7 +83,7 @@ public class WebClientMetricsAutoConfigurationTests {
this
.
contextRunner
.
withUserConfiguration
(
CustomTagsProviderConfig
.
class
)
.
run
((
context
)
->
assertThat
(
context
)
.
getBeans
(
WebClientExchangeTagsProvider
.
class
).
hasSize
(
1
)
.
containsKey
(
"customTagProvider"
));
.
containsKey
(
"customTag
s
Provider"
));
}
@Test
...
...
@@ -113,7 +113,7 @@ public class WebClientMetricsAutoConfigurationTests {
protected
static
class
CustomTagsProviderConfig
{
@Bean
public
WebClientExchangeTagsProvider
customTagProvider
()
{
public
WebClientExchangeTagsProvider
customTag
s
Provider
()
{
return
mock
(
WebClientExchangeTagsProvider
.
class
);
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration.java
View file @
bb60edac
...
...
@@ -270,8 +270,8 @@ public class JacksonAutoConfiguration {
}
private
void
configureVisibility
(
Jackson2ObjectMapperBuilder
builder
,
Map
<
PropertyAccessor
,
JsonAutoDetect
.
Visibility
>
accessor
s
)
{
accessor
s
.
forEach
(
builder:
:
visibility
);
Map
<
PropertyAccessor
,
JsonAutoDetect
.
Visibility
>
visibilitie
s
)
{
visibilitie
s
.
forEach
(
builder:
:
visibility
);
}
private
void
configureDateFormat
(
Jackson2ObjectMapperBuilder
builder
)
{
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/HibernateProperties.java
View file @
bb60edac
...
...
@@ -80,7 +80,7 @@ public class HibernateProperties {
* Determine the configuration properties for the initialization of the main Hibernate
* EntityManagerFactory based on standard JPA properties and
* {@link HibernateSettings}.
* @param jpaProperties standard
jpa
properties
* @param jpaProperties standard
JPA
properties
* @param settings the settings to apply when determining the configuration properties
* @return the Hibernate properties to use
*/
...
...
spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
bb60edac
...
...
@@ -1867,8 +1867,8 @@ include::{code-examples}/actuate/metrics/MetricsFilterBeanExample.java[tag=confi
[[production-ready-metrics-common-tags]]
==== Common tags
Common tag are generally used for dimensional drill-down on the operating environment like
host, instance, region, stack, etc. Commons tags applied to all meters and can be
Common tag
s
are generally used for dimensional drill-down on the operating environment like
host, instance, region, stack, etc. Commons tags a
re a
pplied to all meters and can be
configured as shown in the following example:
[source,properties,indent=0]
...
...
@@ -1877,7 +1877,7 @@ configured as shown in the following example:
management.metrics.tags.stack=prod
----
The example above adds
a
`region` and `stack` tags to all meters with a value of
The example above adds `region` and `stack` tags to all meters with a value of
`us-east-1` and `prod` respectively.
NOTE: The order of common tags is important if you are using Graphite. As the order of
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment