Skip to content

feat(mig-guide-oss): added migration guide for oss users #1597

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

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion constants/docsSideNav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,11 @@ const docsSideNav = [
// slug: '/docs/operate/migration/migration',
// },
items: [
{
type: 'doc',
route: '/docs/operate/migration/upgrade-0.88',
label: 'Upgrade to v0.88',
},
{
type: 'doc',
route: '/docs/operate/migration/upgrade-0.76',
Expand Down Expand Up @@ -455,7 +460,6 @@ const docsSideNav = [
},
],
},

{
type: 'doc',
route: '/docs/tutorial/opentelemetry-operator-usage',
Expand Down
8 changes: 6 additions & 2 deletions data/docs/install/linux.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ processors:
send_batch_size: 50000
timeout: 1s
signozspanmetrics/delta:
metrics_exporter: clickhousemetricswrite
metrics_exporter: clickhousemetricswrite, signozclickhousemetrics
latency_histogram_buckets: [100us, 1ms, 2ms, 6ms, 10ms, 50ms, 100ms, 250ms, 500ms, 1000ms, 1400ms, 2000ms, 5s, 10s, 20s, 40s, 60s]
dimensions_cache_size: 100000
dimensions:
Expand All @@ -360,6 +360,10 @@ exporters:
timeout: 15s
resource_to_telemetry_conversion:
enabled: true
disable_v2: true
signozclickhousemetrics:
endpoint: tcp://localhost:9000/signoz_metrics?password=password
timeout: 15s
clickhouselogsexporter:
dsn: tcp://localhost:9000/signoz_logs?password=password
timeout: 10s
Expand All @@ -385,7 +389,7 @@ service:
metrics:
receivers: [otlp]
processors: [batch]
exporters: [clickhousemetricswrite, metadataexporter]
exporters: [clickhousemetricswrite, metadataexporter, signozclickhousemetrics]
logs:
receivers: [otlp, httplogreceiver/heroku, httplogreceiver/json]
processors: [batch]
Expand Down
6 changes: 5 additions & 1 deletion data/docs/operate/migration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ title: Migration Guides
The following sections provide instructions to migrate SigNoz components across newer versions. You need to run these migration scripts step by step. For example if you are currently on `0.8.2` and want to migrate to `0.10.0` - you need to run migration script for `0.9` first and then `0.10`

<DocCardContainer>

<DocCard
title="📄️ Upgrade to v0.88"
description=""
href="/docs/operate/migration/upgrade-0.88"
/>
<DocCard
title="📄️ Upgrade to v0.76"
description=""
Expand Down
Loading