diff --git a/Jellyfin.Server.Implementations/Events/EventingServiceCollectionExtensions.cs b/Jellyfin.Server.Implementations/Events/EventingServiceCollectionExtensions.cs
new file mode 100644
index 000000000..1a43697b8
--- /dev/null
+++ b/Jellyfin.Server.Implementations/Events/EventingServiceCollectionExtensions.cs
@@ -0,0 +1,56 @@
+using Jellyfin.Data.Events;
+using Jellyfin.Data.Events.Users;
+using Jellyfin.Server.Implementations.Events.Consumers;
+using Jellyfin.Server.Implementations.Events.Consumers.Library;
+using Jellyfin.Server.Implementations.Events.Consumers.Security;
+using Jellyfin.Server.Implementations.Events.Consumers.Session;
+using Jellyfin.Server.Implementations.Events.Consumers.Updates;
+using Jellyfin.Server.Implementations.Events.Consumers.Users;
+using MediaBrowser.Common.Updates;
+using MediaBrowser.Controller.Authentication;
+using MediaBrowser.Controller.Events;
+using MediaBrowser.Controller.Events.Session;
+using MediaBrowser.Controller.Events.Updates;
+using MediaBrowser.Controller.Library;
+using MediaBrowser.Controller.Session;
+using MediaBrowser.Controller.Subtitles;
+using MediaBrowser.Model.Tasks;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace Jellyfin.Server.Implementations.Events
+{
+ ///
+ /// A class containing extensions to for eventing.
+ ///
+ public static class EventingServiceCollectionExtensions
+ {
+ ///
+ /// Adds the event services to the service collection.
+ ///
+ /// The service collection.
+ public static void AddEventServices(this IServiceCollection collection)
+ {
+ collection.AddScoped, SubtitleDownloadFailureLogger>();
+
+ collection.AddScoped>, AuthenticationSucceededLogger>();
+ collection.AddScoped>, AuthenticationFailedLogger>();
+
+ collection.AddScoped, PlaybackStartLogger>();
+ collection.AddScoped, PlaybackStopLogger>();
+ collection.AddScoped, SessionStartedLogger>();
+ collection.AddScoped, SessionEndedLogger>();
+
+ collection.AddScoped, PluginInstalledLogger>();
+ collection.AddScoped, PluginUninstalledLogger>();
+ collection.AddScoped, PluginUpdatedLogger>();
+ collection.AddScoped, PackageInstallationFailedLogger>();
+
+ collection.AddScoped, UserCreatedLogger>();
+ collection.AddScoped, UserDeletedLogger>();
+ collection.AddScoped, UserLockedOutLogger>();
+ collection.AddScoped, UserPasswordChangedLogger>();
+
+ collection.AddScoped, TaskCompletedLogger>();
+ }
+ }
+}