> ## Documentation Index
> Fetch the complete documentation index at: https://docs.odigos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Troubleshooting

> If you are experiencing issues with your actions and processors, use the checklist below to troubleshoot the issue.

## View Collector Configurations

To view the current configurations of the collectors, you can check the ConfigMap objects in the `odigos-system` namespace.

You should see the processors configured under `data/conf/processors`, and actions configured under `data/conf/pipelines`.

**Node Collector:**

```bash theme={null}
kubectl get cm -n odigos-system -o yaml odigos-data-collection
```

**Gateway Collector:**

```bash theme={null}
kubectl get cm -n odigos-system -o yaml odigos-gateway
```

## View Autoscaler Logs

The `odigos-autoscaler` controller is the component that watches for changes in the action or processor CRD and generates the collector configuration.

If you don't see your processor in the collector configuration, you can check the logs of the autoscaler for errors or clues:

```sh theme={null}
kubectl logs -n odigos-system deployments.apps/odigos-autoscaler
```

## View Collector Logs

If you do see your processor in the collector configuration, and there's an issue, the collector should log an error and will not start. To check the status of the Odigos pods, run:

```sh theme={null}
kubectl get pods -n odigos-system
```

Look for pods with STATUS `CrashLoopBackOff` or `Error`.<br />
To see the error, you can examine the logs of that pod:

```sh theme={null}
kubectl logs -n odigos-system <pod-name>
```

You might find an error message like this:

```
* error decoding 'processors': unknown type: "invalid" for id: "invalid/example-processor" (valid values: [datadog experimental_metricsgeneration metricstransform resource servicegraph spanmetrics sumologic batch tail_sampling cumulativetodelta resourcedetection remotetap memory_limiter filter redaction routing span attributes deltatorate groupbyattrs groupbytrace k8sattributes probabilistic_sampler])
```

If this is the case, then please follow the instructions in the error message to correct the processor configuration.

## Getting Help

If you have any issues, or require our assistance, please open an issue in [GitHub](https://github.com/odigos-io/odigos), or reach out to us in [Odigos Slack](https://join.slack.com/t/odigos/shared_invite/zt-24u91yknm-0fLXu6qnqYfNHS_GSUgTJw)
