## Description  Fixes #36776 > [!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="@tag.Sanity" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/11275055683> > Commit: a8f155422725c5310b7ac37d49a57995ee20f732 > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=11275055683&attempt=2" target="_blank">Cypress dashboard</a>. > Tags: `@tag.Sanity` > Spec: > <hr>Thu, 10 Oct 2024 14:29:09 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Summary by CodeRabbit - **New Features** - Introduced `AssistantSuggestionButton` for enhanced user interaction in the AI chat. - Added support for displaying and applying assistant suggestions in chat threads. - Implemented an editable array component for managing string pairs. - Enhanced configuration options with new properties for initial assistant messages and suggestions. - **Improvements** - Improved state management for dynamic messages in the AI chat widget. - Updated rendering logic for conditional display of suggestions in chat messages. - Added new props to facilitate better interaction and suggestion handling in chat components. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import {
|
|
BatchSpanProcessor,
|
|
NodeTracerProvider,
|
|
} from "@opentelemetry/sdk-trace-node";
|
|
import { Resource } from "@opentelemetry/resources";
|
|
import {
|
|
ATTR_DEPLOYMENT_NAME,
|
|
ATTR_SERVICE_INSTANCE_ID,
|
|
} from "@opentelemetry/semantic-conventions/incubating";
|
|
import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions";
|
|
import { registerInstrumentations } from "@opentelemetry/instrumentation";
|
|
import { HttpInstrumentation } from "@opentelemetry/instrumentation-http";
|
|
import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-proto";
|
|
|
|
const provider = new NodeTracerProvider({
|
|
resource: new Resource({
|
|
[ATTR_DEPLOYMENT_NAME]: `${process.env.APPSMITH_DEPLOYMENT_NAME || "self-hosted"}`,
|
|
[ATTR_SERVICE_INSTANCE_ID]: `${process.env.HOSTNAME || "appsmith-0"}`,
|
|
[ATTR_SERVICE_NAME]: "rts",
|
|
}),
|
|
});
|
|
|
|
const nrTracesExporter = new OTLPTraceExporter({
|
|
url: `${process.env.APPSMITH_NEW_RELIC_OTEL_EXPORTER_OTLP_ENDPOINT}/v1/traces`,
|
|
headers: {
|
|
"api-key": `${process.env.APPSMITH_NEW_RELIC_OTLP_LICENSE_KEY}`,
|
|
},
|
|
});
|
|
|
|
registerInstrumentations({
|
|
instrumentations: [new HttpInstrumentation()],
|
|
});
|
|
|
|
const batchSpanProcessor = new BatchSpanProcessor(
|
|
nrTracesExporter,
|
|
//Optional BatchSpanProcessor Configurations
|
|
{
|
|
// The maximum queue size. After the size is reached spans are dropped.
|
|
maxQueueSize: 100,
|
|
// The maximum batch size of every export. It must be smaller or equal to maxQueueSize.
|
|
maxExportBatchSize: 50,
|
|
// The interval between two consecutive exports
|
|
scheduledDelayMillis: 500,
|
|
// How long the export can run before it is cancelled
|
|
exportTimeoutMillis: 30000,
|
|
},
|
|
);
|
|
|
|
provider.addSpanProcessor(batchSpanProcessor);
|
|
provider.register();
|