feat(system): add distinct server-events for reporting

Refactor the services used to generate periodic reports on server usage.

Related-to: kestra-io/kestra-ee#3014
This commit is contained in:
Florian Hussonnois
2025-08-13 19:23:00 +02:00
committed by Florian Hussonnois
parent ab9951466d
commit 3929bf6172
34 changed files with 1211 additions and 500 deletions

View File

@@ -0,0 +1,9 @@
package reports;
import io.kestra.core.junit.annotations.KestraTest;
import io.kestra.core.reporter.reports.AbstractFeatureUsageReportTest;
@KestraTest
class MysqlFeatureUsageReportTest extends AbstractFeatureUsageReportTest {
}

View File

@@ -0,0 +1,9 @@
package reports;
import io.kestra.core.junit.annotations.KestraTest;
import io.kestra.core.reporter.reports.AbstractServiceUsageReportTest;
@KestraTest
class MysqlServiceUsageReportTest extends AbstractServiceUsageReportTest {
}