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
481cf775
Commit
481cf775
authored
Aug 13, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refer explicitly to double asterix in metrics docs
Fixes gh-1358
parent
0a3a00e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+4
-1
No files found.
spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
481cf775
...
@@ -591,7 +591,9 @@ decrement). Metrics for all HTTP requests are automatically recorded, so if you
...
@@ -591,7 +591,9 @@ decrement). Metrics for all HTTP requests are automatically recorded, so if you
{
{
"counter.status.200.root": 20,
"counter.status.200.root": 20,
"counter.status.200.metrics": 3,
"counter.status.200.metrics": 3,
"counter.status.200.**": 5,
"counter.status.401.root": 4,
"counter.status.401.root": 4,
"gauge.response.**": 6,
"gauge.response.root": 2,
"gauge.response.root": 2,
"gauge.response.metrics": 3,
"gauge.response.metrics": 3,
"classes": 5808,
"classes": 5808,
...
@@ -614,7 +616,8 @@ decrement). Metrics for all HTTP requests are automatically recorded, so if you
...
@@ -614,7 +616,8 @@ decrement). Metrics for all HTTP requests are automatically recorded, so if you
Here we can see basic `memory`, `heap`, `class loading`, `processor` and `thread pool`
Here we can see basic `memory`, `heap`, `class loading`, `processor` and `thread pool`
information along with some HTTP metrics. In this instance the `root` (``/'') and `/metrics`
information along with some HTTP metrics. In this instance the `root` (``/'') and `/metrics`
URLs have returned `HTTP 200` responses `20` and `3` times respectively. It also appears
URLs have returned `HTTP 200` responses `20` and `3` times respectively. It also appears
that the `root` URL returned `HTTP 401` (unauthorized) `4` times.
that the `root` URL returned `HTTP 401` (unauthorized) `4` times. The double asterix (`**`)
comes from a request matched by Spring MVC as `/**` (normally a static resource).
The `gauge` shows the last response time for a request. So the last request to `root` took
The `gauge` shows the last response time for a request. So the last request to `root` took
`2ms` to respond and the last to `/metrics` took `3ms`.
`2ms` to respond and the last to `/metrics` took `3ms`.
...
...
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