Skip to content

Commit

Permalink
Adding new production instance id
Browse files Browse the repository at this point in the history
  • Loading branch information
Janusz Jakubiec authored and Janusz Jakubiec committed May 8, 2023
1 parent 7ffe85a commit 662cb8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion big_tests/tests/service_mongoose_system_metrics_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
-define(SERVER_URL, "http://localhost:8765").
-define(ETS_TABLE, qs).
-define(TRACKING_ID, #{id => "G-7KQE4W9SVJ", secret => "Secret"}).
-define(TRACKING_ID_CI, #{id => "G-7KQE4W9SVJ", secret => "Secret2"}).
-define(TRACKING_ID_CI, #{id => "G-VB91V60SKT", secret => "Secret2"}).
-define(TRACKING_ID_EXTRA, #{id => "UA-EXTRA-TRACKING-ID", secret => "Secret3"}).

-record(event, {
Expand Down
8 changes: 4 additions & 4 deletions src/system_metrics/service_mongoose_system_metrics.erl
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
-ifdef(PROD_NODE).
% The value "Secret" here is an app id from Google Analytics.
% We refer to it as "Secret" because it is named there that way.
-define(TRACKING_ID, #{id => "G-7KQE4W9SVJ",
secret => "8P4wQIkwSV6zay22uKsnLg"}).
-define(TRACKING_ID, #{id => "G-B4S18X6KY5",
secret => "Rj6lopOLQZ2HPLj50QtYeQ"}).
-else.
-define(TRACKING_ID, #{id => "G-7KQE4W9SVJ",
secret => "8P4wQIkwSV6zay22uKsnLg"}).
-endif.
-define(TRACKING_ID_CI, #{id => "G-7KQE4W9SVJ",
secret => "8P4wQIkwSV6zay22uKsnLg"}).
-define(TRACKING_ID_CI, #{id => "G-VB91V60SKT",
secret => "LFxdCgDsSa-OAPtBnLDqpQ"}).

-include("mongoose.hrl").

Expand Down

0 comments on commit 662cb8e

Please sign in to comment.