mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
chore: updated k8s instructions (#5665)
Co-authored-by: Prashant Shahi <prashant@signoz.io>
This commit is contained in:
parent
4489df6f39
commit
a4878f6430
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,47 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: aws
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{region}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: <SIGNOZ_INGESTION_KEY>
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
|
resourceDetection:
|
||||||
|
detectors:
|
||||||
|
- eks
|
||||||
|
- system
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -5,17 +5,39 @@ Add the SigNoz Helm Chart repository
|
|||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
|
||||||
--set otelInsecure=false \
|
```yaml
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
global:
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
cloud: others
|
||||||
|
clusterName: <CLUSTER_NAME>
|
||||||
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
## Install otel-collector in your Kubernetes infra
|
### Install otel-collector in your Kubernetes infra
|
||||||
|
|
||||||
|
|
||||||
Add the SigNoz Helm Chart repository
|
Add the SigNoz Helm Chart repository
|
||||||
```bash
|
```bash
|
||||||
helm repo add signoz https://charts.signoz.io
|
helm repo add signoz https://charts.signoz.io
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If the chart is already present, update the chart to the latest using:
|
If the chart is already present, update the chart to the latest using:
|
||||||
```bash
|
```bash
|
||||||
helm repo update
|
helm repo update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Install the Kubernetes Infrastructure chart provided by SigNoz
|
For generic Kubernetes clusters, you can create *override-values.yaml* with the following configuration:
|
||||||
```bash
|
|
||||||
helm install my-release signoz/k8s-infra \
|
```yaml
|
||||||
--set otelCollectorEndpoint=ingest.{{REGION}}.signoz.cloud:443 \
|
global:
|
||||||
--set otelInsecure=false \
|
cloud: others
|
||||||
--set signozApiKey={{SIGNOZ_INGESTION_KEY}} \
|
clusterName: <CLUSTER_NAME>
|
||||||
--set global.clusterName=<CLUSTER_NAME>
|
deploymentEnvironment: <DEPLOYMENT_ENVIRONMENT>
|
||||||
|
otelCollectorEndpoint: ingest.{{REGION}}.signoz.cloud:443
|
||||||
|
otelInsecure: false
|
||||||
|
signozApiKey: {{SIGNOZ_INGESTION_KEY}}
|
||||||
|
presets:
|
||||||
|
otlpExporter:
|
||||||
|
enabled: true
|
||||||
|
loggingExporter:
|
||||||
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
- Replace `<CLUSTER_NAME>` with the name of the Kubernetes cluster or a unique identifier of the cluster.
|
||||||
|
- Replace `<DEPLOYMENT_ENVIRONMENT>` with the deployment environment of your application. Example: **"staging"**, **"production"**, etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
To install the k8s-infra chart with the above configuration, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
helm install my-release signoz/k8s-infra -f override-values.yaml
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user