Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
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
openSource
spring-cloud-netflix
Commits
d23aa67f
Unverified
Commit
d23aa67f
authored
Oct 11, 2016
by
Spencer Gibb
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1370 from tiny-dancer/master
* pull1370: Warning for GC Overhead Limit Reached with servo.
parents
aa160940
5a127d07
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
spring-cloud-netflix.adoc
docs/src/main/asciidoc/spring-cloud-netflix.adoc
+12
-0
No files found.
docs/src/main/asciidoc/spring-cloud-netflix.adoc
View file @
d23aa67f
...
...
@@ -1758,6 +1758,18 @@ If Spring AOP is enabled and `org.aspectj:aspectjweaver` is present on your runt
3.
URI
,
sanitized
for
Atlas
4.
Client
name
WARNING
:
Avoid
using
hardcoded
url
parameters
within
`
RestTemplate
`.
When
targeting
dynamic
endpoints
use
URL
variables
.
This
will
avoid
potential
"GC Overhead Limit Reached"
issues
where
`
ServoMonitorCache
`
treats
each
url
as
a
unique
key
.
[
source
,
java
,
indent
=
0
]
----
//
recommended
String
orderid
=
"1"
;
restTemplate
.
getForObject
(
"http://testeurekabrixtonclient/orders/{orderid}"
,
String
.
class
,
orderid
)
//
avoid
restTemplate
.
getForObject
(
"http://testeurekabrixtonclient/orders/1"
,
String
.
class
)
----
[[
netflix
-
metrics
-
spectator
]]
===
Metrics
Collection
:
Spectator
...
...
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