githubEdit

Provider Log Collection

Overview

To allow the Nexqloud core team to investigate GPU Testnet provider issues, please collect logs via the steps covered in this guide.

Most of the time the kubectl logs command won't show the entire logs due to K8s log rotation, so please make sure to use this advanced technique to save the provider logs:

Save nexqloud-provider Logs

STEP 1 - Locate the running nexqloud-provider pod

kubectl -n nexqloud-services get pods -l app=nexqloud-provider -o wide

STEP 2 - Locate the log directory of the nexqloud-provider container on that

ssh <node>
crictl inspect $(crictl ps --name provider --state Running -q) | jq -r '.status.logPath'

STEP 3 - Archive the entire directory to the provider-logs.tar.gz file

Make sure you remove the /0.log in the end of the logPath like so:

tar czf provider-logs.tar.gz /var/log/pods/nexqloud-services_nexqloud-provider-0_<unique-ID>/provider

STEP 4 - Upload the provider-logs.tar.gz file to the internet

This command will produce the output that looks like this:

Share this link with the Nexqloud Core Team for them to troubleshoot the issue.

Example from one of the real nodes of ours:

Last updated