Hello,
Is it possible to have the Failed Replication SAM AppInsight for Active Directory in Modern dashboard ?
Thanks
You can't implement it 1:1, but you can pull the data that represents the content.
SELECT [AdReplication].NamingContext.Application.Sites.Name AS [Site] , [AdReplication].NamingContext.Name AS [Context] , [AdReplication].NamingContext.Application.DetailsUrl AS [Context_Link] , [AdReplication].SourceDomainControllerFqdn , [AdReplication].TransportTypeDescription AS [Transport] , [AdReplication].DestinationDomainControllerFqdn , [AdReplication].ConsecutiveSyncFailureCount , [AdReplication].LastFailureTime , [AdReplication].LastSuccessTime , [AdReplication].LastAttemptTime , [AdReplication].Status , [AdReplication].StatusDescriptionFROM Orion.APM.ActiveDirectory.Replication AS [AdReplication]-- filter off any old 'site' informationWHERE IsNull([AdReplication].NamingContext.Application.Sites.Name, '') <> ''-- Filter to only show the attempts in the last day - adjust or remove for your needsAND [AdReplication].LastAttemptTime >= AddDay(-1, GETUTCDATE())
This isn't going to be 100% what you want, but it's probably a start.
If you really want to have it available, you'd have to put in an idea in SolarWinds Observability Self-Hosted (formerly known as Hybrid Cloud Observability) Feature Requests.