Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@ceramicnetwork/node-metrics
Advanced tools
Typescript library for publishing metrics from Ceramic nodes, as ceramic model instance documents
Publishes metrics about Ceramic Nodes, on the Ceramic Network
Uses the decentralized CeramicNetwork to publish metrics and data about Ceramic Nodes
In your daemon.config.json
file (often found in ~/.ceramic directory), add the following setting:
"metrics": {
"metrics-publisher-enabled": true
}
and restart your ceramic daemon.
Since the code to record metrics will already be incorporated into the daemon, no further action is necessary.
Note, this class will be included as a dependency in ceramic daemon, so installation is not necessary.
However, if using in your own project, the package can be installed normally.
npm install @ceramicnetwork/node-metrics
Import the class, start the metrics publishing service and record metrics.
import { NodeMetrics, Counter, Observable } from '@ceramicnetwork/node-metrics'
NodeMetrics.start({ceramic: ceramic, network: 'dev-unstable', intervalMS: 30000})
NodeMetrics.observe(Observable.TOTAL_PINNED_STREAMS, 100)
NodeMetrics.count(Counter.RECENT_COMPLETED_REQUESTS, 20)
ModelMetris.recordError('oops')
NodeMetrics.stopPublishing()
If wishing to modify the metrics model, start by updating the model definition in the ./composites
directory, then
composedb composite:create your-schema.graphql --output=../__generated__/definition.json --did-private-key=your-private-key
cd ../__generated__
composedb composite:deploy definition.json --ceramic-url=http://localhost:7007 --did-private-key=...
composedb composite:compile definition.json definition.js
Depending on the changes made, code changes may need to be made as well, in particular start with the list of models defined in src/publishMetrics.ts
FAQs
Typescript library for publishing metrics from Ceramic nodes, as ceramic model instance documents
The npm package @ceramicnetwork/node-metrics receives a total of 684 weekly downloads. As such, @ceramicnetwork/node-metrics popularity was classified as not popular.
We found that @ceramicnetwork/node-metrics demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 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
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.