diff --git a/docs/en/02-intro.md b/docs/en/02-intro.md index 08c7cdfeac77605eab028f505ef9becddbf413df..e792da79f457f10257241e974f96ab68abd47c82 100644 --- a/docs/en/02-intro.md +++ b/docs/en/02-intro.md @@ -23,7 +23,7 @@ The major features are listed below: 3. Data Explorer: browse through databases and even run SQL queries once you login. 4. Visualization: - Supports [Grafana](../visual/grafana/) - - Supports Google data studio (to be released soon) + - Supports Google data studio - Supports Grafana cloud (to be released soon) 5. [Data Subscription](../data-subscription/): Application can subscribe a table or a set of tables. API is the same as Kafka, but you can specify filter conditions and you can share the topic with other users and user groups in TDengien Cloud. 6. [Stream Processing](../stream/): Not only is the continuous query is supported, but TDengine also supports event driven stream processing, so Flink or Spark is not needed for time-series data processing. diff --git a/docs/en/04-concept/index.md b/docs/en/04-concept/index.md index 986801d01eadc0c67f375a3a3154ed46c391b823..6c6dc1f7e6bfe6545da4d90f7bbc23781f948737 100644 --- a/docs/en/04-concept/index.md +++ b/docs/en/04-concept/index.md @@ -168,8 +168,15 @@ In a database, there can be one or more STables, but a STable belongs to only on ## Instance, URL, Token -An instance is a running cluster of nodes of TDengine with one or more databases. An instance cannot span across multiple regions or multiple clouds, but a single account (organization) can have multiple instances. An account may invite multiple users into his/her organization to share the data, and each user can be configured with different access rights. - +An instance is a running cluster of nodes of TDengine with one or more databases. An instance cannot span across multiple regions or multiple clouds. TDengine cloud provides a unique URL for each instance and uses tokens to authenticate the access. The token is generated by TDengine cloud for each user and for each instance. The token has a duration and can be reset by the user for each instance at any time for security purpose. +## User, Organization + +When a user register TDengine cloud service, an organization with one instance is created automatically. The user can add more instances in an organization later. In addition, the user can invite others to share data within his/her organization. He/she can share the whole organization, instance, a database or topics with fine tuned privileges to make sure data is securely shared. + +A user is uniquely identified by email address. He/she may belongs to multiple organizations. In different organization, he/she may have different roles and different access privileges. + +The billing is based on the usage for all the instances owned by an organization. + diff --git a/docs/en/15-programming/01-connect/06-csharp.md b/docs/en/15-programming/01-connect/06-csharp.md index 0513f3f7fe3ef6a91ac9f039a045a6a8bb37836f..291a4efaf99635eafbcb2193a1c21a5e91b299a2 100644 --- a/docs/en/15-programming/01-connect/06-csharp.md +++ b/docs/en/15-programming/01-connect/06-csharp.md @@ -33,7 +33,7 @@ Add following ItemGroup and Task to your project file. -||||||| eeb4065670 + dotnet add package TDengine.Connector ```