Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Add datadog APM support #115

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/richie/templates/app/bc.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ spec:
source:
dockerfile: |-
FROM {{ richie_image_name }}:{{ richie_image_tag }}
# Add new statements here
USER 0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why creating a BC who do nothing if we have no apm ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To take advantage of the cluster's docker repository and speed up image pulling. We only create a IS/BC for our public images that will:

  1. will be updated frequently
  2. requires further customization given a customer and an env_type

{% if is_apm_enabled -%}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add a comment line because this Dockerfile extract will receive several separate augmentations?

RUN pip install ddtrace
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This code is only for datadog so why the variable is named is_apm_enabled ?
If we use an other APM we need a new name.
I propose is_apm_datadog_enabled, if we add newrelic whe can use is_apm_newrelic_enabled.

Or we can specify the APM name on the variable, so s_apm_enabled can ave the value (false, datadog, newrelic, etc.)

CMD ddtrace-run gunicorn -c /usr/local/etc/gunicorn/richie.py richie.wsgi:application
{% endif -%}
USER 10000
triggers:
- type: "ConfigChange"
output:
Expand Down
12 changes: 12 additions & 0 deletions apps/richie/templates/app/dc.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ spec:
value: "{{ richie_host }}"
- name: ES_CLIENT
value: "richie-{{ richie_elasticsearch_host }}-{{ deployment_stamp }}"
{% if is_apm_enabled -%}
- name: DATADOG_TRACE_AGENT_HOSTNAME
valueFrom:
fieldRef:
fieldPath: status.hostIP
- name: DD_AGENT_SERVICE_HOST
valueFrom:
fieldRef:
fieldPath: status.hostIP
- name: DD_AGENT_SERVICE_PORT
value: "{{ apm_agent_port }}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a default value ?

{% endif -%}
envFrom:
- secretRef:
name: richie-{{ secret_id }}
Expand Down