Accessing the MySQL Database
After telemetry.yml has been executed for the service cluster, you can check the MySQL database inside the mysqldb container. To view these logs, do the following:
Use the following command to get the names of all the telemetry pods:
kubectl get pods -n telemetry -l app=idrac-telemetry
Note
The idrac-telemetry-0 pod will always be responsible for collecting the telemetry data of the management nodes (oim, service_kube_control_plane_x86_64, service_kube_node_x86_64, login_node_x86_64, etc.).
Execute the following command:
kubectl exec -it -n telemetry <iDRAC_telemetry_pod_name> -c mysqldb -- mysql -u <MYSQL_USER> -p
When prompted, enter the mysql password to log in.
To enter into the
idrac_telemetry_db, use the following command:use idrac_telemetrydb;
To access the services table:
select * from services;
If you have any feedback about Omnia documentation, please reach out at omnia.readme@dell.com.