Compare commits

...
6 Commits
Author SHA1 Message Date
Max Deichmann 830df682f9 chore: release v2.47.3
CI/CD / lint (push) Waiting to run
CI/CD / test-docker-build (push) Waiting to run
CI/CD / tests-web (20) (push) Waiting to run
CI/CD / tests-worker (20) (push) Waiting to run
CI/CD / e2e-tests (push) Waiting to run
CI/CD / all-ci-passed (push) Blocked by required conditions
CI/CD / push-docker-image (push) Blocked by required conditions
release.yml / release (push) Waiting to run
2024-06-03 12:19:27 +02:00
Max DeichmannandGitHub 2a420b2e90 chore: reduce sentry sampling (#2212) 2024-06-03 11:06:56 +02:00
Marc Klingen 53127c34ab chore: add posthog ui_host 2024-06-02 21:18:35 +02:00
Marc Klingen 9c57ff4853 chore: reduce cloud telemetry to 4 times a day 2024-06-02 20:18:55 +02:00
Marc Klingen a71176eda4 chore: disable posthog autocapture 2024-06-02 20:12:54 +02:00
Marc KlingenandGitHub f59a85f412 fix(ui): full prompt name on hover when saving as new version from playground (#2208) 2024-06-02 14:31:01 +00:00
10 changed files with 18 additions and 15 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "langfuse",
"version": "2.47.2",
"version": "2.47.3",
"author": "engineering@langfuse.com",
"license": "MIT",
"private": true,
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "2.47.2",
"version": "2.47.3",
"private": true,
"license": "MIT",
"engines": {
+4 -4
View File
@@ -18,7 +18,7 @@ if (process.env.NEXT_PUBLIC_SENTRY_DSN)
samplingContext.request.url &&
samplingContext.request.url.includes("api/trpc")
) {
return 0.3;
return 0.1;
}
if (
samplingContext.request &&
@@ -27,12 +27,12 @@ if (process.env.NEXT_PUBLIC_SENTRY_DSN)
samplingContext.transactionContext.status !== "ok" &&
samplingContext.transactionContext.status !== "unauthenticated"
) {
return 1;
return 0.1;
}
return 0.1;
return 0.01;
},
profilesSampleRate: 0.2, // Profiling sample rate is relative to tracesSampleRate
profilesSampleRate: 0.1,
integrations: [
// Add profiling integration to list of integrations
new ProfilingIntegration(),
+1 -1
View File
@@ -1 +1 @@
export const VERSION = "v2.47.2";
export const VERSION = "v2.47.3";
@@ -49,8 +49,7 @@ export const SaveToPromptButton: React.FC = () => {
)
.data?.prompts.filter((prompt) => prompt.type === PromptType.Chat)
.map((prompt) => ({
label:
prompt.name.slice(0, 20) + (prompt.name.length > 25 ? "..." : ""),
label: prompt.name,
value: prompt.id,
})) ?? [];
@@ -126,7 +125,9 @@ export const SaveToPromptButton: React.FC = () => {
: "opacity-0",
)}
/>
{promptName.label}
<span className="overflow-hidden text-ellipsis whitespace-nowrap">
{promptName.label}
</span>
</CommandItem>
))}
</CommandList>
+2
View File
@@ -53,10 +53,12 @@ if (
setProjectInPosthog();
posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY, {
api_host: process.env.NEXT_PUBLIC_POSTHOG_HOST || "https://eu.posthog.com",
ui_host: "https://eu.posthog.com",
// Enable debug mode in development
loaded: (posthog) => {
if (process.env.NODE_ENV === "development") posthog.debug();
},
autocapture: false,
});
}
+1 -1
View File
@@ -2,7 +2,7 @@
"crons": [
{
"path": "/api/cron/ingestion-metrics",
"schedule": "*/15 * * * *"
"schedule": "0 */6 * * *"
}
]
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "worker",
"version": "2.47.2",
"version": "2.47.3",
"description": "",
"license": "MIT",
"main": "index.js",
+2 -2
View File
@@ -31,9 +31,9 @@ if (isSentryEnabled) {
Sentry.metrics.metricsAggregatorIntegration(),
],
// Performance Monitoring
tracesSampleRate: 0.1, // Capture 100% of the transactions
tracesSampleRate: 0.01, // Capture 100% of the transactions
// Set sampling rate for profiling - this is relative to tracesSampleRate
profilesSampleRate: 0.1,
profilesSampleRate: 0.01,
sampleRate: 0.1,
});
+1 -1
View File
@@ -1 +1 @@
export const VERSION = "v2.47.2";
export const VERSION = "v2.47.3";