Skip to content

Initial port of TD Tutorial #1061

New issue

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

Merged
merged 19 commits into from
May 22, 2019
Merged

Initial port of TD Tutorial #1061

merged 19 commits into from
May 22, 2019

Conversation

BlackstoneEngineering
Copy link
Contributor

Original doc in this google doc : https://docs.google.com/document/d/12MgoVez96LvC8xwVO1DfjuMrPUYE-hUldr2tVRhS8fI/edit?usp=sharing

@ARMmbed/mbed-docs - please use the google doc as the guideline for what the tutorial should look like. I did my best to get the markdown right, but some things like embedded images / youtube videos I couldnt quite figure out.

Original doc in this google doc : https://docs.google.com/document/d/12MgoVez96LvC8xwVO1DfjuMrPUYE-hUldr2tVRhS8fI/edit?usp=sharing 

@ARMmbed/mbed-docs  - please use the google doc as the guideline for what the tutorial should look like. I did my best to get the markdown right, but some things like embedded images / youtube videos I couldnt quite figure out.
@iriark01
Copy link
Contributor

iriark01 commented May 9, 2019

Amanda, I gave Austin the wrong path for his file. This should live with the other TD stuff in the Pelion Platform area.

https://os.mbed.com/docs/mbed-os/v5.12/mbed-os-pelion/integrating-with-arm-treasure-data.html

@iriark01 iriark01 requested a review from AnotherButler May 9, 2019 09:11
Amanda Butler added 2 commits May 9, 2019 15:07
Make initial edits to file.
Copy link
Contributor

@AnotherButler AnotherButler left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've made some initial edits and left some initial queries for you to address.


## HTTPS library

To use the HTTPS library, use this program: https://github.com/blackstoneengineering/mbed-os-example-treasuredata-rest. This program turns on Mbed OS device statistics by enabling the `MBED_ALL_STATS_ENABLED` macro and then send heap/CPU/stack/system information to Treasure Data.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move this example into an Arm repository.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No one has committed to long term maintinance of this library, so for the moment I would like to keep it in my personal repo space.

@janjongboom - what do you think?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move it to an Arm account. You can maintain it just as well from there.


```

### Configure
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are the two sections within this part of configuration, or should we change or remove this heading?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I dont understand the question, mind chatting with me about this monday? I cant seem to get the context correct in my head

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note to self: Remove h3 configure and replace with h3 setting Treasure Data databases and tables


For mass deployments. we recommend you use fluentd or fluentbit to aggregate and forward the data into Treasure Data. Depending on where you host your fluentd instance, you will need to follow slightly different setup instructions. (localhost on your machine with self signed certificates or at a public IP address in the cloud with Certificate Authority (CA) signed certificates). This example uses MessagePack (a binary encoded JSON) to encode the data.

<INSERT YOUTUBE VIDEO FOR FLUENTD HERE: COMING SOON>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Query: When should we expect this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it has been completed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

still waiting for y'all to review the videos and give approval before I upload them to the armmbed channel

Fix punctuation, and fix voice.
@AnotherButler
Copy link
Contributor

Please note I have not reviewed the videos yet.

Copy link

@megmiranda megmiranda left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think Fleuntd should be init capped.

There are two ways to send data securely from Mbed OS to Treasure Data:

- HTTPS library - Send data directly to the Treasure Data REST API.
- fluentd using fluent logger library - Send data to a hosted fluentd instance that aggregates and forwards the data on to your treasure data account.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah ha this is how this works---I think Fluentd should be init capped

Copy link
Contributor Author

@BlackstoneEngineering BlackstoneEngineering May 11, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was told by the inventor that its always lowercase, see the website : https://www.fluentd.org/ .

I defer to your expertise.


Both libraries are secured with Arm Mbed TLS in transit and are equally secure. We recommend the HTTPS library for development and the fluentd library for production. The tradeoff between the two is size of code on chip, size of data in transit and setup complexity:

- Code size on chip - The HTTPS library is ~50KB of ROM space on chip, this due to the HTTP stack. Both libraries use Mbed TLS to secure the connections, which is ~7KB per connection on your stack for both libraries.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on chip, this is due ....

Both libraries are secured with Arm Mbed TLS in transit and are equally secure. We recommend the HTTPS library for development and the fluentd library for production. The tradeoff between the two is size of code on chip, size of data in transit and setup complexity:

- Code size on chip - The HTTPS library is ~50KB of ROM space on chip, this due to the HTTP stack. Both libraries use Mbed TLS to secure the connections, which is ~7KB per connection on your stack for both libraries.
- Data size in transit - The HTTPS library sends data as a ASCII JSON string. The fluend library uses MessagePack (binary encoded json) across a TLS connection. This means that on average the fluentd library will use less bandwidth to send an equivalent message. When you pay per byte transmitted from both your power budget and data plan it matters.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Data size in transit - The HTTPS library sends data as an ASCII JSON string. The Fluend library uses MessagePack (binary encoded JSON) across a TLS connection. This means that on average the Fluentd library uses less bandwidth to send an equivalent message. When you pay per byte transmitted from both your power budget and data plan it matters.


- Code size on chip - The HTTPS library is ~50KB of ROM space on chip, this due to the HTTP stack. Both libraries use Mbed TLS to secure the connections, which is ~7KB per connection on your stack for both libraries.
- Data size in transit - The HTTPS library sends data as a ASCII JSON string. The fluend library uses MessagePack (binary encoded json) across a TLS connection. This means that on average the fluentd library will use less bandwidth to send an equivalent message. When you pay per byte transmitted from both your power budget and data plan it matters.
- Maintenance - Initially, it may be simpler to setup the HTTPS library on a device and have it send data directly to treasure data, but what if you want to change what the device is doing or how its data is reported? If you are using the HTTPS library you will need to issue a firmware update to every device to change how it formats its data, but if you are using a fluend server you can simply modify the fluentd config file on the server to change how data is formatted/processed.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maintenance - Initially, setting up the HTTPS library on a device and having it send data directly to Treasure Data is easier, but what if you want to change what the device is doing or how its data is reported? If you are using the HTTPS library you must issue a firmware update to every device to change how it formats its data. However, if you are using a Fluend server, you can modify the Fluentd config file on the server to change how data is formatted and processed.


## HTTPS library

To use the HTTPS library, use this program: https://github.com/blackstoneengineering/mbed-os-example-treasuredata-rest. This program turns on Mbed OS device statistics by enabling the `MBED_ALL_STATS_ENABLED` macro and then send heap/CPU/stack/system information to Treasure Data.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

...and then sends heap.....

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'and then sending heap....'


### Import code

You can compile the program through any of our three development tools:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can compile the program using any of the following development tools:


Next, you can compile and load your code onto your board. If you are unfamiliar with how to compile and load code, please look at the Mbed OS quick start tutorial.

Once you have compiled your code and loaded it onto your board, open a serial terminal, and connect it to the board. View the output:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After you have...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

?? not sure what this means?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I changed it to "After you have compiled your code ...."


### Verify data in Treasure Data

Go to the [Database list in Treasure data](https://console.treasuredata.com/app/databases), and open the `test_database` you created earlier. You can see the data from the board in the database. There is a 3- to 5-minute delay from when the data is sent to the database until the visualization system lets you see it, so please be patient, and wait for it to arrive. Be sure to refresh the page.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

...Treasure Data ...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again, not sure what this comment means

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I capitalized "Treasure Data" as requested by megmiranda.

Now that you have data in Treasure data, it's time to analyze and use the data.

1. Go to the [Queries tab] (https://console.treasuredata.com/app/queries/editor).
2. Select the `test_database`, and run some queries. To learn more about how to run queries, please read the [Treasure Data documentation](https://support.treasuredata.com/hc/en-us/articles/360001457427-Presto-Query-Engine-Introduction).

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about this article as an intro to running queries in TD . https://support.treasuredata.com/hc/en-us/articles/360007995693

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, add that too. I took the article that was reccomended to me by the TD folks


#### Select certain fields, order by time

This query selects only certain columns from the table and then order them by the time field in ascending value, you can also replace `asc` with `desc` to get the order reversed.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

....and orders them.... value. You can also ....

To send data to fluentd over TLS (securely):

1. Run `openssl s_client -connect localhost:24228 -showcerts`.
1. Copy the certificate to `fluentd-sslcert.h`. If you are running the fluentd server on localhost, this certificate will change every time you restart fluentd. You eed to rerun this command and recompile your embedded code every time you restart fluentd.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

...You need to rerun...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make the change

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@BlackstoneEngineering , @megmiranda is our writer from Arm Treasure Data. I told her she could make the changes in comments, and I've already made these changes directly.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Understood. Its hard for me to tell what is being referenced as such a wide swath is highlighted in the github comment tool. I'll leave it to y'all

Amanda Butler added 2 commits May 10, 2019 13:33
Make changes requested in comments.
Copy link
Contributor

@AnotherButler AnotherButler left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've left a few more queries.


## HTTPS library

To use the HTTPS library, use this program: https://github.com/blackstoneengineering/mbed-os-example-treasuredata-rest. This program turns on Mbed OS device statistics by enabling the `MBED_ALL_STATS_ENABLED` macro and then sends heap/CPU/stack/system information to Treasure Data.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move this example to an Arm repository.


If you experience issues, ensure you have at least 10KB of space left on your stack. You can also change the `TD_DEBUG` macro to `true` to turn on the Treasure Data debug printfs.

## fluentd
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Query: Should this be capitalized?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should what be capitalized? The stuff in should be just as shown as they are copied directly from the config file. so TD_DEBUG should be exactly as it is.

Standardize capitalization of Fluentd.
@AnotherButler
Copy link
Contributor

This PR is failing Travis because the code snippets don't compile.

@BlackstoneEngineering
Copy link
Contributor Author

This PR is failing Travis because the code snippets don't compile.

What code snippets? I have some quotes from the command line to show what success looks like, but i dont have any direct code snippets in here (i dont think)

@AnotherButler
Copy link
Contributor

@kegilbert Do you have time to look into this?

Fix heading to remove awkward double heading and make sense within the context of the document.
@BlackstoneEngineering
Copy link
Contributor Author

@iriark01 / @AnotherButler - please make sure to include the images (per the google doc link example at the top), otherwise all changes have been made and it should be good to go, lets get it published!


### Setting Treasure Data databases and tables

The second field in the tag of your embedded code determines the database. For example, sending data to a tag called `td.mydatabase.mytable` logs the data to the database called `mydatabase` in the table `mytable`. You can modify the example configuration file to see this.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a little free of context unless you're already a TD user, I think

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one I can't fix on my own, since I'm not a TD user. @megmiranda can you offer the readers more context?

@BlackstoneEngineering
Copy link
Contributor Author

@docs team, please consider all gramatical and minor changes pre-approved, feel free to re-write sentences as you see fit.

@iriark01 iriark01 merged commit 97e555d into development May 22, 2019
@AnotherButler AnotherButler deleted the td-tutorial branch July 8, 2019 19:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants