You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/framework-takipi_agent.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,11 +36,21 @@ The framework can be configured by modifying the [`config/takipi_agent.yml`][] f
36
36
| `node_name_prefix` | Node name prefix, will be concatenated with `-` and instance index
37
37
| `application_name` | Override the CloudFoundry default application name
38
38
39
+
### Remarks
40
+
In case **Java 9+** is being used, 2 JVM flags will be added to the execution:
41
+
| Name | Description
42
+
| ---- | -----------
43
+
| `-XX:-UseTypeSpeculation` | Disable type speculation optimization of the JVM which might not work properly in some situations where an agent is present.
44
+
| `-Xshare:off` | Disable class sharing as it might affect the agent's bytecode manipulation work.
45
+
46
+
These two flags are needs as otherwise the agent or the JVM might not work properly together.
47
+
39
48
## Logs
40
49
41
-
Currently, you can get the Takipi agent logs using `cf files` command:
50
+
Currently, you can view the Takipi agent logs using the `cf ssh` command:
0 commit comments