forked from Netflix/Hystrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hack Hystrix Dashbaord to have a select which loads eureka apps so yo…
…u dont need to type it
- Loading branch information
Diego Pacheco
committed
May 4, 2016
1 parent
f5b2019
commit 0d9d1b6
Showing
11 changed files
with
106 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
hystrix-dashboard/src/main/java/com/netflix/hystrix/dashboard/eureka/EurekaService.java
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
hystrix-dashboard/src/main/java/com/netflix/hystrix/dashboard/eureka/EurekaServiceInfo.java
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
hystrix-dashboard/src/main/java/com/netflix/hystrix/dashboard/eureka/pojos/Application.java
This file was deleted.
Oops, something went wrong.
54 changes: 0 additions & 54 deletions
54
hystrix-dashboard/src/main/java/com/netflix/hystrix/dashboard/eureka/pojos/Applications.java
This file was deleted.
Oops, something went wrong.
37 changes: 37 additions & 0 deletions
37
hystrix-dashboard/src/main/java/com/netflix/hystrix/dashboard/stream/EurekaInfoServlet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package com.netflix.hystrix.dashboard.stream; | ||
|
||
import java.io.IOException; | ||
|
||
import javax.servlet.ServletException; | ||
import javax.servlet.http.HttpServlet; | ||
import javax.servlet.http.HttpServletRequest; | ||
import javax.servlet.http.HttpServletResponse; | ||
|
||
import org.apache.commons.io.IOUtils; | ||
|
||
/** | ||
* Servlet that calls eureka REST api in order to get instances information. <BR> | ||
* You need provide a url parameter. i.e: eureka?url=http://127.0.0.1:8080/eureka/v2/apps | ||
* | ||
* @author diegopacheco | ||
* | ||
*/ | ||
public class EurekaInfoServlet extends HttpServlet { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { | ||
|
||
String uri = request.getParameter("url"); | ||
if (uri==null || "".equals(uri)) response.getOutputStream().write("Error. You need supply a valid eureka URL ".getBytes()); | ||
|
||
try{ | ||
response.setContentType("application/xml"); | ||
response.setHeader("Content-Encoding", "gzip"); | ||
IOUtils.copy( UrlUtils.readXmlInputStream(uri) ,response.getOutputStream()); | ||
}catch(Exception e){ | ||
response.getOutputStream().write(("Error. You need supply a valid eureka URL. Ex: " + e + "").getBytes()); | ||
} | ||
|
||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
hystrix-dashboard/src/main/java/com/netflix/hystrix/dashboard/stream/UrlUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package com.netflix.hystrix.dashboard.stream; | ||
|
||
import java.io.InputStream; | ||
import java.net.HttpURLConnection; | ||
import java.net.URL; | ||
|
||
/** | ||
* Utility class to work with InputStreams | ||
* | ||
* @author diegopacheco | ||
* | ||
*/ | ||
public class UrlUtils { | ||
|
||
public static InputStream readXmlInputStream(String uri){ | ||
|
||
if (uri==null || "".equals(uri)) throw new IllegalArgumentException("Invalid uri. URI cannot be null or blank. "); | ||
|
||
try{ | ||
URL url = new URL(uri); | ||
HttpURLConnection connection = (HttpURLConnection) url.openConnection(); | ||
connection.setRequestMethod("GET"); | ||
connection.setRequestProperty("Accept", "application/xml"); | ||
|
||
return connection.getInputStream(); | ||
|
||
}catch(Exception e){ | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
hystrix-dashboard/src/main/test/com/netflix/hystrix/dashboard/stream/UrlUtilsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.netflix.hystrix.dashboard.stream; | ||
|
||
import org.junit.Test; | ||
|
||
/** | ||
* UrlUtilsTest unit tests | ||
* | ||
* @author diegopacheco | ||
* | ||
*/ | ||
public class UrlUtilsTest { | ||
|
||
@Test(expected=IllegalArgumentException.class) | ||
public void testReadXmlInputStreamWithNull() { | ||
UrlUtils.readXmlInputStream(null); | ||
} | ||
|
||
@Test(expected=IllegalArgumentException.class) | ||
public void testReadXmlInputStreamWithBlank() { | ||
UrlUtils.readXmlInputStream(""); | ||
} | ||
|
||
} |
24 changes: 0 additions & 24 deletions
24
...ix-dashboard/src/main/test/com/netflix/hytrix/dashboard/eureka/EurekaServiceInfoTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters