-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update/akka-actor-2.6.15
- Loading branch information
Showing
144 changed files
with
3,888 additions
and
1,696 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ target/ | |
*.log.* | ||
*.sh | ||
.vscode/ | ||
.metals/ | ||
.metals/ | ||
.bloop/ |
1 change: 0 additions & 1 deletion
1
agent/src/main/java/io/scalac/mesmer/agent/akka/actor/ProxiedQueue.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
12 changes: 12 additions & 0 deletions
12
agent/src/main/java/io/scalac/mesmer/agent/akka/actor/impl/ActorCellInitAdvice.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,12 @@ | ||
package io.scalac.mesmer.agent.akka.actor.impl; | ||
|
||
import io.scalac.mesmer.core.actor.ActorCellMetrics; | ||
import net.bytebuddy.asm.Advice; | ||
|
||
public class ActorCellInitAdvice { | ||
|
||
@Advice.OnMethodEnter | ||
public static void initActorCell(@Advice.FieldValue(value = "_actorCellMetrics", readOnly = false) ActorCellMetrics metrics) { | ||
metrics = new ActorCellMetrics(); | ||
} | ||
} |
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
15 changes: 15 additions & 0 deletions
15
agent/src/main/java/io/scalac/mesmer/agent/akka/http/HttpExtRequestsAdvice.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,15 @@ | ||
package io.scalac.mesmer.agent.akka.http; | ||
|
||
import akka.http.scaladsl.HttpExt; | ||
import akka.http.scaladsl.model.HttpRequest; | ||
import akka.http.scaladsl.model.HttpResponse; | ||
import akka.stream.scaladsl.Flow; | ||
import net.bytebuddy.asm.Advice; | ||
|
||
public class HttpExtRequestsAdvice { | ||
@Advice.OnMethodEnter | ||
public static void bindAndHandle(@Advice.Argument(value = 0, readOnly = false) Flow<HttpRequest, HttpResponse, Object> handler, | ||
@Advice.This Object self) { | ||
handler = HttpInstrumentation.bindAndHandleRequestImpl(handler, (HttpExt) self); | ||
} | ||
} |
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
agent/src/main/java/io/scalac/mesmer/agent/akka/stream/GraphStageIslandAdvice.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
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
18 changes: 0 additions & 18 deletions
18
...rc/main/scala/io/scalac/mesmer/agent/akka/actor/ActorCellConstructorInstrumentation.scala
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
...main/scala/io/scalac/mesmer/agent/akka/actor/ActorCellReceiveMessageInstrumentation.scala
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
...rc/main/scala/io/scalac/mesmer/agent/akka/actor/ActorCellSendMessageInstrumentation.scala
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
agent/src/main/scala/io/scalac/mesmer/agent/akka/actor/ActorUnhandledInstrumentation.scala
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.