Skip to content

Commit 4f752d0

Browse files
committed
Fixed urls
1 parent aaf93b4 commit 4f752d0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/time-series-insights/time-series-insights-update-tsq.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ ms.custom: seodec18
1414

1515
# Data querying in Azure Time Series Insights Preview
1616

17-
Azure Time Series Insights enables data querying on events and metadata stored in the environment via public surface APIs. These APIs also are used by the [Time Series Insights Explorer](https://docs.microsoft.com/en-us/azure/time-series-insights/time-series-insights-update-explorer).
17+
Azure Time Series Insights enables data querying on events and metadata stored in the environment via public surface APIs. These APIs also are used by the [Time Series Insights Explorer](https://docs.microsoft.com/azure/time-series-insights/time-series-insights-update-explorer).
1818

1919
Three primary API categories are available in Time Series Insights:
2020

2121
* **Environment APIs**: These APIs enable queries on the Time Series Insights environment itself. These can be used to gather the list of environments the caller has access to and environment metadata.
2222
* **Time Series Model-Query (TSM-Q) APIs**: Enables create, read, update, and delete (CRUD) operations on metadata stored in the Time Series Model of the environment. These can be used to access and edit the instances, types, and hierarchies.
2323
* **Time Series Query (TSQ) APIs**: Enables retrieval of telemetry or events data as it's recorded from the source provider and enables performant computations and aggregations on the data using advanced scalar and aggregate functions.
2424

25-
Time Series Insights uses a rich string-based expression language, [Time Series Expression (TSX)](https://docs.microsoft.com/en-us/rest/api/time-series-insights/preview#time-series-expression-and-syntax), for expressing calculations.
25+
Time Series Insights uses a rich string-based expression language, [Time Series Expression (TSX)](https://docs.microsoft.com/rest/api/time-series-insights/preview#time-series-expression-and-syntax), for expressing calculations.
2626

2727
## Azure Time Series Insights core APIs
2828

@@ -32,36 +32,36 @@ The following core APIs are supported.
3232

3333
## Environment APIs
3434

35-
* [Get Environments API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/management/environments/get): Returns the list of environments that the caller is authorized to access.
36-
* [Get Environments Availability API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/dataaccess(preview)/query/getavailability): Returns the distribution of event count over the event timestamp `$ts`. This API helps determine if there are any events in the environment by returning the count of events broken into intervals of time, if any exist.
37-
* [Get Event Schema API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/dataaccess(preview)/query/geteventschema): Returns the event schema metadata for a given search span. This API helps retrieve all metadata and properties available in the schema for the given search span.
35+
* [Get Environments API](https://docs.microsoft.com/rest/api/time-series-insights/management/environments/get): Returns the list of environments that the caller is authorized to access.
36+
* [Get Environments Availability API](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/query/getavailability): Returns the distribution of event count over the event timestamp `$ts`. This API helps determine if there are any events in the environment by returning the count of events broken into intervals of time, if any exist.
37+
* [Get Event Schema API](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/query/geteventschema): Returns the event schema metadata for a given search span. This API helps retrieve all metadata and properties available in the schema for the given search span.
3838

3939
## Time Series Model-Query (TSM-Q) APIs
4040

4141
Most of these APIs support batch execution operation to enable batch CRUD operations on multiple Time Series Model entities:
4242

43-
* [Model Settings API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/preview#model-settings-api): Enables *GET* and *PATCH* on the default type and the model name of the environment.
44-
* [Types API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/preview#types-api): Enables CRUD on Time Series types and their associated variables.
45-
* [Hierarchies API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/preview#hierarchies-api): Enables CRUD on Time Series hierarchies and their associated field paths.
46-
* [Instances API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/preview#instances-api): Enables CRUD on Time Series instances and their associated instance fields. Additionally, the Instances API supports the following operations:
43+
* [Model Settings API](https://docs.microsoft.com/rest/api/time-series-insights/preview#model-settings-api): Enables *GET* and *PATCH* on the default type and the model name of the environment.
44+
* [Types API](https://docs.microsoft.com/rest/api/time-series-insights/preview#types-api): Enables CRUD on Time Series types and their associated variables.
45+
* [Hierarchies API](https://docs.microsoft.com/rest/api/time-series-insights/preview#hierarchies-api): Enables CRUD on Time Series hierarchies and their associated field paths.
46+
* [Instances API](https://docs.microsoft.com/rest/api/time-series-insights/preview#instances-api): Enables CRUD on Time Series instances and their associated instance fields. Additionally, the Instances API supports the following operations:
4747
* [Search](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/timeseriesinstances/search): Retrieves a partial list of hits on search for time series instances based on instance attributes.
4848
* [Suggest](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/timeseriesinstances/suggest): Searches and suggests a partial list of hits on search for time series instances based on instance attributes.
4949

5050
## Time Series Query (TSQ) APIs
5151

5252
These APIs are available on all both stores in our multilayered storage solution in Time Series Insights. Query URL parameters are used to specify the [store type](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/query/execute#uri-parameters) the query should execute on:
5353

54-
* [Get Events API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/dataaccess(preview)/query/execute#getevents): Enables query and retrieval of raw events and the associated event timestamps as they're recorded in Time Series Insights from the source provider. This API allows retrieval of raw events for a given Time Series ID and search span. This API supports pagination to retrieve the complete response dataset for the selected input.
54+
* [Get Events API](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/query/execute#getevents): Enables query and retrieval of raw events and the associated event timestamps as they're recorded in Time Series Insights from the source provider. This API allows retrieval of raw events for a given Time Series ID and search span. This API supports pagination to retrieve the complete response dataset for the selected input.
5555

56-
* [Get Series API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/dataaccess(preview)/query/execute#getseries): Enables query and retrieval of computed values and the associated event timestamps by applying calculations defined by variables on raw events. These variables can be defined in either the Time Series Model or provided inline in the query. This API supports pagination to retrieve the complete response dataset for the selected input.
56+
* [Get Series API](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/query/execute#getseries): Enables query and retrieval of computed values and the associated event timestamps by applying calculations defined by variables on raw events. These variables can be defined in either the Time Series Model or provided inline in the query. This API supports pagination to retrieve the complete response dataset for the selected input.
5757

58-
* [Aggregate Series API](https://docs.microsoft.com/en-us/rest/api/time-series-insights/dataaccess(preview)/query/execute#aggregateseries): Enables query and retrieval of aggregated values and the associated interval timestamps by applying calculations defined by variables on raw events. These variables can be defined in either the Time Series Model or provided inline in the query. This API supports pagination to retrieve the complete response dataset for the selected input.
58+
* [Aggregate Series API](https://docs.microsoft.com/rest/api/time-series-insights/dataaccess(preview)/query/execute#aggregateseries): Enables query and retrieval of aggregated values and the associated interval timestamps by applying calculations defined by variables on raw events. These variables can be defined in either the Time Series Model or provided inline in the query. This API supports pagination to retrieve the complete response dataset for the selected input.
5959

6060
For a specified search span and interval, this API returns an aggregated response per variable per interval for a Time Series ID. The number of intervals in the response dataset is calculated by counting epoch ticks (the number of milliseconds that have elapsed since Unix epoch - Jan 1st, 1970) and dividing the ticks by the interval span size specified in the query.
6161

6262
The timestamps returned in the response set are of the left interval boundaries, not of the sampled events from the interval.
6363

6464
## Next steps
6565

66-
- Read more about different variables that can be defined in the [Time Series Model](https://docs.microsoft.com/en-us/azure/time-series-insights/time-series-insights-update-tsm).
67-
- Read more about how to query data from the [Time Series Insights Explorer](https://docs.microsoft.com/en-us/azure/time-series-insights/time-series-insights-update-explorer).
66+
- Read more about different variables that can be defined in the [Time Series Model](https://docs.microsoft.com/azure/time-series-insights/time-series-insights-update-tsm).
67+
- Read more about how to query data from the [Time Series Insights Explorer](https://docs.microsoft.com/azure/time-series-insights/time-series-insights-update-explorer).

0 commit comments

Comments
 (0)