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

Add telemetry hooks #53

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

roshan
Copy link

@roshan roshan commented Mar 5, 2025

This PR adds telemetry hooks to the Clerk Java SDK

Example messages
Mar 05 00:53:10 --> {"event":"METHOD_CALLED","it":"development","sdk":"com.clerk:backend-api","sdkv":"1.5.0","sk":"sk_test_key","payload":{"method":"GetUserList"}}
Mar 05 00:53:11 [server] event: connection (socket#7)
Mar 05 00:53:11 [socket#7] event: resume
Mar 05 00:53:11 [socket#7] event: data
Mar 05 00:53:11 --> POST / HTTP/1.1
Mar 05 00:53:11 --> Content-Type: application/json
Mar 05 00:53:11 --> Connection: close
Mar 05 00:53:11 --> User-Agent: Java/23.0.2
Mar 05 00:53:11 --> Host: localhost:3000
Mar 05 00:53:11 --> Accept: */*
Mar 05 00:53:11 --> Content-Length: 205
Mar 05 00:53:11 -->
Mar 05 00:53:11 --> {"event":"METHOD_SUCCEEDED","it":"development","sdk":"com.clerk:backend-api","sdkv":"1.5.0","sk":"sk_test_key","payload":{"method":"GetUserList","status_code":"200"}}

To create these, here's an example piece of code

Example hook exerciser
package org.example;

import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.operations.GetUserListResponse;

public class Main {
    public static void main(String[] args) throws Exception {
        Clerk clerk = Clerk.builder()
                .bearerAuth("sk_test_your_key_here")
                .build();

        for (int i = 0; i < 10; i++) {
            GetUserListResponse resp = clerk.users().list().call();
            System.out.println(resp);
            System.out.println(resp.userList().map(x -> x.getFirst().emailAddresses()));
            Thread.sleep(1000);
        }
    }
}

As before, we're adding

  • Three Speakeasy hooks:
    • Not SDKInit because that isn't yet supported for us because we can't get to the sk yet
  • A random sampler that filters out 90% of events
  • A deduplication sampler that ensures that a single process only fires one event per day
  • Skipping via CLERK_TELEMETRY_DISABLED=1
  • Debugging via CLERK_TELEMETRY_DEBUG=1
  • A few unit tests for each of the bits.
  • A pom.properties resource file to keep version information in an accessible place for later
    • If someone knows a less invasive way let me know

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant