-
Notifications
You must be signed in to change notification settings - Fork 635
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Analytics Coverage for Python Operations #11208
Changes from 10 commits
4a99a92
dde018e
1281d0b
0988827
ab6d4e1
5df3c8d
9188d6f
b16e4bd
520a371
5585345
5749b50
d0e9eb0
a30bb97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ public class SideBySideViewModel : IDiffViewViewModel | |
public SideBySideDiffModel DiffModel { get; set; } | ||
public DiffPaneModel AfterPane { get { return DiffModel.NewText; } } | ||
public DiffPaneModel BeforePane { get { return DiffModel.OldText; } } | ||
private bool HasChanges { get { return DiffModel.NewText.HasDifferences | DiffModel.OldText.HasDifferences; } } | ||
public bool HasChanges { get { return DiffModel.NewText.HasDifferences | DiffModel.OldText.HasDifferences; } } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mmisol @aparajit-pratap @mjkkirschner I dont recall why we specifically made this property private, but I would like to expose it on interface level and add analytics coverage so we know not only user clicked accept or Reject but also if there are any real code changes. |
||
|
||
private State diffState; | ||
public State DiffState | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,6 +144,7 @@ | |
<ProjectReference Include="..\NodeServices\DynamoServices.csproj"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. whats added from this project? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Analytics is only available from logging, so in the future, everytime we want to track on extension layer (at least the OOTB ones developed by us), this will be a dependency in that case seems. We could expose APIs but unless we expose dashboards as well, APIs wont be useful I think |
||
<Project>{ef879a10-041d-4c68-83e7-3192685f1bae}</Project> | ||
<Name>DynamoServices</Name> | ||
<Private>False</Private> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍