Skip to content

Commit

Permalink
change http url targets
Browse files Browse the repository at this point in the history
  • Loading branch information
breedx-splk committed Dec 13, 2023
1 parent 0e618b1 commit ec2abe6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {
v -> {
Span workflow = splunkRum.startWorkflow("User Login");
// not really a login, but it does make an http call
makeCall("https://pmrum.o11ystore.com?user=me&pass=secret123secret", workflow);
makeCall("https://frontend-us.o11ystore.com/?user=me&pass=secret123secret", workflow);
// maybe this call gave us a real customer id, so let's put it into the global
// attributes
splunkRum.setGlobalAttribute(longKey("customerId"), 123456L);
Expand All @@ -100,7 +100,7 @@ public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {
binding.httpMeNotFound.setOnClickListener(
v -> {
Span workflow = splunkRum.startWorkflow("Workflow with 404");
makeCall("https://pmrum.o11ystore.com/foobarbaz", workflow);
makeCall("https://frontend-us.o11ystore.com/foobarbaz", workflow);
});

binding.volleyRequest.setOnClickListener(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*/
public class VolleyExample {

private static final String URL = "https://pmrum.o11ystore.com?user=me&pass=secret123secret";
private static final String URL = "https://frontend-us.o11ystore.com?user=me&pass=secret123secret";
private final SplunkRum splunkRum;

public VolleyExample(SplunkRum splunkRum) {
Expand Down

0 comments on commit ec2abe6

Please sign in to comment.