Desperate to get ProTrial running with NodeJS
console.log('BEGIN installing analytics', __dirname);
require("/home/madonna/node_modules/appdynamics").profile({
controllerHostName: 'ailabs.saas.appdynamics.com',
controllerPort: 443, // If SSL, be sure to enable the next line
controllerSslEnabled: true, // Optional - use if connecting to controller via SSL
accountName: 'AILabs', // Required for a controller running in multi-tenant mode.
accountAccessKey: 'qq1s5p89i7en', // Required for a controller running in multi-tenant mode.
applicationName: 'MyShopwindow',
tierName: '',
nodeName: 'Node 1 a334-', // Node names must be unique. A unique name has been generated for you.
debug: true // Optional - defaults to false.
});
console.log("END installing");
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337);
console.log('Server running at http://127.0.0.1:1337/');
It cannot see any Nodes when I go to the tier!
What are some common ideas for troubleshooting this sort of thing? Are there logs I could see?
I am in the middle of debugging a large application & having this would be a lifesaver.
Thanks!
Hi,
We see node with name "Node 1 a334--0" in your saas ui which have reported sometime earlier:
If you are referring to specifically node "Node 1 a334-" in UI , check if restarting the install process with tier name provided helps as we see the tier name is blank in provided comments:
tierName: '',
Regards,
Arun