Skip to content

Latest commit

 

History

History
170 lines (121 loc) · 7.16 KB

CHANGELOG.md

File metadata and controls

170 lines (121 loc) · 7.16 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased & outstanding issues]

  • Non-https repo url and apt fetching

[1.6.2] - 2019-02-28

When pinning Datadog Agent versions, previous buildpacks pulled old versions from the buildpack cache causing availability to be unreliable. The buildpack now pulls old versions from apt.

Changed

  • The buildpack now pulls old versions from apt.
  • Updated documentation around system metrics.

[1.6.1] - 2019-02-05

Fixed the python path generation code. In between 1.6.0 and 1.6.1 the buildpack added trace search configs to the datadog.yaml file. This has been removed as support for the DD_APM_ANALYZED_SPANS environment variable is directly supported by the Agent.

Changed

  • Python path generation for embedded python site packages has been fixed.

[1.6.0] - 2018-11-08

Updated the run script to provide a better way for users to arbitrarily modify the environment and configurations.

Added

  • Added prerun.sh support so users can modify the environment and configurations
  • Added appropriate documentation. Thanks to abtreece for the postgres auto config idea!

Changed

  • Updated the way python_path is built to be more reliable (uses find instead of ls)
  • Updated the postgres integration documentation to include more details, including ssl enabling (required by hosted Heroku postgres)

[1.5.0] - 2018-08-27

External keyservers were becoming an issue for reliability so the Datadog public key has been added to the buildpack. A few updates were made regarding Agent versioning and the documentation was clarified.

Added

  • Added the Datadog public PGP key.
  • Invalid pinned versions of the Datadog Agent now returns a list of valid options.

Changed

  • Now uses the included PGP key to validate the Datadog package
  • Datadog Agent from version 6.4.1 now uses the run command. Previous versions will still use start

[1.4.1] - 2018-08-20

Thanks to pawelchcki for spotting that the integration support lacked a check if no integration files existed. This update fixes an issue where the Datadog Trace Agent may fail to start or drop traces.

Added

  • A small check to ensure integration configuration files exist when running logic to import them.

[1.4.0] - 2018-07-31

Thanks to lucasm-iRonin for adding functionality to support Datadog Agent integrations!

Changed

  • Now using sks-keyservers instead of ubuntu keyservers. This should increase reliability

Added

  • Basic Datadog Agent integration support.

Removed

  • Removed docs referencing Datadog documentation site. That site will soon pull from this repo.

[1.3.4] - 2018-06-11

Thanks to dreid for help resolving the apt-key issue, fixing compatibility with the Heroku-18 stack.

Changed

  • Fixed apt-key issue, buildpack compatibility with Heroku-18 stack.
  • Fixed PYTHONPATH issue preventing python-based core integrations from running.
  • Set APM log location resulting in log location related errors. APM log is now at /app/.apt/etc/datadog/datadog-apm.log

[1.3.3] - 2018-06-01

Changed

  • Removed dynohost tag

[1.3.2] - 2018-05-21

Hostnames are not always RFC1123 compliant. Invalid hostnames led to unexpected non-reporting.

Changed

  • Updated documentation to mention enabling Heroku Labs metadata (required for DD_DYNO_HOST)

Added

  • Added a check for non-compliant hostnames. Buildpack will rename and throw a warning

[1.3.1] - 2018-04-26

Using dyno name as hostname was not properly namespaced, so multiple apps would have dyno hostname collisions. Appname has been added to prevent this.

Changed

  • DD_DYNO_HOST reports hosts as appname.dynoname.

[1.3.0] - 2018-04-24

Fixed an issue where custom tags completely override the built-in tags for dyno information. Added a switch to change the hostname from host to dyno. This will provide some flexibility and control in how you are billed by Datadog.

Changed

  • DD_TAGS will now merge with other tags set by the buildpack, rather than overriding them.

Added

  • DD_DYNO_HOST will allow you to set the agent hostname to the dyno name, rather than host.
  • Added a tag for dynotype.

[1.2.0] - 2018-04-11

Changed buildpack to use dyno hostnames rather than setting the application name as the hostname. Though the previous method helped simplify continuity, it led to metrics aggregation errors for applications running many dynos. The application name is now available under the "appname" tag when Heroku Labs Dyno Metadata is enabled or the "HEROKU_APP_NAME" environment variable is set.

Changed

  • Hostname will default to dyno host name, unless DD_HOSTNAME is set (not recommended)

Added

  • Application name added as "appname" tag.

Removed

  • Removed README documentation about histogram percentiles and APM that were not specific to the buildpack. See https://docs.datadoghq.com for information about those features.

[1.1.0] - 2018-03-15

Start the Trace Agent.

Changed

  • Removed Trace Agent config file code. The Trace Agent now uses the main datadog.yaml file.
  • Updated the README file to document DD_APM_ENABLED.

Added

  • Datadog Agent 6 no longer starts the Trace Agent (was moved to systemd service for Linux systems). Added code to start the Trace Agent.

[1.0.1] - 2018-03-02

Resolved issue with dpkg and multiple packages available

Changed

  • Includes a fix from Zunda that limits the dpkg install to the latest package.

[1.0.0] - 2018-02-28

Updated the buildpack to use stable releases and removed alpha flag (because nobody really knows what that means anyway ;))

Changed

  • Updated the apt repo to use stable 6 (no longer beta)
  • Incorporates a parameter change that resolved problems in beta rc releases (Thanks Zunda!)

[1.0.0-alpha2] - 2018-02-05

Mostly fixes and a small feature.

Added

  • If no Datadog Agent version has been pinned, the build process will tell you how to pin the current version.

Changed

  • Updated the runner script to insert tags in the correct location in the conf file.
  • Env vars are not automatically loaded when building slugs, so the previous version pinning didn't work.

[1.0.0-alpha1] - 2017-11-21

The buildpack was re-written to use the new Datadog Agent 6 and gather full system metrics.

Added

  • Added an Apache 2 license.
  • Added a notice file with copyright info.
  • Added a way to pin Datadog Agent versions.
  • Added a changelog.
  • Added a more comprehensive "Contributing" section to the readme.

Changed

  • Updated from the Datadag Agent 5 to Agent 6. This includes the main agent and the trace agent.

Removed

  • Deprecated env vars that no longer apply in Agent 6

[legacy] - 2017-11-21

Note that the previous Agent-5-based version of the buildpack is now available using the legacy tag. To continue using this old version, you can update your app by running:

# Remove the old untagged buildpack
heroku buildpacks:remove https://github.com/DataDog/heroku-buildpack-datadog.git
# Add the tagged version of the buildpack
heroku buildpacks:add --index 1 https://github.com/DataDog/heroku-buildpack-datadog.git#legacy