We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Team,
I am looking for a way to show live data and data within a specific date range to Power BI Report.
let //create variables for start and end times start = DateTime.ToText(StartDateTime), end = DateTime.ToText(EndDateTime), queryPart1 = "{""storeType"":""WarmStore"",""isSearchSpanRelative"":true,""clientDataType"":""RDX_20200713_Q"",""environmentFqdn"":""someid.env.timeseries.azure.com"", ""queries"":[ {""getEvents"": {""searchSpan"": {""from"":""", queryPart2 = start, queryPart3 = """,""to"":""", queryPart4 = end, queryPart5 = """},", queryPart6 = """timeSeriesId"":[""edgedevicename"",""sensorname""],""take"":250000}}]}", //combine individual sections of query into one finalQuery = Text.Combine({queryPart1,queryPart2,queryPart3,queryPart4,queryPart5,queryPart6}), Source = AzureTimeSeriesInsights.Contents([JsonPayload = finalQuery]) in Source
Does Power BI support m query parameters for TSI Connector? if not, are there any recommendations from Microsoft to solve the problem mentioned above?
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Team,
I am looking for a way to show live data and data within a specific date range to Power BI Report.
What we tried -
Problem
Question -
Does Power BI support m query parameters for TSI Connector? if not, are there any recommendations from Microsoft to solve the problem mentioned above?
Thanks.
The text was updated successfully, but these errors were encountered: