Skip to content

Commit

Permalink
Improve configuration for telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
bensofficial committed Sep 5, 2024
1 parent d3104ff commit 5117280
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion roles/artemis/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ artemis_notification_from: "Artemis Notification"

artemis_telemetry_enabled: true
artemis_send_admin_details: true
artemis_telemetry_destination: "telemetry.artemis.cit.tum.de"
artemis_telemetry_destination: "https://telemetry.artemis.cit.tum.de"

artemis_working_directory: "/opt/artemis"
artemis_repo_basepath: "."
Expand Down
4 changes: 2 additions & 2 deletions roles/artemis/templates/application-prod.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ artemis:
{% endif %}

telemetry:
enabled: {{ artemis_telemetry_enabled }}
sendAdminDetails: {{ artemis_send_admin_details }}
enabled: {{ artemis_telemetry_enabled | lower }}
sendAdminDetails: {{ artemis_send_admin_details | lower }}
destination: {{ artemis_telemetry_destination }}
{% endif %}

Expand Down
4 changes: 2 additions & 2 deletions roles/artemis/templates/artemis.env.j2
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ ARTEMIS_IRIS_SECRETTOKEN='{{ iris.secret }}'
{% if enable_science_event_logging is defined %}
ARTEMIS_SCIENCE_EVENTLOGGING_ENABLE='{{ enable_science_event_logging | lower }}'
{% endif %}
ARTEMIS_TELEMETRY_ENABLED='{{ artemis_telemetry_enabled }}'
ARTEMIS_TELEMETRY_SENDADMINDETAILS='{{ artemis_send_admin_details }}'
ARTEMIS_TELEMETRY_ENABLED='{{ artemis_telemetry_enabled | lower }}'
ARTEMIS_TELEMETRY_SENDADMINDETAILS='{{ artemis_send_admin_details | lower }}'
ARTEMIS_TELEMETRY_DESTINATION='{{ artemis_telemetry_destination }}'
{% if theia is defined and theia is not none %}
{% if theia.portal_url is defined and theia.portal_url is not none %}
Expand Down

0 comments on commit 5117280

Please sign in to comment.