Skip to main content

Data from Firmware to the Cloud

Introduction

A part of integrating the Memfault Firmware SDK inside your devices' firmware is to create a path to the Memfault cloud. The SDK will collect data from your devices in the field such as coredumps, heartbeats and events. This data needs to be sent to the Memfault cloud for analysis.

The ways in which devices get data back to the internet varies a lot. Some devices have a direct internet connection, for example, through an LTE modem. Others are indirectly connected and send data back through a "gateway" of sort, for example by connecting over Bluetooth to a phone app that relays the data back to the internet.

To make the integration as easy as possible while catering to as many different connectivity paths, the Memfault Firmware SDK contains a "data packetizer". The data packetizer breaks up all data that the SDK needs to send out (heartbeats, coredumps, events, etc.) into smaller pieces called chunks. The chunks can be sized as large or small as required to match the capabilities and constraints of the device and its connectivity stack.

Each of these chunks need to be posted to Memfault's chunks HTTP API. The buffering, reassembly and interpretation of the chunks is done by the Memfault cloud.

Building the path between getting chunks from the SDK to posting them to the HTTP API is the only integration work which needs to be done to get the data.

Implementation Notes

  • The mechanism to send the chunks back to the Memfault cloud will need to be reliable. By that we mean that data integrity is checked and that chunks are not dropped unknowingly (and are retransmitted in case of data corruption or drops). Missing data and corrupt data errors will be detected by the Memfault cloud, but those chunks will be discarded.
  • The device firmware is expected to periodically check whether there is data available and send the chunks out. See the data_packetizer.h header file for the C API.
  • The Memfault cloud buffers chunks, until the sequence of related chunks are received. However, if it takes a prolonged period of time to post the remainder of the related chunks, the chunks may be dropped. Because of this and to minimize reporting latencies, it is recommended to drain the data packetizer at least daily.
  • Chunks from a given device need to be posted to the chunks HTTP API sequentially, in the order in which the Firmware SDK's packetizer created the chunks. When posting chunks concurrently, ensure that requests for the same device cannot happen concurrently, to avoid violating the ordering requirement. Out of order chunks will be best-effort reordered on the Memfault server.
    • HTTP requests should not be pipelined. That is, the HTTP response for a POST must be received before the next HTTP request can be sent.
    • In case the Memfault server responds with HTTP status code 503 (Service Unavailable ) or 429 (Too Many Requests), the client must back off and retry the request after the delay specified in the Retry-After response header.
  • To minimize overhead and optimize throughput, batch-upload chunks to the chunks HTTP API using multipart/mixed requests and re-use HTTP connections to Memfault's servers.
  • The smallest allowed chunk size is 9 bytes. That said, it is recommended to use the largest possible chunk size that your transport path allows. Smaller chunk sizes generally equate to slower transfers. The (maximum) chunk size can be changed from chunk to chunk (see the memfault_packetizer_get_next C API).

Firmware SDK Example Usage

Basic Operation Mode

In this mode a call to memfault_packetizer_get_chunk always returns a complete "chunk". The size of the "chunk" is completely up to you (just needs to be ≥9 bytes). It is your responsibility to get the "chunk" reliably to the Memfault cloud. Typically, the size of the chunk will align with the MTU size of the underlying transport. Some size examples:

  • For BLE, the "chunk" size may be close to 20 bytes to align with the minimal MTU size (23 bytes)
  • For a network stack, the "chunk" size may be closer to 1500 bytes to align with the size of an ethernet frame

Example Code

#include "memfault/core/data_packetizer.h"

//! Example usage of "Basic Operation Mode" of Packetizer
//! return true if there is more data to send, false otherwise
bool try_send_memfault_data(void) {
// buffer to copy chunk data into
uint8_t buf[USER_CHUNK_SIZE];
size_t buf_len = sizeof(buf);

bool data_available = memfault_packetizer_get_chunk(buf, &buf_len);
if (!data_available ) {
return false; // no more data to send
}

// send payload collected to chunks/ endpoint
return user_transport_send_chunk_data(buf, buf_len);
}
note

The memfault_packetizer_get_chunk API takes 2 parameters:

  • buf a pointer to a buffer
  • buf_len a pointer to a size variable

The buf_len parameter is both an input and an output: it sets the maximum size to be copied into buf, and is set by memfault_packetizer_get_chunk to the number of bytes copied into buf.

If calling memfault_packetizer_get_chunk in a loop, be sure to reset the buf_len value on subsequent calls:

uint8_t buf[128];
size_t buf_len;
bool data_available = true;

while (data_available) {
// always reset buf_len to the size of the output buffer before calling
// memfault_packetizer_get_chunk
buf_len = sizeof(buf);
data_available = memfault_packetizer_get_chunk(buf, &buf_len);

if (data_available) {
bool send_ok = user_transport_send_chunk_data(buf, buf_len);
if (send_ok == false) {
break;
}
}
}

This implementation is simplified if the try_send_memfault_data function from above is used. The try_send_memfault_data will send a maximum of 1 chunk per call. To send all staged chunks:

// keep calling try_send_memfault_data until it returns false, which means:
// - no more data to send
// - an error encountered when sending data
while(try_send_memfault_data());
note

The memfault_packetizer_get_chunk API may not completely fill the output buffer. To drain all chunks, it should be called until it returns false. An output buf_len value less than the passed buf_len value should not be used to assume the staged data is all drained:

uint8_t buf[128]
size_t buf_len = sizeof(buf);
bool data_available = memfault_packetizer_get_chunk(buf, &buf_len);

if (buf_len < sizeof(buf)) {
#error Do not use this as a check for last chunk!
}

Advanced Operation Mode

The Memfault packetizer has two API calls that operate as a pair, memfault_packetizer_begin and memfault_packetizer_get_next:

  • memfault_packetizer_begin(...) lets you configure the operation mode of the packetizer and returns true if there is more data to send
  • memfault_packetizer_get_next(...) fills a user provided buffer with the next "chunk" of data to send out over the transport

In this mode, the packetizer is capable of building "chunks" which span multiple calls to memfault_packetizer_get_next(). This mode can be used as an optimization when a transport is capable of sending messages of an arbitrarily large size.

For example, some use case examples include a raw TCP socket or a serial streaming abstraction such as Bluetooth Classic SPP.

In these situations it's unlikely the entire message could be read into RAM all at once so the API can be configured to split the read of the chunk across multiple memfault_packetizer_get_next() calls.

Example Code

#include "memfault/core/data_packetizer.h"

//! Example Usage of "Advanced Operation Mode" where a single "chunk" spans multiple calls
//! to `memfault_packetizer_get_next()`. This lets us keep the RAM footprint low while
//! sending large payloads in a single HTTP request
bool send_memfault_data_multi_part(void) {
const sPacketizerConfig cfg = {
// Enable multi packet chunking. This means a chunk may span multiple calls to
// memfault_packetizer_get_next().
.enable_multi_packet_chunk = true,
};

sPacketizerMetadata metadata;
bool data_available = memfault_packetizer_begin(&cfg, &metadata);
if (!data_available) {
// there are no more chunks to send
MEMFAULT_LOG_INFO("All data has been sent!");
return false;
}

// Note: metadata.single_chunk_message_length contains the entire length of the chunk
//
// This is the "Content-Length" for the HTTP POST request to the Memfault "chunks" endpoint
//
// When using HTTP directly on your device, this is where you would start the http request and
// build the headers

while (1) {
uint8_t buffer[20];
size_t read_size = sizeof(buffer);

// We pass in the buffer to fill and the size of the buffer.
// On return, read_size will be populated with how much data was actually written
eMemfaultPacketizerStatus packetizer_status = memfault_packetizer_get_next(buffer, &read_size);
if (packetizer_status == kMemfaultPacketizerStatus_NoMoreData) {
// We know data is available from the memfault_packetizer_begin() call above
// so _NoMoreData is an unexpected result
MEMFAULT_LOG_ERROR("Unexpected packetizer status: %d", (int)packetizer_status);
break;
}

// this is the call to a system specific function for sending data over the transport
send_data_over_socket(buffer, read_size);

if (packetizer_status == kMemfaultPacketizerStatus_EndOfChunk) {
// we have reached the end of the chunk
break;
}
}

return true;
}

Troubleshooting

If you encounter any issues in your data transfer implementation, Memfault has tools to help debug!

  • To troubleshoot data not getting uploaded or processed correctly by the Memfault cloud, take a look at the Integration Hub → Processing Log view. This provides a filterable, chronological view of recent errors that have occurred while processing received data. See this documentation page for more information on the Integration Hub.
  • A view you can use toview the raw "Chunk" data payloadsthat have arrived for your project.
  • Precanned Data Payloads you can pass through your `user_transport_send_chunk_data()` implementation to test data transfer in isolation.
  • Server-side rate limiting will apply to the device you're using to work on the integration process. Once you can see the device on the Memfault Web App, consider enabling Server-Side Developer Mode for it on the Memfault Web App to temporarily bypass these limits.