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
6c144202
Commit
6c144202
authored
Apr 18, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.4.x' into 1.5.x
parents
b2ae6b5f
63cfad85
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
3 deletions
+31
-3
.editorconfig
.editorconfig
+2
-0
StatsdMetricWriter.java
...ework/boot/actuate/metrics/statsd/StatsdMetricWriter.java
+13
-2
StatsdMetricWriterTests.java
.../boot/actuate/metrics/statsd/StatsdMetricWriterTests.java
+16
-1
No files found.
.editorconfig
View file @
6c144202
...
...
@@ -3,7 +3,9 @@ root=true
[*.java]
indent_style = tab
indent_size = 4
continuation_indent_size = 8
[*.xml]
indent_style = tab
indent_size = 4
continuation_indent_size = 8
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/statsd/StatsdMetricWriter.java
View file @
6c144202
...
...
@@ -39,6 +39,7 @@ import org.springframework.util.StringUtils;
* a gauge.
*
* @author Dave Syer
* @author Odín del Río
* @since 1.3.0
*/
public
class
StatsdMetricWriter
implements
MetricWriter
,
Closeable
{
...
...
@@ -87,12 +88,13 @@ public class StatsdMetricWriter implements MetricWriter, Closeable {
@Override
public
void
increment
(
Delta
<?>
delta
)
{
this
.
client
.
count
(
delta
.
getName
(),
delta
.
getValue
().
longValue
());
this
.
client
.
count
(
sanitizeMetricName
(
delta
.
getName
()),
delta
.
getValue
().
longValue
());
}
@Override
public
void
set
(
Metric
<?>
value
)
{
String
name
=
value
.
getName
(
);
String
name
=
sanitizeMetricName
(
value
.
getName
()
);
if
(
name
.
contains
(
"timer."
)
&&
!
name
.
contains
(
"gauge."
)
&&
!
name
.
contains
(
"counter."
))
{
this
.
client
.
recordExecutionTime
(
name
,
value
.
getValue
().
longValue
());
...
...
@@ -117,6 +119,15 @@ public class StatsdMetricWriter implements MetricWriter, Closeable {
this
.
client
.
stop
();
}
/**
* Sanitize the metric name if necessary.
* @param name The metric name
* @return The sanitized metric name
*/
private
String
sanitizeMetricName
(
String
name
)
{
return
name
.
replace
(
":"
,
"-"
);
}
private
static
final
class
LoggingStatsdErrorHandler
implements
StatsDClientErrorHandler
{
...
...
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/metrics/statsd/StatsdMetricWriterTests.java
View file @
6c144202
/*
* Copyright 2012-201
6
the original author or authors.
* Copyright 2012-201
7
the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
...
...
@@ -36,6 +36,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* Tests for {@link StatsdMetricWriter}.
*
* @author Dave Syer
* @author Odín del Río
*/
public
class
StatsdMetricWriterTests
{
...
...
@@ -97,6 +98,20 @@ public class StatsdMetricWriterTests {
assertThat
(
this
.
server
.
messagesReceived
().
get
(
0
)).
isEqualTo
(
"my.gauge.foo:3|g"
);
}
@Test
public
void
incrementMetricWithInvalidCharsInName
()
throws
Exception
{
this
.
writer
.
increment
(
new
Delta
<
Long
>(
"counter.fo:o"
,
3L
));
this
.
server
.
waitForMessage
();
assertThat
(
this
.
server
.
messagesReceived
().
get
(
0
)).
isEqualTo
(
"me.counter.fo-o:3|c"
);
}
@Test
public
void
setMetricWithInvalidCharsInName
()
throws
Exception
{
this
.
writer
.
set
(
new
Metric
<
Long
>(
"gauge.f:o:o"
,
3L
));
this
.
server
.
waitForMessage
();
assertThat
(
this
.
server
.
messagesReceived
().
get
(
0
)).
isEqualTo
(
"me.gauge.f-o-o:3|g"
);
}
private
static
final
class
DummyStatsDServer
implements
Runnable
{
private
final
List
<
String
>
messagesReceived
=
new
ArrayList
<
String
>();
...
...
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