just created a budget but could not see it in az monitor activity-log list

Martin26 25 Reputation points
2026-07-20T22:49:11.5633333+00:00

Dear,

Are budget activities logged in in way we can list them over az monitor activity-log list ? to be precise, here's the full command I used and ran after 30 seconds the budget creation:

az monitor activity-log list \
   --max-events 50  \
   --offset 1h   \
   --query "[].{Time:eventTimestamp, Resource:resourceId, Operation:operationName.localizedValue, Status:status.localizedValue}" \
   --output table

If not, how can I ensure I can list ALL activities using an azure command as this account is my own experimental account with full control ?

Thank you,

Martin

Azure Monitor
Azure Monitor

An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.

0 comments No comments

Answer accepted by question author
Stanislav Zhelyazkov 29,826 Reputation points MVP Volunteer Moderator
2026-07-21T05:33:12.4+00:00

Hi,

I am assuming you are creating budget that is not scoped to subscription but some other entity like billing profile and in that case budgets are logged at tenant/directory activity logs.

User's image

It is not possible to query those via az monitor activity-log command as it does it only on subscription scope. You need to use the rest command.

START_TIME=$(date -u -d '1 hour ago' +%Y-%m-%dT%H:%M:%SZ)

az rest --method get \
  --uri "https://management.azure.com/providers/Microsoft.Insights/eventtypes/management/values?api-version=2015-04-01&\$filter=eventTimestamp ge '$START_TIME'" \
  --query 'value[].{Time:eventTimestamp, Resource:resourceId, Operation:operationName.localizedValue, Status:status.localizedValue}' \
  --output table

Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

Was this answer helpful?

1 person found this answer helpful.

0 additional answers

Sort by: Oldest

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.