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

chore: Switch from OTLP HTTP/protobuf (New Relic) to HTTP/JSON (Grafana) #37404

Open
wants to merge 1 commit into
base: release
Choose a base branch
from

Conversation

subhrashisdas
Copy link
Member

@subhrashisdas subhrashisdas commented Nov 15, 2024

Description

Tip

Add a TL;DR when the description is longer than 500 words or extremely technical (helps the content, marketing, and DevRel team).

Please also include relevant motivation and context. List any dependencies that are required for this change. Add links to Notion, Figma or any other documents that might be relevant to the PR.

Fixes #Issue Number
or
Fixes Issue URL

Warning

If no issue exists, please create an issue first, and check with the maintainers if the issue is valid.

Automation

/ok-to-test tags=""

🔍 Cypress test results

Warning

Tests have not run on the HEAD 065cddc yet


Fri, 15 Nov 2024 11:48:13 UTC

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Summary by CodeRabbit

  • New Features

    • Introduced new monitoring paths for telemetry data exports: /monitoring/traces and /monitoring/metrics.
    • Added a function to streamline URL management for telemetry exports.
  • Bug Fixes

    • Updated telemetry export protocols to enhance reliability and performance.
  • Chores

    • Updated multiple OpenTelemetry dependencies to their latest versions for improved functionality and security.

Copy link
Contributor

coderabbitai bot commented Nov 15, 2024

Walkthrough

The pull request includes updates to the package.json file to upgrade various OpenTelemetry dependencies to newer versions. Additionally, it modifies import statements in TypeScript files to switch from protobuf-based exporters to HTTP-based exporters for tracing and metrics. A new function for URL management is introduced in the telemetry configuration, and new monitoring routes are added to the Caddy configuration for handling telemetry data exports.

Changes

File Path Change Summary
app/client/package.json Updated multiple OpenTelemetry dependencies to newer versions.
app/client/packages/rts/src/instrumentation.ts Changed import of OTLPTraceExporter from @opentelemetry/exporter-trace-otlp-proto to @opentelemetry/exporter-trace-otlp-http.
app/client/src/UITelemetry/auto-otel-web.ts Updated telemetry configuration to use HTTP exporters and added addPathToCurrentUrl function for URL management. Removed otlpEndpoint.
deploy/docker/fs/opt/appsmith/caddy-reconfigure.mjs Added monitoringParts array for new telemetry paths with authorization and method restrictions.

Possibly related PRs

Suggested labels

ok-to-test

Suggested reviewers

  • rajatagrawal
  • vsvamsi1
  • ApekshaBhosale

🎉 In the code's dance, dependencies twirl,
OpenTelemetry's upgrades make our heads swirl.
From proto to HTTP, exports take flight,
Monitoring paths shine, oh what a sight!
With functions to guide and routes to explore,
Our telemetry's ready to gather much more! 🚀


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

rajatagrawal
rajatagrawal previously approved these changes Nov 15, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (2)
app/client/src/UITelemetry/auto-otel-web.ts (1)

120-126: Consider adding input validation and caching

The URL management function is clean but could be enhanced:

  1. Add input validation for the path parameter
  2. Consider caching frequently used paths to avoid repeated URL construction
+const urlCache = new Map<string, string>();
+
 function addPathToCurrentUrl(path: string) {
+  if (typeof path !== 'string') {
+    throw new TypeError('Path must be a string');
+  }
+  
+  const cacheKey = path;
+  if (urlCache.has(cacheKey)) {
+    return urlCache.get(cacheKey)!;
+  }
+
   const origin = window.location.origin;
   const currentUrl = new URL(origin);
   currentUrl.pathname = path.startsWith("/") ? path : `/${path}`;
-  return currentUrl.toString();
+  const result = currentUrl.toString();
+  urlCache.set(cacheKey, result);
+  return result;
 }
app/client/package.json (1)

75-84: Consider pinning exact versions for better reproducibility.

Using caret (^) in version ranges allows automatic minor version updates which might lead to inconsistent builds. Consider pinning exact versions for better reproducibility in production environments.

-    "@opentelemetry/auto-instrumentations-web": "^0.42.0",
-    "@opentelemetry/context-zone": "^1.27.0",
-    "@opentelemetry/core": "^1.27.0",
-    "@opentelemetry/exporter-metrics-otlp-http": "^0.54.2",
-    "@opentelemetry/exporter-trace-otlp-http": "^0.54.2",
-    "@opentelemetry/instrumentation": "^0.54.2",
-    "@opentelemetry/resources": "^1.27.0",
-    "@opentelemetry/sdk-metrics": "^1.27.0",
-    "@opentelemetry/sdk-trace-base": "^1.27.0",
-    "@opentelemetry/sdk-trace-web": "^1.27.0",
+    "@opentelemetry/auto-instrumentations-web": "0.42.0",
+    "@opentelemetry/context-zone": "1.27.0",
+    "@opentelemetry/core": "1.27.0",
+    "@opentelemetry/exporter-metrics-otlp-http": "0.54.2",
+    "@opentelemetry/exporter-trace-otlp-http": "0.54.2",
+    "@opentelemetry/instrumentation": "0.54.2",
+    "@opentelemetry/resources": "1.27.0",
+    "@opentelemetry/sdk-metrics": "1.27.0",
+    "@opentelemetry/sdk-trace-base": "1.27.0",
+    "@opentelemetry/sdk-trace-web": "1.27.0",
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 77bae7c and 2fc7d29.

⛔ Files ignored due to path filters (1)
  • app/client/yarn.lock is excluded by !**/yarn.lock, !**/*.lock
📒 Files selected for processing (4)
  • app/client/package.json (1 hunks)
  • app/client/packages/rts/src/instrumentation.ts (1 hunks)
  • app/client/src/UITelemetry/auto-otel-web.ts (7 hunks)
  • deploy/docker/fs/opt/appsmith/caddy-reconfigure.mjs (2 hunks)
🔇 Additional comments (7)
app/client/packages/rts/src/instrumentation.ts (1)

13-13: LGTM on the exporter change.

The switch to HTTP exporter aligns with moving away from protobuf format.

Let's verify all trace exporters are consistently updated:

✅ Verification successful

All trace exporters have been consistently updated to use HTTP format

The search results confirm that:

  • No protobuf exporters remain in the codebase
  • Both instances of OTLPTraceExporter in auto-otel-web.ts and instrumentation.ts use the HTTP format from @opentelemetry/exporter-trace-otlp-http
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for any remaining protobuf exporters
rg "exporter-trace-otlp-proto" -l

# Search for all trace exporters to ensure consistency
rg "OTLPTraceExporter" -A 2

Length of output: 1160

app/client/src/UITelemetry/auto-otel-web.ts (3)

4-4: LGTM: Import changes align with protocol switch

The switch to HTTP exporters (@opentelemetry/exporter-trace-otlp-http and @opentelemetry/exporter-metrics-otlp-http) is correct for the migration to HTTP/JSON format.

Also applies to: 18-18


107-108: Consider environment-specific URL handling

The monitoring URLs are now dynamically constructed based on window.location.origin. Ensure this works correctly across different environments (development, staging, production).

✅ Verification successful

URL handling implementation is correct and environment-safe

The implementation of addPathToCurrentUrl correctly handles URL construction across environments by:

  • Using window.location.origin which automatically provides the correct protocol, hostname and port
  • Properly handling path concatenation with leading slashes
  • Being used consistently for both traces and metrics endpoints

The current implementation is robust and will work correctly across development, staging, and production environments.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for environment-specific configurations
rg -g '!node_modules' -g '*.{ts,js,json}' 'window\.location\.origin.*monitoring'

Length of output: 82


Script:

#!/bin/bash
# Let's first check how addPathToCurrentUrl is implemented
rg -g '!node_modules' -g '*.{ts,js}' 'function.*addPathToCurrentUrl' -A 5

# Then check for any environment-specific URL configurations
rg -g '!node_modules' -g '*.{ts,js,json}' -i 'monitoring.*url|monitoring.*endpoint'

# Also check for any environment configuration files
fd -g '*env*.{ts,js,json}'

Length of output: 58816


Script:

#!/bin/bash
# Let's check for any environment-specific URL configurations in environment files
rg -g '!node_modules' -g '*.{ts,js}' 'monitoring.*url|monitoring.*endpoint' app/client/src/ce/actions/environmentAction.ts app/client/src/ee/actions/environmentAction.ts

# Check for any environment-specific configurations in the monitoring setup
rg -g '!node_modules' -g '*.{ts,js}' 'addPathToCurrentUrl' -A 10 -B 10

Length of output: 5377


47-47: Verify Grafana endpoint compatibility

The new monitoring endpoints ("/monitoring/traces" and "/monitoring/metrics") should be verified against Grafana's requirements.

Also applies to: 77-77

✅ Verification successful

The previous search was too specific. Let's broaden our search to understand the monitoring setup and verify the endpoint compatibility. We'll look for telemetry configurations, route definitions, and OpenTelemetry exporters to verify if these endpoints are properly configured.


Let's verify how these monitoring endpoints are handled on the server side and examine the complete trace exporter configuration to ensure the endpoints are properly set up.


The monitoring endpoints are correctly configured for OpenTelemetry

The /monitoring/traces endpoint is properly configured in both client and server implementations:

  • Server-side uses a dedicated New Relic OTLP endpoint for traces
  • Client-side implementation correctly uses the local monitoring endpoint with proper compression and authentication headers
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for any Grafana configuration files or documentation
rg -g '!node_modules' -g '*.{md,txt,yaml,yml,json}' -i 'grafana.*endpoint|monitoring/(traces|metrics)'

Length of output: 104


Script:

#!/bin/bash
# Let's search for any monitoring or telemetry configuration files
fd -e yaml -e yml -e json -e ts -e js "telemetry|monitoring|grafana" --exec rg -l "endpoint|traces|metrics|monitoring"

# Search for any route definitions or server configurations
rg -g '*.{ts,js}' "app.(use|get|post)\(.*monitoring.*\)"

# Look for any OpenTelemetry configuration
rg -g '*.{ts,js}' "OTLPTraceExporter|opentelemetry.*exporter"

Length of output: 773


Script:

#!/bin/bash
# Let's examine the server-side route handling for these endpoints
rg -g '*.{ts,js}' -B 5 -A 5 "'/monitoring/(traces|metrics)'"

# Check the actual implementation of the trace exporter configuration
ast-grep --pattern 'new OTLPTraceExporter({
  $$$
})'

Length of output: 1169

deploy/docker/fs/opt/appsmith/caddy-reconfigure.mjs (2)

41-47: LGTM! Clean and well-structured monitoring configuration.

The monitoring endpoints configuration follows good practices with clear path mappings.


153-153: 🛠️ Refactor suggestion

Verify API key environment variable.

Add a validation check for the required environment variable APPSMITH_NEW_RELIC_OTLP_LICENSE_KEY.

Consider adding environment variable validation at the start of the script:

if (!process.env.APPSMITH_NEW_RELIC_OTLP_LICENSE_KEY) {
  console.error("Missing required environment variable: APPSMITH_NEW_RELIC_OTLP_LICENSE_KEY");
  process.exit(1);
}
app/client/package.json (1)

75-84: OpenTelemetry dependencies updated for HTTP/JSON support.

The updates align with the PR objective of switching from OTLP HTTP/protobuf to HTTP/JSON format.

Let's verify these versions for any known vulnerabilities:

✅ Verification successful

Let me verify if these versions are compatible with HTTP/JSON format by checking the codebase for any OpenTelemetry configuration.


OpenTelemetry dependency updates are safe and compatible

The updated versions are compatible with HTTP/JSON format and show no security vulnerabilities. The codebase already uses OTLP HTTP exporters with compression and proper configuration for both traces and metrics.

  • No security advisories found for the OpenTelemetry packages
  • Existing configuration in auto-otel-web.ts uses OTLPTraceExporter and OTLPMetricExporter with GZIP compression
  • Version updates are minor and maintain backward compatibility
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for security advisories for OpenTelemetry packages
gh api graphql -f query='
{
  securityVulnerabilities(first: 10, ecosystem: NPM, package: "opentelemetry") {
    nodes {
      advisory {
        summary
        severity
        publishedAt
      }
      vulnerableVersionRange
      firstPatchedVersion {
        identifier
      }
    }
  }
}'

Length of output: 347


Script:

#!/bin/bash
# Search for OpenTelemetry configuration files and usage
rg -l "opentelemetry" --type ts --type js

# Look for OTLP exporter configuration
rg -A 5 "OTLPTrace|OTLPMetric" --type ts --type js

Length of output: 3687

@subhrashisdas subhrashisdas changed the title Switch from OTLP HTTP/protobuf (New Relic) to HTTP/JSON (Grafana) chore: Switch from OTLP HTTP/protobuf (New Relic) to HTTP/JSON (Grafana) Nov 15, 2024
@github-actions github-actions bot added the skip-changelog Adding this label to a PR prevents it from being listed in the changelog label Nov 15, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Outside diff range and nitpick comments (1)
app/client/src/UITelemetry/auto-otel-web.ts (1)

120-129: Add input validation and error handling

While the URL management function works correctly, it could benefit from some defensive programming.

Consider this enhanced implementation:

 function addPathToCurrentUrl(path: string) {
+  if (!path) {
+    throw new Error("Path parameter is required");
+  }
   const origin = window.location.origin;
+  if (!origin) {
+    throw new Error("Unable to determine current origin");
+  }
   const currentUrl = new URL(origin);
   currentUrl.pathname = path.startsWith("/") ? path : `/${path}`;
   return currentUrl.toString();
 }
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 6f60f61 and 065cddc.

⛔ Files ignored due to path filters (1)
  • app/client/yarn.lock is excluded by !**/yarn.lock, !**/*.lock
📒 Files selected for processing (4)
  • app/client/package.json (1 hunks)
  • app/client/packages/rts/src/instrumentation.ts (2 hunks)
  • app/client/src/UITelemetry/auto-otel-web.ts (7 hunks)
  • deploy/docker/fs/opt/appsmith/caddy-reconfigure.mjs (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (3)
  • app/client/package.json
  • app/client/packages/rts/src/instrumentation.ts
  • deploy/docker/fs/opt/appsmith/caddy-reconfigure.mjs
🔇 Additional comments (3)
app/client/src/UITelemetry/auto-otel-web.ts (3)

4-4: LGTM: Import changes align with HTTP/JSON migration

The switch from protobuf to HTTP exporters is correctly implemented.

Also applies to: 18-18


107-108: LGTM: Properly configured to prevent telemetry loops

The monitoring endpoints are correctly added to the ignore list to prevent self-monitoring loops.


47-50: Verify monitoring endpoints configuration

The exporter configurations look correct, but we should verify that the /monitoring/traces and /monitoring/metrics endpoints are properly configured to handle the requests.

#!/bin/bash
# Search for monitoring endpoint configurations in infrastructure files
rg -g '!node_modules' -g '*.{yaml,yml,conf,json}' '/monitoring/(traces|metrics)'

Also applies to: 77-81

app/client/src/UITelemetry/auto-otel-web.ts Show resolved Hide resolved
@subhrashisdas subhrashisdas enabled auto-merge (squash) November 15, 2024 12:15
@KelvinOm
Copy link
Collaborator

KelvinOm commented Nov 15, 2024

@subhrashisdas What do you think about updating the RTS dependencies too?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip-changelog Adding this label to a PR prevents it from being listed in the changelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants