![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ca-apm-probe
Advanced tools
CA APM Node.js Agent monitors real-time health and performance of Node.js applications
The APM Node.js Agent monitors Node.js-based web applications.
The CA Application Performance Management product documentation is now available on a wiki platform. We expect this will not only allow easier access to specific information, but also improve our ability to respond with improvements and enhancements.
You can access the documentation from https://support.ca.com/ as usual. In place of a bookshelf displaying, the documentation wiki displays.
In the wiki, you can access the Node.js Agent documentation by selecting Implementing Agents, Node.js Agent.
NOTICE: This product is owned and/or licensed by CA Technologies (“CA”).
An active license agreement for CA Application Performance Management (“License Agreement”) is required for its use. Your use of this product is governed by the terms of the License Agreement. If you do not have an active License Agreement with CA, you may not use this product.
For details, please contact CA.
The Probe Agent is the component that runs inside the Node.js application process. The Probe Agent instruments the Node.js application at startup. This simple agent only interacts with the Collector Agent and reports events to it. You deploy the Probe Agent using the Node Package Manager (NPM).
The Collector Agent is a standalone Java process that collects data from the Probe Agent and transmits the data to the Enterprise Manager.
Click here for detailed installation information.
You can quick install the Probe Agent globally using default values and without any code modifications. This method makes the Probe Agent available to all your Node.js applications.
$ npm install --global ca-apm-probe
Then, run your app with it as you would with node:
$ cd my-app
my-app$ ca-apm-run <startup_script>
You can install the Probe Agent locally for each application. This method lets you selectively instrument and monitor each application.
$ cd to/your/app/root
my-app$ npm install --save ca-apm-probe
The Node.js Agent runs dynamically whenever you start your Node.js application. Start the Node.js application:
my-app$ ./node_modules/bin/ca-apm-run <startup-script>
You can install and manually configure the Probe Agent. You can install and run the Probe Agent locally as an application dependency. Optionally, you can manually configure your Node.js application for monitoring. Use the npm command to install the Probe Agent and add it as a dependency of your application. This setup avoids any modification of the system and keeps all dependencies local to the application.
$ cd to/your/app/root`
$ npm install --save ca-apm-probe
Add the following first line to your application main entry point script (for example, server or server.js). Optionally, you can specify arguments. For example, if your Node.js Probe Collector Agent is running on a different host or port, you can specify corresponding arguments. Save and close the file.
var probe = require('ca-apm-probe').start(<collector-agent-host>, <collector-agent-port>, <probe-name>);
Where:
<collector-agent-host>
is the the host address of the Collector Agent, usually this address is localhost.
<collector-agent-port>
is the port of the Collector Agent.
<probe-name>
is the name of the probe that the metrics will be reported under.
Important! Place the ca-apm-probe require statement as the first require statement in the code (above all the other require statements), for example:
var probe = require('ca-apm-probe').start();
……
var express = require('express');
var mongoose = require('mongoose');
Run your application as follows:
$ node <startup_script>
You can configure the properties for a Probe Agent by editing the config.json file. Follow these steps:
Click here to access wiki documentation for details.
FAQs
CA APM Node.js Agent monitors real-time health and performance of Node.js applications
The npm package ca-apm-probe receives a total of 616 weekly downloads. As such, ca-apm-probe popularity was classified as not popular.
We found that ca-apm-probe 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.