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

Allow the user-agent to be overridden #277

Closed
wants to merge 2 commits into from
Closed

Allow the user-agent to be overridden #277

wants to merge 2 commits into from

Conversation

msailes
Copy link
Collaborator

@msailes msailes commented Nov 11, 2021

Allow the user-agent to be overridden by 3rd party developers of the runtime-interface-client.

Issue #, if available:
None

Description of changes:
When the aws-lambda-java-runtime-interface-client makes requests to the Lambda Runtime API it does them with a specific user-agent. This allows tracking and analysis of the clients and their versions.

Now that the aws-lambda-java-runtime-interface-client is being used by 3rd party framework developers it would be advantageous to be able to differentiate them.

This change introduces two additional ways that the user-agent can be overridden from the default. The original implementation sends 3 strings in the following format '%s/%s-%s'.

String userAgent = String.format(
        "aws-lambda-java/%s-%s" ,
        System.getProperty("java.vendor.version"),
        NativeClient.class.getPackage().getImplementationVersion());

The proposal allows for an override of the first string 'aws-lambda-java' if the env var 'RUNTIME_CLIENT' is present. If it is not then the default of 'aws-lambda-java' is used.

An override of the third string which is the pom version id with the env var 'RUNTIME_CLIENT_VERSION' if it is present. If it is not then the original implementation is used.

This change will introduce no changes to the user-agent for typical usage. It will allow 3rd party framework developers to set environment variables in bootstrap scripts to override the user-agent.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

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.

2 participants