Forum Discussion
Dave_Petrie
5 years agoNew Member
Extracting data from Time Log extension in Azure DevOps.
I am using the Time Log extension to capture times within stories and tasks in Azure DevOps. I am extracting the ADO information into power BI. I am manually dumping the Time Log information fro...
Anonymous
3 years agoNot applicable
I can use the Time Log extension data with this "Advanced Editor" code:
let
Source = VSTS.Contents("https://extmgmt.dev.azure.com/[MyCompany]/_apis/ExtensionManagement/InstalledExtensions/TimeLog/time-logging-extension/Data/Scopes/Default/Current/Collections/TimeLogData/Documents"),
#"Imported JSON" = Table.FromRecords(Json.Document(Source,65001)[value])
in
#"Imported JSON"