Are Azure App Configuration values written to Log Analytics?

Bradley Cotier 20 Reputation points Microsoft Employee
2026-06-30T14:01:35.51+00:00

I would like to surface on a Grafana dashboard the times when an Azure App Configuration key/value pair was set to certain values. However, as far as I can tell the values are not written to logs. This kind of makes sense if the resource is thought of as similar to Key vault but I would like some official documentation that states this is the case, so as to be certain that I am not just missing something.

N.B. - I have set up a diagnostic settings resource on the App Config instance and enabled all logs.

Azure App Configuration
Azure App Configuration

An Azure service that provides hosted, universal storage for Azure app configurations.


Answer accepted by question author
Pravallika KV 18,850 Reputation points Microsoft External Staff Moderator
2026-06-30T17:28:46.75+00:00

Hi @Bradley Cotier ,

Azure App Configuration diagnostic logs record that a key/value was created, updated, or deleted, but not the actual value that was written.

As mentioned in MSDOC, the audit logs include details such as the operation, key, caller, IP address, and timestamp, but not the key's value. Therefore, it's not possible to surface "when a key was set to a specific value" from diagnostic logs alone.

If you want to plot "times when key FeatureX became Enabled" or "when Mode changed to Maintenance", Azure App Configuration logs alone cannot provide that history because the value itself is never logged. You can follow any of the below alternatives:

  • Store configuration changes through a CI/CD pipeline that records the values (or hashes of values) in Git or another audit store.
  • Emit a custom log/event whenever your deployment updates App Configuration.
  • If you're using App Configuration revisions, query the revision history via the App Configuration API and export it periodically to Log Analytics or another data source that Grafana can query.

Hope this helps!


If the resolution was helpful, kindly take a moment to click on User's imageand click on Yes for was this answer helpful. And, if you have any further query do let us know.

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.