Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@janus-idp/backstage-plugin-analytics-module-matomo
Advanced tools
This plugin provides an opinionated implementation of the Backstage Analytics API for Matomo Analytics. Once installed and configured, analytics events will be sent to Matomo as your users navigate and use your Backstage instance.
This plugin provides an opinionated implementation of the Backstage Analytics API for Matomo Analytics. Once installed and configured, analytics events will be sent to Matomo as your users navigate and use your Backstage instance.
This module is made to work with backstage's built-in analytics plugin. The usage guide to start tracking analytics for your plugins can be found here: https://backstage.io/docs/plugins/analytics/
# From your Backstage root directory
yarn add --cwd packages/app @janus-idp/backstage-plugin-analytics-module-matomo
// packages/app/src/apis.ts
import {
analyticsApiRef,
configApiRef,
identityApiRef,
} from '@backstage/core-plugin-api';
import { MatomoAnalytics } from '@janus-idp/backstage-plugin-analytics-module-matomo';
export const apis: AnyApiFactory[] = [
// Instantiate and register the Matomo Analytics API Implementation.
createApiFactory({
api: analyticsApiRef,
deps: { configApi: configApiRef },
factory: ({ configApi }) => MatomoAnalytics.fromConfig(configApi),
}),
];
app-config.yaml
:The following is the minimum configuration required to start sending analytics events to Matomo. All that's needed is your Matomo Host and Site Id:
# app-config.yaml
app:
analytics:
matomo:
host: ${ANALYTICS_MATOMO_INSTANCE_URL}
siteId: ${ANALYTICS_MATOMO_SITE_ID}
app-config.yaml
:(optional)The following is the minimal content security policy required to load scripts from your Matomo Instance.
backend:
csp:
connect-src: ["'self'", 'http:', 'https:']
# Add these two lines below
script-src: ["'self'", "'unsafe-eval'", '<matomo-instance-url>']
FAQs
This plugin provides an opinionated implementation of the Backstage Analytics API for Matomo Analytics. Once installed and configured, analytics events will be sent to Matomo as your users navigate and use your Backstage instance.
The npm package @janus-idp/backstage-plugin-analytics-module-matomo receives a total of 509 weekly downloads. As such, @janus-idp/backstage-plugin-analytics-module-matomo popularity was classified as not popular.
We found that @janus-idp/backstage-plugin-analytics-module-matomo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.