Not a customer? Click the 'Start a free trial' link to begin a 30-day SaaS trial of our product and to join our community.
Existing Cisco AppDynamics customers should click the 'Sign In' button to authenticate to access the community
02-08-2021 12:38 PM
Hi,
I am trying to send metrics to the controller using Machine Agent HTTP Listener but the agent is discarding the metrics since it is unregistered. Do I have to register it manually?
$URL = "http://localhost:9999"
$Endpoint = "/api/v1/metrics"
$URLFull = "$URL$Endpoint"
$JSON = ConvertTo-Json @(@{"metricName"="Custom Metrics|DFSR Backlog" + "|CommonData|" + $thishost;"aggregatorType"="OBSERVATION";"value"=$backlog_count})
Write-Output $JSON
$JSONHeaders = @{
"Content-Type"="application/json"
"Media-Type"="application/json"
"Accept"="application/json"}
$SendMetric = Invoke-RestMethod -Method Post -Uri $URLFull -Headers $JSONHeaders -Body $JSON
This is the JSON that is being passed:
[
{
"aggregatorType": "OBSERVATION",
"metricName": "Custom Metrics|DFSR Backlog|CommonData|SERVER1",
"value": -1
}
]
02-09-2021 12:47 PM
There is an existing Community post that seems to be similar. Plase check it out and see if it is able to provide any help or insight.
Cannot Register Machine agent to an application
Thanks,
Ryan, Cisco AppDynamics Community Manager
Found something helpful? Click the Accept as Solution button to help others find answers faster.
Liked something? Click the Thumbs Up button.
Check out Observabiity in Action
new deep dive videos weekly in the Knowledge Base.
02-09-2021 05:36 PM
Hello Fernando,
To troubleshoot missing custom metrics, please go through the steps in the Extensions Troubleshooting Document.
Thank you! Your submission has been received!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form