Kyma Eventing - Basic Diagnostics
Symptom
You publish an event but the event is not received by the subscriber.
Subscription is not in ready state.
You are unable to publish events.
Cause
Trouble with Kyma Eventing may be caused by various issues, so this document guides you through the diagnostic steps to determine the specific root cause.
Remedy
Follow these steps to detect the source of the problem:
Step 1: Check the status of the EventingBackend CR
Check the EventingBackend CR. Is the field EVENTINGREADY
true
?Click to copykubectl -n kyma-system get eventingbackends.eventing.kyma-project.ioIf EVENTINGREADY is
false
, check the exact reason of the error in the status of the CR by running the command:Click to copykubectl -n kyma-system get eventingbackends.eventing.kyma-project.io eventing-backend -o yamlIf EVENTINGREADY is
true
, the EventingBackend CR is not an issue. Follow the next steps to find the source of the problem.
Step 2: Check the status of the Subscription
Check whether the Subscription is ready. Run the command:
Click to copykubectl -n {NAMESPACE} get subscriptions.eventing.kyma-project.io {NAME}If the Subscription is not ready, check the exact reason of the error in the status of the Subscription by running the command:
Click to copykubectl -n {NAMESPACE} get subscriptions.eventing.kyma-project.io {NAME} -o yamlIf the status of the Subscription informs you that the sink is not a valid cluster local svc, investigate the Subscription sink. Verify if the sink is a valid HTTP endpoint, for example:
test.test.svc.cluster.local
.Check if the event type defined in the Subscription is correctly formatted as specified in the event names guidelines.
Step 3: Check if the event was published correctly
Check the HTTP status code returned after sending an event.
If the HTTP status code is 4xx, check if you are sending the events in correct formats. Eventing supports two event formats (legacy and CloudEvents); see the Eventing tutorials for more information.
If the HTTP status code is 5xx, check the logs from the Eventing publisher proxy Pod for any errors. To fetch these logs, run this command:
Click to copykubectl -n kyma-system logs -l app.kubernetes.io/instance=eventing,app.kubernetes.io/name=eventing-publisher-proxyIf the HTTP status code is 2xx but it's still not working, verify if you are sending the event on same event type as defined in the Subscription.
Click to copykubectl -n {NAMESPACE} get subscriptions.eventing.kyma-project.io {NAME} -o jsonpath='{.spec.filter.filters}'
Step 4: Check the Eventing Controller logs
Check the logs from the Eventing Controller Pod for any errors and to verify that the event is dispatched. To fetch these logs, run this command:
Click to copykubectl -n kyma-system logs -l app.kubernetes.io/instance=eventing,app.kubernetes.io/name=controllerCheck for any error messages in the logs. If the event dispatch log
"message":"event dispatched"
is not present for NATS backend, the issue could be one of the following:The subscriber (the sink) is not reachable or the subscriber cannot process the event. Check the logs of the subscriber instance.
The event was published in a wrong format.
Eventing Controller cannot connect to NATS Server.
Step 5: Check if the Subscription sink is healthy
Check whether the workload URL defined in the Subscription sink is correct and healthy to receive events. To get the sink from the Subscription, run this command:
Click to copykubectl -n {NAMESPACE} get subscriptions.eventing.kyma-project.io {NAME} -o jsonpath='{.spec.sink}'To check the health of the sink, run the following commands:
Click to copykubectl -n default run --image=curlimages/curl --restart=Never sink-test-tmp -- curl --head {SINK_URL}kubectl -n default logs sink-test-tmpkubectl -n default delete pod sink-test-tmpIf the returned HTTP status code is not 2xx, check the logs of the subscriber instance.
Step 6: Check NATS JetStream status
Check the health of NATS Pods. Run the command:
Click to copykubectl -n kyma-system get pods -l nats_cluster=eventing-natsCheck if the stream and consumers exist in NATS JetStream by following the JetStream troubleshooting guide.
If you can't find a solution, don't hesitate to create a GitHub issue or reach out to our Slack channel to get direct support from the community.