You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<summary>8. How do I debug using Layer5 Cloud Events?</summary>
437
+
438
+
If your content is not appearing in the Academy after a GitHub release, it may have failed to publish. You can troubleshoot these issues using the **Events** section in [Layer5 Cloud](https://cloud.layer5.io).
439
+
440
+
To view publishing logs:
441
+
1. Navigate to **Settings > Events**
442
+
2. Switch to the **Audit** tab
443
+
3. Apply a filter using the action type:
444
+
`AcademyUpserted`
445
+
This will show all attempts to upload content, including which ones failed and why.
446
+
447
+
**Common Errors You Might See**
448
+
-**Duplicate IDs**
449
+
Two lessons or paths using the same identifier. You can fix this by renaming or regenerating unique IDs.
450
+
451
+
-**Invalid Content Type**
452
+
For example,
453
+
Instead of
454
+
```yaml
455
+
type: "learning-paths"
456
+
```
457
+
it should be:
458
+
```yaml
459
+
type: "learning-path"
460
+
```
461
+
- **Missing Required Fields**
462
+
Ensure that title, description, and type are included in the content’s frontmatter.
463
+
464
+
{{< alert type="info" title="Tip" >}}
465
+
Use the event filter `AcademyRegisteredToContent` to track user activity, like who enrolled in which learning path.
0 commit comments