diff --git a/packages/strapi-plugin-sentry/package.json b/packages/strapi-plugin-sentry/package.json index 931af610c6..a7e73dcd6e 100644 --- a/packages/strapi-plugin-sentry/package.json +++ b/packages/strapi-plugin-sentry/package.json @@ -11,15 +11,15 @@ "@sentry/node": "6.2.5" }, "author": { - "name": "A Strapi developer", - "email": "", - "url": "" + "name": "Strapi team", + "email": "hi@strapi.io", + "url": "https://strapi.io" }, "maintainers": [ { - "name": "A Strapi developer", - "email": "", - "url": "" + "name": "Strapi team", + "email": "hi@strapi.io", + "url": "https://strapi.io" } ], "engines": { diff --git a/packages/strapi-plugin-upload/package.json b/packages/strapi-plugin-upload/package.json index cdf854d54d..45ce45d956 100644 --- a/packages/strapi-plugin-upload/package.json +++ b/packages/strapi-plugin-upload/package.json @@ -43,15 +43,15 @@ "uuid": "^3.2.1" }, "author": { - "name": "A Strapi developer", - "email": "", - "url": "" + "name": "Strapi team", + "email": "hi@strapi.io", + "url": "https://strapi.io" }, "maintainers": [ { - "name": "A Strapi developer", - "email": "", - "url": "" + "name": "Strapi team", + "email": "hi@strapi.io", + "url": "https://strapi.io" } ], "engines": { diff --git a/packages/strapi/lib/Strapi.js b/packages/strapi/lib/Strapi.js index 059defb8a9..e1159f47c4 100644 --- a/packages/strapi/lib/Strapi.js +++ b/packages/strapi/lib/Strapi.js @@ -256,9 +256,15 @@ class Strapi { } } - // Emit started event. + // Get database clients const databaseClients = _.map(this.config.get('connections'), _.property('settings.client')); - await this.telemetry.send('didStartServer', { database: databaseClients }); + + // Emit started event. + await this.telemetry.send('didStartServer', { + database: databaseClients, + plugins: this.config.installedPlugins, + providers: this.config.installedProviders, + }); if (cb && typeof cb === 'function') { cb(); diff --git a/packages/strapi/lib/core/app-configuration/index.js b/packages/strapi/lib/core/app-configuration/index.js index 10a3c59b03..8abff52d5f 100644 --- a/packages/strapi/lib/core/app-configuration/index.js +++ b/packages/strapi/lib/core/app-configuration/index.js @@ -83,6 +83,7 @@ module.exports = (dir, initialConfig = {}) => { installedPlugins: getPrefixedDeps('strapi-plugin', pkgJSON), installedMiddlewares: getPrefixedDeps('strapi-middleware', pkgJSON), installedHooks: getPrefixedDeps('strapi-hook', pkgJSON), + installedProviders: getPrefixedDeps('strapi-provider', pkgJSON), }; const baseConfig = {