Skip to content

Commit

Permalink
Client
Browse files Browse the repository at this point in the history
  • Loading branch information
KSemenenko committed Feb 11, 2022
1 parent c321edf commit 359406d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions OrleansDashboard.Core/DashboardClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,10 @@ public async Task<Immutable<Dictionary<string, GrainMethodAggregate[]>>> TopGrai
{
return await dashboardGrain.TopGrainMethods().ConfigureAwait(false);
}

public async Task<string> GetInteractionsGraph()
{
return await dashboardGrain.GetInteractionsGraph().ConfigureAwait(false);
}
}
}
1 change: 1 addition & 0 deletions OrleansDashboard.Core/IDashboardClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ public interface IDashboardClient
Task<Immutable<StatCounter[]>> GetCounters(string siloAddress);
Task<Immutable<Dictionary<string, Dictionary<string, GrainTraceEntry>>>> GrainStats(string grainName);
Task<Immutable<Dictionary<string, GrainMethodAggregate[]>>> TopGrainMethods();
Task<string> GetInteractionsGraph();
}
}

0 comments on commit 359406d

Please sign in to comment.