Just imagine, you have an application that is using Jaeger as the backend, but now you want to switch to SignalFX. This is do able. Below is the steps Install SignalFX Agent:SignalFX Agent is used to collect your host info such as memory and cpu,network … it uses collectd for this purpose. Signalfx Agent also can act as a collector for Jaeger client via GRPC. Installing Signalfx Agent is not difficult, follow their current instruction from your account. To make it easy for you i will share my configuration — # *Required* The access token for the org that you wish to send metrics to.Read More →

Just imagine, you use sitespeed to monitor your website , and your website throws a javascript alert popup – this will usually throw some error. To fix this issue, you can try this script: module.exports = async function(context, commands) { // Measure the page and give it the alias StartPage const driver = context.selenium.driver; const webdriver = context.selenium.webdriver; await commands.measure.start(); await driver.get(‘http://www.yoururl.com’); await driver.switchTo().alert().accept(); await commands.measure.stop(); };Read More →