Unable to add the APM Insight extension for Azure classic VMs in the new portal

Unable to add the APM Insight extension for Azure classic VMs in the new portal

While trying to add APM Insight Extension in classic VMs through the Azure portal, you may get the following error:

Extension with publisher 'Site24x7', type 'Site24x7APMInsightExtn', and type handler version '1.0' could not be found in the extension repository. (Code: ArtifactNotFound) 

In such cases, the extension can be added via PowerShell scripts. To add the extension from PowerShell command line, use the following commands. 

$vmObject = (Get-AzureVM -ServiceName <serviceName of Azure classic VM> -Name <name of classic VM>)

Set-AzureVMExtension -Publisher Site24x7 -ExtensionName Site24x7ApmInsightExtn -Version 1.2 -ReferenceName Site24x7ApmInsightExtn -PublicConfiguration '{"site24x7LicenseKey":"<your license key>"}' -VM $vmObject  -Verbose
 
$vmObject -Verbose -Debug | Update-AzureVM 

If you require further support write to us at support@site24x7.com. Please send us the output of these commands and or the audit logs for troubleshooting. 


    • Related Articles

    • APM Insight integration for Next.js in Kubernetes

      To integrate the Site24x7 APM Insight Next.js agent into your Kubernetes application using initContainers with the prebuilt agent image, follow the steps below: Prerequisites A Next.js application container image The Site24x7 APM Insight license key ...
    • Troubleshooting false positive alerts in monitoring

      Problem False positive alerts are being generated. Possible cause The monitoring system is down in some locations. The Website monitor might be configured for one location, such as Seattle, but may appear down when accessed from another location, ...
    • Validating sender email using DKIM authentication

      What is DKIM? DomainKeys Identified Mail (DKIM) is an advanced authentication method used widely by email service providers to verify the email from the point of its origin by validating the email sender. It allows the email senders to authenticate ...
    • Monitor and validate DNS IP changes using regex

      DNS administrators often monitor their DNS servers to detect changes in domain resolution and ensure IP mappings remain secure and accurate. Problem When your organization adds or modifies an IP address for your domain name, it’s critical to: Be ...
    • Difference between a website monitor and a SOAP Web Service monitor

      Website monitor will support monitoring of any web application via POST, GET and HEAD methods of configuration. Learn more on the performance metrics provided for a website monitor. SOAP Web Service monitors , on the other hand, lets you to ...