Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Fixing bug I found during AppLens 101 Workshop #736

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ public static partial class ResponseInsightsExtension
/// public async static Task<![CDATA[<Response>]]> Run(DataProviders dp, OperationContext cxt, Response res)
/// {
/// var diagnosticData = new DiagnosticData {
/// Table = table //This is where you would execute kusto query
/// Table = table, //This is where you would execute kusto query
/// RenderingProperties = new TimeSeriesRendering()
/// }
/// };
///
/// DynamicInsight insight = new DynamicInsight(InsightStatus.Critical, "This insight will expand to show a graph", diagnosticData);
///
Expand Down