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
9bac5b64
Commit
9bac5b64
authored
Jun 05, 2015
by
izeye
Committed by
Stephane Nicoll
Jun 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove invalid parts of docs after refactoring
parent
820de5aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+4
-5
No files found.
spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
9bac5b64
...
@@ -939,19 +939,18 @@ which can be used to copy metric readings from the in-memory buffers to a place
...
@@ -939,19 +939,18 @@ which can be used to copy metric readings from the in-memory buffers to a place
can be analyzed and displayed. Indeed, if you provide a `@Bean` that implements the
can be analyzed and displayed. Indeed, if you provide a `@Bean` that implements the
`MetricWriter` interface and mark it `@ExportMetricWriter`, then it will automatically be
`MetricWriter` interface and mark it `@ExportMetricWriter`, then it will automatically be
hooked up to an `Exporter` and fed metric updates every 5 seconds (configured via
hooked up to an `Exporter` and fed metric updates every 5 seconds (configured via
`spring.metrics.export.delayMillis`) via a `@Scheduled` annotation in
`spring.metrics.export.delay-millis`). In addition, any `MetricReader` that you define and
`MetricRepositoryAutoConfiguration`. In addition, any `MetricReader` that you define and
mark as `@ExportMetricReader` will have its values exported by the default exporter.
mark as `@ExportMetricReader` will have its values exported by the default exporter.
The default exporter is a `MetricCopyExporter` which tries to optimize itself by not
The default exporter is a `MetricCopyExporter` which tries to optimize itself by not
copying values that haven'
t
changed
since
it
was
last
called
(
the
optimization
can
be
copying values that haven'
t
changed
since
it
was
last
called
(
the
optimization
can
be
switched
off
using
a
flag
`
spring
.
metrics
.
export
.
send
L
atest
`).
Note
also
that
the
switched
off
using
a
flag
`
spring
.
metrics
.
export
.
send
-
l
atest
`).
Note
also
that
the
Dropwizard
`
MetricRegistry
`
has
no
support
for
timestamps
,
so
the
optimization
is
not
Dropwizard
`
MetricRegistry
`
has
no
support
for
timestamps
,
so
the
optimization
is
not
available
if
you
are
using
Dropwizard
metrics
(
all
metrics
will
be
copied
on
every
tick
).
available
if
you
are
using
Dropwizard
metrics
(
all
metrics
will
be
copied
on
every
tick
).
The
default
values
for
the
export
trigger
(`
delay
Millis
`,
`
includes
`,
`
excludes
`,
The
default
values
for
the
export
trigger
(`
delay
-
millis
`,
`
includes
`,
`
excludes
`
`
ignoreTimestamps
`
and
`
sendL
atest
`)
can
be
set
as
`
spring
.
metrics
.
export
.\*`.
Individual
and
`
send
-
l
atest
`)
can
be
set
as
`
spring
.
metrics
.
export
.\*`.
Individual
values
for
specific
`
MetricWriters
`
can
be
set
as
values
for
specific
`
MetricWriters
`
can
be
set
as
`
spring
.
metrics
.
export
.
triggers
.<
name
>.*`
where
`<
name
>`
is
a
bean
name
(
or
pattern
for
`
spring
.
metrics
.
export
.
triggers
.<
name
>.*`
where
`<
name
>`
is
a
bean
name
(
or
pattern
for
matching
bean
names
).
matching
bean
names
).
...
...
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