skip to Main Content

Azure monitor exporter with Golang

I am currently trying to connect my Go application to Azure monitor, and I am facing issues right away with the "otel" contrib package (https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/azuremonitorexporter) The exporter that I am trying to use does not implement the ExportSpans function for…

VIEW QUESTION

Azure Deployment Script fails with AuthenticationFailed

We have a fairly simple deployment script to add a delay: resource awaitscript 'Microsoft.Resources/deploymentScripts@2020-10-01' = { name: 'await-${appName}' location: location kind: 'AzurePowerShell' properties: { azPowerShellVersion: '9.7' scriptContent: 'Start-Sleep -Seconds 150' timeout: 'PT1H' retentionInterval: 'PT1H' } dependsOn: [appServicePlan] } It has…

VIEW QUESTION

Azure – MS Graph CalendarView BadRequest

Can somone tell me why am i getting bad request using this query in powershell script.Authentication with token is working fine and some other query are working with same authentication method. $query = "https://graph.microsoft.com/v1.0/[email protected]/calendarView?startDateTime=2023-10-03T00:00:00&endDateTime=2023-10-04T00:00:00" $appointments = (Invoke-RestMethod -Headers @{Authorization =…

VIEW QUESTION
Back To Top
Search