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

# Additional Notes

## Access data endpoints and UIs

### Kubernetes Dashboard

To start the Kubernetes Dashboard, use the following command:

```js theme={"system"}
minikube dashboard --url=true --port=8083
```

Once the dashboard service is ready, you can visit the web interface in your browser.

### Data stores

Forward the ports of the data stores services to localhost:

* PostgreSQL Database: `kubectl port-forward deployment/postgres 5432:5432`

* Redis Cache: `kubectl port-forward deployment/redis 6379:6379`

* InfluxDB Database: `kubectl port-forward deployment/influx 8086:8086`

### Other routes available after forward:

* REST Server: port 8081

* GraphQL: port 1111, and [Web UI](http://localhost:1111/)

* Kafka: port 8080, and [AKHQ Web UI](http://localhost:8080/)

* Grafana: port 3000, and [Web UI](http://localhost:3000/)

## Contribute to DIA main package

```js theme={"system"}
go mod edit -replace github.com/diadata-org/diadata=/mnt/env-context
```

## Debug Influx writes

To debug InfluxDB writes, just change points in batch to see more frequent writes to influx (`pkg/model/db.go`):

```js theme={"system"}
influxMaxPointsInBatch = 10
```

## Use a custom pre-populated image data

A `.testenv.local` file at root folder is required to pull private images from Docker:

```js theme={"system"}
data_docker_registry=docker.io
data_docker_username=my_user
data_docker_password="my_password"
data_docker_email=my_email@domain.com
```

Change image of pre-populated data from [`deployments/k8s-yaml/data-postgres-prepopulated.yaml`](https://github.com/diadata-org/diadata/blob/74070895a72a0add703c8268e31870a7f63d3e4b/deployments/k8s-yaml/data-postgres-prepopulated.yaml#L20) file
