Allows pushing deployment event data to Dynatrace Allows pulling performance metrics from Dynatrace to validate builds Used within the PivotalDevOpsPipeline demo
resource_types:
- name: dynatrace-resource
type: docker-image
source:
repository: mvilliger/dynatrace-resource
- name: dynatrace
type: dynatrace-resource
source:
apitoken: sampleapitoken
tenanthost: sampletenanthost
Pushes a deployment event to Dynatrace to the service specified in the monspec file
Required:
APP_REPO
: Must match name of resource containing monspec filemonspecserviceenvironment
: Must match toplevel entry in monspec file plus environment name, i.e. "SampleJSonService/Staging"pipelinetaskname
: Label for the task/job being executed, i.e.: "TestStagingDeployment"deployversion
: a version number for the release, i.e.: "v1.4", will not be used if VERSION_FILE is definedVERSION_FILE
: points to file used to track version, i.e. when using the semver resource, overwrites deployversion
A sample pipeline utilizing this resource can be found in the PivotalDevOpsPipeline repo.