forked from odenny/hydra
-
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.
- Loading branch information
Showing
11 changed files
with
219 additions
and
8 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
modules/hydra-client/src/main/java/com/jd/bdp/hydra/wrapper/TraceCallable.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,39 @@ | ||
package com.jd.bdp.hydra.wrapper; | ||
|
||
import com.jd.bdp.hydra.Span; | ||
import com.jd.bdp.hydra.agent.Tracer; | ||
|
||
import java.util.concurrent.Callable; | ||
|
||
/** | ||
* Date: 13-5-29 | ||
* Time: 上午9:44 | ||
*/ | ||
public class TraceCallable<V> implements Callable<V> { | ||
|
||
private final Callable<V> impl; | ||
private final Span parent; | ||
private final Tracer tracer = Tracer.getTracer(); | ||
|
||
public TraceCallable(Callable<V> impl) { | ||
this.parent = tracer.getParentSpan(); | ||
this.impl = impl; | ||
} | ||
|
||
public TraceCallable(Span parent, Callable<V> impl) { | ||
this.impl = impl; | ||
this.parent = parent; | ||
} | ||
|
||
@Override | ||
public V call() throws Exception { | ||
if (parent != null) { | ||
tracer.setParentSpan(parent); | ||
} | ||
return impl.call(); | ||
} | ||
|
||
public Callable<V> getImpl() { | ||
return impl; | ||
} | ||
} |
113 changes: 113 additions & 0 deletions
113
modules/hydra-client/src/main/java/com/jd/bdp/hydra/wrapper/TraceExecutorService.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,113 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.jd.bdp.hydra.wrapper; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
import java.util.concurrent.*; | ||
|
||
|
||
public class TraceExecutorService implements ExecutorService { | ||
|
||
private final ExecutorService impl; | ||
|
||
public TraceExecutorService(ExecutorService impl) { | ||
this.impl = impl; | ||
} | ||
|
||
@Override | ||
public void execute(Runnable command) { | ||
impl.execute(new TraceRunnable(command)); | ||
} | ||
|
||
@Override | ||
public void shutdown() { | ||
impl.shutdown(); | ||
} | ||
|
||
@Override | ||
public List<Runnable> shutdownNow() { | ||
return impl.shutdownNow(); | ||
} | ||
|
||
@Override | ||
public boolean isShutdown() { | ||
return impl.isShutdown(); | ||
} | ||
|
||
@Override | ||
public boolean isTerminated() { | ||
return impl.isTerminated(); | ||
} | ||
|
||
@Override | ||
public boolean awaitTermination(long timeout, TimeUnit unit) | ||
throws InterruptedException { | ||
return impl.awaitTermination(timeout, unit); | ||
} | ||
|
||
@Override | ||
public <T> Future<T> submit(Callable<T> task) { | ||
return impl.submit(new TraceCallable<T>(task)); | ||
} | ||
|
||
@Override | ||
public <T> Future<T> submit(Runnable task, T result) { | ||
return impl.submit(new TraceRunnable(task), result); | ||
} | ||
|
||
@Override | ||
public Future<?> submit(Runnable task) { | ||
return impl.submit(new TraceRunnable(task)); | ||
} | ||
|
||
private <T> Collection<? extends Callable<T>> wrapCollection( | ||
Collection<? extends Callable<T>> tasks) { | ||
List<Callable<T>> result = new ArrayList<Callable<T>>(); | ||
for (Callable<T> task : tasks) { | ||
result.add(new TraceCallable<T>(task)); | ||
} | ||
return result; | ||
} | ||
|
||
@Override | ||
public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) | ||
throws InterruptedException { | ||
return impl.invokeAll(wrapCollection(tasks)); | ||
} | ||
|
||
@Override | ||
public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, | ||
long timeout, TimeUnit unit) throws InterruptedException { | ||
return impl.invokeAll(wrapCollection(tasks), timeout, unit); | ||
} | ||
|
||
@Override | ||
public <T> T invokeAny(Collection<? extends Callable<T>> tasks) | ||
throws InterruptedException, ExecutionException { | ||
return impl.invokeAny(wrapCollection(tasks)); | ||
} | ||
|
||
@Override | ||
public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, | ||
TimeUnit unit) throws InterruptedException, ExecutionException, | ||
TimeoutException { | ||
return impl.invokeAny(wrapCollection(tasks), timeout, unit); | ||
} | ||
|
||
} |
32 changes: 32 additions & 0 deletions
32
modules/hydra-client/src/main/java/com/jd/bdp/hydra/wrapper/TraceRunnable.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.jd.bdp.hydra.wrapper; | ||
|
||
import com.jd.bdp.hydra.Span; | ||
import com.jd.bdp.hydra.agent.Tracer; | ||
|
||
/** | ||
* Date: 13-5-29 | ||
* Time: 上午9:50 | ||
*/ | ||
public class TraceRunnable implements Runnable{ | ||
private final Span parent; | ||
private final Runnable runnable; | ||
private Tracer tracer = Tracer.getTracer(); | ||
|
||
|
||
public TraceRunnable(Runnable r){ | ||
this.parent = tracer.getParentSpan(); | ||
this.runnable = r; | ||
} | ||
|
||
public TraceRunnable(Runnable r, Span p){ | ||
this.runnable = r; | ||
this.parent = p; | ||
} | ||
@Override | ||
public void run() { | ||
if(parent != null){ | ||
tracer.setParentSpan(parent); | ||
} | ||
runnable.run(); | ||
} | ||
} |
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
Binary file added
BIN
+8.57 KB
modules/hydra-web/src/main/webapp/statics/img/glyphicons-halflings-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.5 KB
modules/hydra-web/src/main/webapp/statics/img/glyphicons-halflings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
2 changes: 1 addition & 1 deletion
2
...b/src/main/webapp/statics/lib/bootstrap/datetimepicker/js/bootstrap-datetimepicker.min.js
Large diffs are not rendered by default.
Oops, something went wrong.