{"id":46679,"date":"2021-12-16T00:00:00","date_gmt":"2021-12-16T08:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/using-griddb-cloud-version-1-2\/"},"modified":"2025-11-13T12:55:44","modified_gmt":"2025-11-13T20:55:44","slug":"using-griddb-cloud-version-1-2","status":"publish","type":"post","link":"https:\/\/www.griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/","title":{"rendered":"Using GridDB Cloud Version 1.2"},"content":{"rendered":"<p>This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service in our first blog: <a href=\"https:\/\/griddb.net\/en\/blog\/an-introduction-to-griddb-cloud\/\">An Introduction to GridDB Cloud<\/a>. With the introduction out of the way, we will focus on new features brought upon us by version 1.2 of the Cloud service.<\/p>\n<p>With the release of the new version of GridDB, there is now an available <a href=\"https:\/\/github.com\/griddb\/webapi\">GridDB Web API<\/a> baked right into the GridDB Cloud; you can learn the basics of using the WebAPI <a href=\"https:\/\/griddb.net\/en\/blog\/griddb-webapi\/\">here<\/a>. The main benefits of the Web API are that you can use HTTP Requests to create containers and to push data directly into your database. This opens up using other services like <a href=\"https:\/\/www.influxdata.com\/time-series-platform\/telegraf\/\">Telegraf<\/a> to record metrics and other data into your GridDB database.<\/p>\n<p>In this article, we will showcase some simple Web API commands using <code>curl<\/code>. And then we will show you how to install and use Telegraf with your Cloud service.<\/p>\n<h2>GridDB Web API With Cloud<\/h2>\n<p>Using Web API is very straightforward. When you sign up for your GridDB Cloud Service, you are given your unique URL to the dashboard itself, and then another URL to the specific Web API Endpoint which you will use as your base to build your HTTP Requests.<\/p>\n<h3>Creating GridDB User<\/h3>\n<p>To start, first create a new <code>GridDB User<\/code>. This user and password will be used when making your HTTP Web API Requests. For this example, we will use User: test &amp; Password: test.<\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/Screenshot_25-1.png\"><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/Screenshot_25-1.png\" alt=\"\" width=\"1255\" height=\"485\" class=\"aligncenter size-full wp-image-27936\" srcset=\"\/wp-content\/uploads\/2021\/12\/Screenshot_25-1.png 1255w, \/wp-content\/uploads\/2021\/12\/Screenshot_25-1-300x116.png 300w, \/wp-content\/uploads\/2021\/12\/Screenshot_25-1-1024x396.png 1024w, \/wp-content\/uploads\/2021\/12\/Screenshot_25-1-768x297.png 768w, \/wp-content\/uploads\/2021\/12\/Screenshot_25-1-600x232.png 600w\" sizes=\"(max-width: 1255px) 100vw, 1255px\" \/><\/a><\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/Screenshot_24-1.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/Screenshot_24-1.png\" alt=\"\" width=\"1262\" height=\"822\" class=\"aligncenter size-full wp-image-27935\" srcset=\"\/wp-content\/uploads\/2021\/12\/Screenshot_24-1.png 1262w, \/wp-content\/uploads\/2021\/12\/Screenshot_24-1-300x195.png 300w, \/wp-content\/uploads\/2021\/12\/Screenshot_24-1-1024x667.png 1024w, \/wp-content\/uploads\/2021\/12\/Screenshot_24-1-768x500.png 768w, \/wp-content\/uploads\/2021\/12\/Screenshot_24-1-600x391.png 600w\" sizes=\"(max-width: 1262px) 100vw, 1262px\" \/><\/a><\/p>\n<h3>Creating A Container<\/h3>\n<p>And now let&#8217;s create our first Request. To start, let&#8217;s create a container called <code>point01<\/code>.<\/p>\n<p>The Request will need to set the content type to <code>application\/json; charset=UTF-8<\/code> and have a Basic Authorization header with your username and password encoded to base64. This is what a Request using curl would look like, for example:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">curl --location --request POST 'https:\/\/cloud1.griddb.com\/trial002\/griddb\/v2\/gs_clustertrial002\/dbs\/public\/containers' \n--header 'Authorization: Basic dGVzdDp0ZXN0Cg==' \n--header 'Content-Type: application\/json; charset=UTF-8' \n--data '{\n    \"container_name\": \"point01\",\n    \"container_type\": \"TIME_SERIES\",\n    \"rowkey\": true,\n    \"columns\": [\n        {\n            \"name\": \"timestamp\",\n            \"type\": \"TIMESTAMP\"\n        },\n        {\n            \"name\": \"active\",\n            \"type\": \"BOOL\"\n        },\n        {\n            \"name\": \"voltage\",\n            \"type\": \"DOUBLE\"\n        }\n    ]\n}'<\/code><\/pre>\n<\/div>\n<p>So, first we use your given GridDB Cloud Web API URL as our endpoint. We build out the Endpoint using this &#8220;formula&#8221;: <base URL\/>\/&lt;clusterName&lt;\/dbs\/public\/containers<\/p>\n<p>As for the Authorization line, we simply encode our username and password into base64 as a single entity like so: <code>test:test<\/code>.<\/p>\n<p>The data column is simply a <code>json<\/code> of the schema of the container we would like to create. In this case, we are creating a TIME_SERIES container called point01 with 3 columns. Once sent, you should received back a HTTP Response Code of 201 (Created).<\/p>\n<h3>Registering a Row<\/h3>\n<p>To register a row, we again use a simple formula to build out our endpoint: <baseurl>\/dbs\/public\/containers\/<containername>\/rows. Let&#8217;s send some data to our newly formed container (and please note we are using the HTTP Request for <code>PUT<\/code>, not <code>POST<\/code>):<\/containername><\/baseurl><\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">curl --location --request PUT 'https:\/\/cloud1.griddb.com\/trial002\/griddb\/v2\/gs_clustertrial002\/dbs\/public\/containers\/point03\/rows' --header 'Authorization: Basic dGVzdDp0ZXN0Cg==' --header 'Content-Type: application\/json;charset=UTF-8' -d '[[\"2021-06-28T10:30:00.000Z\", false, \"100\"]]''<\/code><\/pre>\n<\/div>\n<p>This will add some generic values to your GridDB Cloud <code>point03<\/code> container.<\/p>\n<h3>Obtaining A Row<\/h3>\n<p>To Obtain a row, we use the same Endpoint as registering a row, except instead of a PUT, we use POST. We will also send with our Request a different body.<\/p>\n<p>And to change things up, if you are not comfortable with using curl (or a command line), you can also simply use the <code>VS Code<\/code> <a href=\"https:\/\/marketplace.visualstudio.com\/items?itemName=humao.rest-client\">REST Client extension<\/a>. Here&#8217;s what a Request looks like using VS Code to obtain a row of data:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">POST https:\/\/cloud1.griddb.com\/trial002\/griddb\/v2\/gs_clustertrial002\/dbs\/public\/containers\/point03\/rows HTTP\/1.1\nHost: cloud1.griddb.com\nAuthorization: Basic dGVzdDp0ZXN0Cg==\nContent-Type: application\/json\nContent-Length: 93\n \n{\n  \"limit\"  : 100,\n  \"condition\" : \"timestamp >= TIMESTAMP('2021-06-28T04:30:00.000Z')\"\n}<\/code><\/pre>\n<\/div>\n<p>And of course, if you would like an even easier method for making HTTP Requests, you can also use <a href=\"https:\/\/www.postman.com\/\">Postman<\/a><\/p>\n<p>Those are the basics of using the Web API with GridDB Cloud. Next, let&#8217;s try using InfluxDB and Telegraf<\/p>\n<h2>Telegraf<\/h2>\n<p>Telegraf is an &#8220;open source server agent to help you collect metrics from your stacks, sensors and systems&#8221;. To put simply, we will be using the newly released GridDB Output plugin for Telegraf, in conjunction with the GridDB Web API, to send data to our GridDB Cloud using HTTP.<\/p>\n<p>First, let&#8217;s install all of the necessary requirements.<\/p>\n<h3>Installation<\/h3>\n<p>The requirements for this are:<\/p>\n<ul>\n<li>CentOS 7 or higher<\/li>\n<li>Go version 1.15.13 or higher<\/li>\n<li>The GridDB Telegraf output plugin<\/li>\n<\/ul>\n<h4>Go<\/h4>\n<p>To install Go, you can download directly from their <a href=\"https:\/\/go.dev\/dl\/\">website<\/a>. Installation instructions can be found <a href=\"https:\/\/go.dev\/doc\/install\">here<\/a>. Once installed, you can run <code>$ go version<\/code> to make sure.<\/p>\n<h4>Telegraf &amp; The GridDB Output Plugin<\/h4>\n<p>First, download the source code for the GridDB output plugin for Telegraf from the GridDB Cloud dashboard supports section.<\/p>\n<p>Next, you can install Telegraf itself using the <code>go get<\/code> command.<\/p>\n<p><code>$ go get -d \"github.com\/influxdata\/telegraf\"<\/code><\/p>\n<p>NOTE: If you are having issues here, make sure you working inside your Go home directory. Also make sure that the <code>GO111MODULE<\/code> environment setting is set to <code>on<\/code>.<\/p>\n<p><code>$ export GO111MODULE=on<\/code><\/p>\n<p>Once you download it, everything should be placed in your go home directory (<code>~\/go\/src\/github.com\/influxdata\/telegraf<\/code>)<\/p>\n<p>Now we will copy over the plugins from the source code downloaded into the <code>influxdata<\/code> directory. Direct yourself over to the downloaded directory and into the telegraf directory. Then:<\/p>\n<p><code>$ cp -R .\/plugins .\/griddb.conf  ~\/go\/src\/github.com\/influxdata\/telegraf<\/code><\/p>\n<p>Next will be adding the GridDB plugin into the file itself. So find the <code>all.go<\/code> file in the following directory: <code>~\/go\/src\/github.com\/influxdata\/telegraf\/plugins\/outputs\/all\/<\/code> and add this line to the import section:<\/p>\n<p><code>_ \"github.com\/influxdata\/telegraf\/plugins\/outputs\/griddb\"<\/code><\/p>\n<p>And now telegraf is ready to be built and run. So head back to the root of your telegraf directory<\/p>\n<p><code>$ cd ~\/go\/src\/github.com\/influxdata\/telegraf<\/code><\/p>\n<p>And then <code>make<\/code><\/p>\n<p><code>$ make telegraf<\/code><\/p>\n<p>If everything goes well, there should be a runnable executable file called telegraf inside the directory.<\/p>\n<h2>Usage<\/h2>\n<p>First, let&#8217;s get our <code>griddb.conf<\/code> file up to snuff. A copy of this file should already be in your telegraf root directory if you have been following along. Now let&#8217;s make some of the changes to get our instance of Telegraf to output to our GridDB Cloud.<\/p>\n<p>Before we begin, it may be useful to have a basic understanding of how Telegraf itself works. Telegraf will take an input and send all data to the output. So for our example here, the input will be our influxdb server which is scraping the system for metrics, and the output will be our GridDB Cloud Instance.<\/p>\n<h3>Inputs<\/h3>\n<p>There are many different types of inputs which are available, though following along with this blog will give you a working system. If you would like to expand beyond this simple example, you can always read more about the inputs <a href=\"https:\/\/docs.influxdata.com\/telegraf\/v1.19\/plugins\/\">here<\/a>.<\/p>\n<p>For this particular example, we will keep it simple and use the <code>cpu<\/code> input plugin, which will simply gather info about the host machine&#8217;s CPU and send it out to GridDB. The config will look like this:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">#[[inputs.cpu]]\n  ## Whether to report per-cpu stats or not\n  percpu = true\n  ## Whether to report total system cpu stats or not\n  totalcpu = true\n  ## If true, collect raw CPU time metrics\n  collect_cpu_time = false\n  ## If true, compute and report the sum of all non-idle CPU states\n#  report_active = false\n    ## The column to extract the name of the metric from\n    # csv_measurement_column = \"name\"\n\n    ## The column to extract time information for the metric\n    ## `csv_timestamp_format` must be specified if this is used\n    # csv_timestamp_column = \"time\"<\/code><\/pre>\n<\/div>\n<p>And for fun, you can include an activemq input which will use the GridDB JMS service and serve up those topics:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">[[inputs.activemq]]\n  ## ActiveMQ WebConsole URL\n  url = \"http:\/\/127.0.0.1:8161\"\n\n  ## Required ActiveMQ Endpoint\n  ##   deprecated in 1.11; use the url option\n  # server = \"192.168.50.10\"\n  # port = 8161\n\n  ## Credentials for basic HTTP authentication\n   username = \"admin\"\n   password = \"admin\"\n\n  ## Required ActiveMQ webadmin root path\n  webadmin = \"admin\"\n\n  ## Maximum time to receive response.\n  # response_timeout = \"5s\"\n\n  ## Optional TLS Config\n  # tls_ca = \"\/etc\/telegraf\/ca.pem\"\n  # tls_cert = \"\/etc\/telegraf\/cert.pem\"\n  # tls_key = \"\/etc\/telegraf\/key.pem\"\n  ## Use TLS but skip chain & host verification\n  # insecure_skip_verify = false<\/code><\/pre>\n<\/div>\n<h3>Outputs<\/h3>\n<p>The output section is a bit simpler as for this blog, we only have one destination: the GridDB Cloud. Though as a small note, if you end up needing to debug, a helpful tip is to set the debug flag to true and to set up a second output:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">[[outputs.file]]\n  files = [ \"stdout\" ]\n  flush_interval = \"1s\"\n  flush_jitter = \"1s\"\n  metric_batch_size = 10<\/code><\/pre>\n<\/div>\n<p>The main output, though, will be to the GridDB Cloud. The default <code>griddb.conf<\/code> file should already have the skeleton of this laid out for you, and most of it is very straightforward. Here&#8217;s what it should look like once filled out with your information:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">[[outputs.griddb]]\n    ## The GridDB WebAPI URL.\n    ## # (Required)\n    api_url = \"{your GridDB Web API URL}\"\n\n    ## The database name.\n    ## # (Optional) Default: public\n    database = \"public\"\n\n    ## The cluster name.\n    ## # (Required)\n    cluster_name = \"{clusterName}\"\n\n    ## GridDB administrator username.\n    ## # (Required)\n    username = \"test\"\n\n    ## GridDB administrator password.\n    ## # (Required)\n    password = \"test\"\n\n    ## Delete existing container if exist.\n    ## # (Optional) ; Default: append\n    ## # Accepted Value: replace, append\n    ##     - replace: Override the existing container.\n    ##     - append:  Append new rows into existing container.\n    update_mode = \"replace\"\n\n    ## The list of container that will be transfer to GridDB\n    ## # Example: [\"cpu\", \"ram\", \"product\"]\n    ## # Empty list [] means ALL containers\n    ## # (Optional) ; Default: []\n    containers = []\n\n    ## Name the timestamp column. If timestampColumn is empty, it wont add timestamp column to the first column of the container\n    ## # (Optional)\n    timestamp_column = \"timestamp\"<\/code><\/pre>\n<\/div>\n<p>One last change I would recommend making over the default file is the interval value in the agent section<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">[agent]\n    ## Data collection interval for all inputs\n    ## Because of migrating from InfluxDB to GridDB, the interval will be set to a enough large number\n    ## After all data was migrated, we can terminal the telegraf process\n    interval = \"10s\"<\/code><\/pre>\n<\/div>\n<p>The reason for this is that it seems as though Telegraf will fail to send any data until the interval time frame runs through once first, instead of it sending data <em>and then<\/em> waiting for the interval to run through.<\/p>\n<h3>Running<\/h3>\n<p>Finally we can run everything at once.<\/p>\n<p>So in one terminal make sure influxdb is still running and then open up a second terminal and run telegraf:<\/p>\n<p><code>$ .\/telegraf --config griddb.conf<\/code><\/p>\n<p>If all goes well, you should see data being sent over to your GridDB Cloud and your Telegraf console should be outputting some data<\/p>\n<p><code>2021-12-04T00:12:30Z I! [outputs.griddb] Transaction succeed: 1 containers was updated. 0 containers was error<\/code><\/p>\n<p>In the image below, I was charting the CPU data being sent over from the host machine. When gathering the data, I ran a simple 7z CPU benchmark to get some nice fluctuations for the image. Of course, this is a very simple example &#8212; I am interested to see what other kinds of metrics other developers will show on here!<\/p>\n<p>Line Chart:<\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/CPU_Line.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/CPU_Line.png\" alt=\"\" width=\"1313\" height=\"371\" class=\"aligncenter size-full wp-image-27956\" srcset=\"\/wp-content\/uploads\/2021\/12\/CPU_Line.png 1313w, \/wp-content\/uploads\/2021\/12\/CPU_Line-300x85.png 300w, \/wp-content\/uploads\/2021\/12\/CPU_Line-768x217.png 768w, \/wp-content\/uploads\/2021\/12\/CPU_Line-1024x289.png 1024w, \/wp-content\/uploads\/2021\/12\/CPU_Line-600x170.png 600w\" sizes=\"(max-width: 1313px) 100vw, 1313px\" \/><\/a><\/p>\n<p>Bar Chart:<\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/CPU_Bar.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2021\/12\/CPU_Bar.png\" alt=\"\" width=\"1313\" height=\"371\" class=\"aligncenter size-full wp-image-27955\" srcset=\"\/wp-content\/uploads\/2021\/12\/CPU_Bar.png 1313w, \/wp-content\/uploads\/2021\/12\/CPU_Bar-300x85.png 300w, \/wp-content\/uploads\/2021\/12\/CPU_Bar-1024x289.png 1024w, \/wp-content\/uploads\/2021\/12\/CPU_Bar-768x217.png 768w, \/wp-content\/uploads\/2021\/12\/CPU_Bar-600x170.png 600w\" sizes=\"(max-width: 1313px) 100vw, 1313px\" \/><\/a><\/p>\n<h2>Conclusion<\/h2>\n<p>With the release of the Web API for the GridDB Cloud, you can now more easily use the service. You can also now use services which communicate via HTTP like Telegraf.<\/p>\n<p>If you would like to sign up for a trial of the GridDB Cloud, you can do so here: <a href=\"https:\/\/www.global.toshiba\/ww\/products-solutions\/ai-iot\/griddb\/product\/griddb-cloud.html\">https:\/\/www.global.toshiba\/ww\/products-solutions\/ai-iot\/griddb\/product\/griddb-cloud.html<\/a>. Though please note, the website is currently only available in Japanese, so you may need to use some sort of translation software.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service in our first blog: An Introduction to GridDB Cloud. With the introduction out of the way, we will focus on new features brought upon us by version 1.2 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":27956,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46679","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using GridDB Cloud Version 1.2 | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using GridDB Cloud Version 1.2 | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-16T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:55:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.griddb.net\/wp-content\/uploads\/2021\/12\/CPU_Line.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1313\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Israel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Israel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/\"},\"author\":{\"name\":\"Israel\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\"},\"headline\":\"Using GridDB Cloud Version 1.2\",\"datePublished\":\"2021-12-16T08:00:00+00:00\",\"dateModified\":\"2025-11-13T20:55:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/\"},\"wordCount\":1396,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2021\/12\/CPU_Line.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/\",\"name\":\"Using GridDB Cloud Version 1.2 | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2021\/12\/CPU_Line.png\",\"datePublished\":\"2021-12-16T08:00:00+00:00\",\"dateModified\":\"2025-11-13T20:55:44+00:00\",\"description\":\"This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2021\/12\/CPU_Line.png\",\"contentUrl\":\"\/wp-content\/uploads\/2021\/12\/CPU_Line.png\",\"width\":1313,\"height\":371},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb.net\/en\/#website\",\"url\":\"https:\/\/griddb.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\",\"name\":\"Israel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"caption\":\"Israel\"},\"url\":\"https:\/\/www.griddb.net\/en\/author\/israel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using GridDB Cloud Version 1.2 | GridDB: Open Source Time Series Database for IoT","description":"This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/","og_locale":"en_US","og_type":"article","og_title":"Using GridDB Cloud Version 1.2 | GridDB: Open Source Time Series Database for IoT","og_description":"This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service","og_url":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2021-12-16T08:00:00+00:00","article_modified_time":"2025-11-13T20:55:44+00:00","og_image":[{"width":1313,"height":371,"url":"https:\/\/www.griddb.net\/wp-content\/uploads\/2021\/12\/CPU_Line.png","type":"image\/png"}],"author":"Israel","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Israel","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/"},"author":{"name":"Israel","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740"},"headline":"Using GridDB Cloud Version 1.2","datePublished":"2021-12-16T08:00:00+00:00","dateModified":"2025-11-13T20:55:44+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/"},"wordCount":1396,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2021\/12\/CPU_Line.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/","url":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/","name":"Using GridDB Cloud Version 1.2 | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2021\/12\/CPU_Line.png","datePublished":"2021-12-16T08:00:00+00:00","dateModified":"2025-11-13T20:55:44+00:00","description":"This article will serve as a continuation of our previous blog featuring the new GridDB Cloud service; you can read about the basics of the Cloud service","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/using-griddb-cloud-version-1-2\/#primaryimage","url":"\/wp-content\/uploads\/2021\/12\/CPU_Line.png","contentUrl":"\/wp-content\/uploads\/2021\/12\/CPU_Line.png","width":1313,"height":371},{"@type":"WebSite","@id":"https:\/\/griddb.net\/en\/#website","url":"https:\/\/griddb.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740","name":"Israel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","caption":"Israel"},"url":"https:\/\/www.griddb.net\/en\/author\/israel\/"}]}},"_links":{"self":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46679","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/comments?post=46679"}],"version-history":[{"count":1,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46679\/revisions"}],"predecessor-version":[{"id":51353,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46679\/revisions\/51353"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media\/27956"}],"wp:attachment":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media?parent=46679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/categories?post=46679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/tags?post=46679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}