We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It looks like the Java agent is missing Queue as a TransportType as listed in the agent specs. In the agent and code:
public enum TransportType { Unknown, HTTP, HTTPS, Kafka, JMS, IronMQ, AMQP, Other }
The agent spec lists these and the DT team said they are required:
The parent.transportType intrinsic attribute's value may be one of these valid types:
"Unknown"
"HTTP"
"HTTPS"
"Kafka"
"JMS"
"IronMQ"
"AMQP"
"Queue"
"Other"
The text was updated successfully, but these errors were encountered:
https://new-relic.atlassian.net/browse/NR-346973
Sorry, something went wrong.
No branches or pull requests
It looks like the Java agent is missing Queue as a TransportType as listed in the agent specs. In the agent and code:
public enum TransportType {
Unknown,
HTTP,
HTTPS,
Kafka,
JMS,
IronMQ,
AMQP,
Other
}
The agent spec lists these and the DT team said they are required:
The parent.transportType intrinsic attribute's value may be one of these valid types:
"Unknown"
"HTTP"
"HTTPS"
"Kafka"
"JMS"
"IronMQ"
"AMQP"
"Queue"
"Other"
The text was updated successfully, but these errors were encountered: