You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This repository is the source content for the Quix documentation that is published on the web at https://quix.io/docs. The source files for the documentation are in GitHub-flavoured Markdown, with the additions supported by our tooling, [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/).
7
7
8
-
To get a free Quix account, [sign up](https://portal.platform.quix.ai/self-sign-up).
8
+
To get a free Quix account, [sign up](https://portal.platform.quix.io/self-sign-up).
Copy file name to clipboardExpand all lines: docs/apis/portal-api/setup.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
To use the APIs you'll typically need the following:
4
4
5
-
1.[Sign up to Quix](https://portal.platform.quix.ai/self-sign-up).
5
+
1.[Sign up to Quix](https://portal.platform.quix.io/self-sign-up).
6
6
7
7
2. Obtain a Personal Access Token - you need this to authenticate requests.
8
8
@@ -42,19 +42,19 @@ In the `APIs and tokens` dialog, you can click `Personal Access Tokens` to gener
42
42
43
43
When using APIs you’ll need to obtain an ID based on a specific environment. For example, endpoints for the [Query API](../../apis/query-api/overview.md) use a domain with the following pattern:
@@ -86,7 +86,7 @@ Copy the value for `environment-id` and use it wherever you need an environment
86
86
87
87
!!! note
88
88
89
-
The `workspace=` parameter in the URL `https://portal.platform.quix.ai/home?workspace={environment-id}` is there for legacy reasons, and does in fact indicate an environment.
89
+
The `workspace=` parameter in the URL `https://portal.platform.quix.io/home?workspace={environment-id}` is there for legacy reasons, and does in fact indicate an environment.
90
90
91
91
## API reference documentation
92
92
@@ -96,10 +96,10 @@ The URLs for the API references are specific to your environment, so you can eas
96
96
97
97
| API | API reference URL (Swagger documentation)|
Copy file name to clipboardExpand all lines: docs/apis/query-api/filter-tags.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ Each object in the `tagFilters` array can support the following `operator` value
66
66
`Like` and `NotLike` perform a regular expression match, so you can search by pattern. For example, to get the Speed parameter values tagged with a LapNumber which is either 2 or 4, you can use the expression `^\[24\]\\.` to match values 2.0 and 4.0:
Copy file name to clipboardExpand all lines: docs/apis/query-api/setup.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
To use the APIs you'll typically need the following:
4
4
5
-
1.[Sign up to Quix](https://portal.platform.quix.ai/self-sign-up).
5
+
1.[Sign up to Quix](https://portal.platform.quix.io/self-sign-up).
6
6
7
7
2. Obtain a Personal Access Token - you need this to authenticate requests.
8
8
@@ -42,19 +42,19 @@ In the `APIs and tokens` dialog, you can click `Personal Access Tokens` to gener
42
42
43
43
When using APIs you’ll need to obtain an ID based on a specific environment. For example, endpoints for the Query API use a domain with the following pattern:
@@ -86,7 +86,7 @@ Copy the value for `environment-id` and use it wherever you need an environment
86
86
87
87
!!! note
88
88
89
-
The `workspace=` parameter in the URL `https://portal.platform.quix.ai/home?workspace={environment-id}` is there for legacy reasons, and does in fact indicate an environment.
89
+
The `workspace=` parameter in the URL `https://portal.platform.quix.io/home?workspace={environment-id}` is there for legacy reasons, and does in fact indicate an environment.
90
90
91
91
## API reference documentation
92
92
@@ -96,10 +96,10 @@ The URLs for the API references are specific to your environment, so you can eas
96
96
97
97
| API | API reference URL (Swagger documentation)|
@@ -20,7 +20,7 @@ Note that you can supply multiple IDs in the `streamIds` array to match multiple
20
20
The **location** of a stream defines its position in a hierarchy. A stream location looks just like a filesystem path. You can filter streams based on the start of this path, so you can easily find streams contained within any point in the hierarchy. For example, this query will find streams with a location of `/one` but it will also find streams with a `/one/two` location:
You can filter streams based on their use of a given **parameter** with the `parameterIds` property. For example, to find all streams that contain at least one single occurence of `Gear` data:
You can filter based on the presence or absence of a certain stream **status**, for example, if the stream is `Open` or was `Interrupted`. The `includeStatuses` and `excludeStatuses` properties each take an array of values to act on. So to get all streams that aren’t Interrupted or Closed, use this query:
0 commit comments