The DynaTrace Agent Framework causes an application to be automatically configured to work with a bound DynaTrace Service instance (Free trials available).
The applications Cloud Foundry name is used as the agent group
in DynaTrace, and must be pre-configured on the DynaTrace server.
NOTE
- The DynaTrace agent slows down app execution significantly at first, but gets faster over time. Setting the application manifest to contain
maximum_health_check_timeout
of 180 or more and/or usingcf push -t 180
or more when pushing a DynaTrace-monitored application may help. - Multiple
cf push
s will cause dead penguins to build up in the DynaTrace agent dashboard, as CF launches/disposes application containers. These can be hidden but will collect in the dynatrace database.
Detection Criterion | Existence of a single bound DynaTrace service.
|
Tags | dyna-trace-agent=<version> |
Users must provide their own DynaTrace service. A user-provided DynaTrace service must have a name or tag with dynatrace
in it so that the DynaTrace Agent Framework will automatically configure the application to work with the service.
The credential payload of the service may contain the following entries:
Name | Description |
---|---|
server |
The DynaTrace collector hostname to connect to. Use host:port format for a specific port number. |
profile |
(Optional) The DynaTrace server profile this is associated with. Uses Monitoring by default. |
NOTE
Be sure to open an Application Security Group to your DynaTrace collector prior to starting the application:
$ cat security.json
[
{
"protocol": "tcp",
"destination": "dynatrace_host",
"ports": "9998"
}
]
$ cf create-security-group dynatrace_group ./security.json
Creating security group dynatrace_group as admin
OK
$ cf bind-running-security-group dynatrace_group
Binding security group dynatrace_group to defaults for running as admin
OK
TIP: Changes will not apply to existing running applications until they are restarted.
For general information on configuring the buildpack, refer to Configuration and Extension.
The framework can be configured by modifying the config/dyna_trace_agent.yml
file in the buildpack fork. The framework uses the Repository
utility support and so it supports the version syntax defined there.
Name | Description |
---|---|
repository_root |
The URL of the DynaTrace repository index (details). |
version |
The version of DynaTrace to use. This buildpack framework has been tested on 6.1.0. |
The framework can also be configured by overlaying a set of resources on the default distribution. To do this, add files to the resources/dyna_trace_agent
directory in the buildpack fork.