Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@airbnb/lunar-metrics
Advanced tools
Provides integrated NewRelic and Sentry insights and metrics logging.
This will also set the Google Analytics userId
if ga
is global and userID
is passed to
Metrics.initialize
.
yarn add @airbnb/lunar-metrics
Initialize the metrics package with your Sentry key/project (optional) and the current user ID.
import Metrics from '@airbnb/lunar-metrics';
Metrics.initialize({
context: { additionalParams: 'toLog' },
ignoreErrors: ['APIError'],
sentryKey: 'abcdef',
sentryProject: 'project',
userID: getUserID(),
});
This will automatically bootstrap NewRelic (if the global below exists) and Sentry (if the key/project are defined).
Rather than being configured in your application logic, NewRelic is configured in the DOM with a
script
block, usually within a index.html
file. The script block can be found in your NewRelic
project -> Application settings page, and looks something like the following.
<script type="text/javascript">
window.NREUM || (NREUM = {}),
(__nr_require = function(t, e, n) {
/* CODE */
});
if (window.location.origin.indexOf('localhost') >= 0) {
// development:
NREUM.info = {
beacon: 'bam.nr-data.net',
errorBeacon: 'bam.nr-data.net',
licenseKey: 'foobarbaz',
applicationID: '12345678',
sa: 1,
};
} else {
// production:
NREUM.info = {
beacon: 'bam.nr-data.net',
errorBeacon: 'bam.nr-data.net',
licenseKey: 'foobarbaz',
applicationID: '12345678',
sa: 1,
};
}
</script>
If you'd like to support separate development and production projects, a localhost conditional like the above will work.
To log an error to both NewRelic and Sentry, use captureError
. This function accepts a string,
Error
, or Event
instance. It optionally supports additional
params for Sentry as the
2nd argument.
import captureError from '@airbnb/lunar-metrics/lib/utils/captureError';
captureError('Something is broken');
captureError(new Error('Something is really really broken!'), {
level: 'error',
});
captureError(someDomEvent);
If you'd like to capture a Sentry breadcrumb to trail
along side errors, use captureBreadcrumb
.
import captureBreadcrumb from '@airbnb/lunar-metrics/lib/utils/captureBreadcrumb';
captureBreadcrumb({
message: 'Failed to login',
category: 'auth',
data: {
username: 'foobar',
},
});
FAQs
Metrics handling for Lunar.
The npm package @airbnb/lunar-metrics receives a total of 13 weekly downloads. As such, @airbnb/lunar-metrics popularity was classified as not popular.
We found that @airbnb/lunar-metrics demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.