Hi there,
I'm running ELK 7.7 with APM 7.7.
I have successfully setup Opbeans-java for APM monitoring.
I have also downloaded and run the Opbeans-dotnet application.
How do i setup APM .net agent for it?
I have run the following:
Install-PackageProvider -Name NuGet -RequiredVersion 2.8.5.208 -Force
Get-PackageSource
Name ProviderName IsTrusted Location
---- ------------ --------- --------
nuget.org NuGet False https://api.nuget.org/v3/index.json
PSGallery PowerShellGet False https://www.powershellgallery.com/api/v2
Set-PackageSource nuget.org -Trusted
Install-Package Elastic.Apm.AspNetCore -Version 1.6.1
Install-Package : A parameter cannot be found that matches parameter name 'Version'.
At line:1 char:40
+ Install-Package Elastic.Apm.AspNetCore -Version 1.6.1
+ ~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Install-Package], ParameterBindingException
+ FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage
Install-Package Elastic.Apm.AspNetCore
Install-Package : No match was found for the specified search criteria and package name 'Elastic.Apm.AspNetCore'. Try
Get-PackageSource to see all available registered package sources.
At line:1 char:1
+ Install-Package Elastic.Apm.AspNetCore
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Microsoft.Power....InstallPackage:InstallPackage) [Install-Package], Ex
ception
+ FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage
Install-Package -Name Elastic.Apm.NetCoreAll -RequiredVersion 1.6.1 -ProviderName NuGet
Install-Package : No match was found for the specified search criteria and package name 'Elastic.Apm.NetCoreAll'. Try
Get-PackageSource to see all available registered package sources.
At line:1 char:1
+ Install-Package -Name Elastic.Apm.NetCoreAll -RequiredVersion 1.6.1 - ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Microsoft.Power....InstallPackage:InstallPackage) [Install-Package], Ex
ception
+ FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage
How do I install the Elastic.Apm.AspNetCore package?
Thanks,
ck