#iot #edge #fundamentum #daemon

bin+lib fundamentum-edge-daemon

The supported way to access Fundamentum's ecosystem from linux devices

2 stable releases

new 1.1.0 May 9, 2024
1.0.0 Apr 4, 2024

#165 in Asynchronous

Download history 94/week @ 2024-03-31 13/week @ 2024-04-07 9/week @ 2024-04-21 1/week @ 2024-04-28 134/week @ 2024-05-05

144 downloads per month

Apache-2.0

93KB
2K SLoC

Fundamentum Edge Daemon

Crates.io License Build Status Docs.rs

Website | Docs

The supported way to access Fundamentum's ecosystem from linux devices.

Usage

Launching the daemon

$ cargo run
# ..
  • The gRPC server will bind to 127.0.0.1:8080.

  • A default version of the configuration file (config.toml) will be created in the current working directory if it does not already exists.

  • The current working directory will be used as the state directory. Here's a list of state files you might encounter:

    • provisioning.json and rsa_(public|private).pem will be created upon first successful provisioning.

You can override these defaults using the available CLI options. Those can be listed as follow:

$ cargo run -- --help
# ..

Further customizations are also possible through the configuration file (config.toml).

Accessing exposed services via the gRPC interface

The various Fundamentum services are made available through a gRPC interface (see fundamentum-edge-proto repository).

In order to be able to use most of the gRPC services (the most notable exception being the Provisioning service), your device will need to be provisioned. In order to do so, a good place to start would be the provisioning procedure.

Through the CLI

It is possible to use the grpcurl CLI tool to interact with the daemon:

  • To provision the device:

    $ grpcurl \
        -plaintext \
        -d '{
            "api_base_url": "https://devices.fundamentum-iot.com",
            "project_id": 1,
            "region_id": 2,
            "registry_id": 3,
            "serial_number": "device1",
            "asset_type_id": 4,
            "access_token": "TOKEN"
        }' \
        127.0.0.1:8080 \
        com.fundamentum.edge.v1.Provisioning.Provision
    # ...
    
  • To publish telemetry data:

    $ grpcurl \
        -plaintext \
        -d '{
            "sub_topic": "test",
            "qos": 0,
            "payload": "SGVsbG8sIFdvcmxkIQ=="
        }' \
        127.0.0.1:8080 \
        com.fundamentum.edge.v1.Telemetry.PublishTelemetry
    # ...
    
  • To get the device configuration:

    $ grpcurl \
        -plaintext \
        127.0.0.1:8080 \
        com.fundamentum.edge.v1.Configuration.Get
    # ...
    
  • To subscribe to configuration updates:

    $ grpcurl \
        -plaintext \
        127.0.0.1:8080 \
        com.fundamentum.edge.v1.Configuration.UpdateStream
    # ...
    
  • To publish states data:

    $ grpcurl \
        -plaintext \
        -d '{
            "states": {
                "status": "ok",
                "alarms": [
                    "alarm1",
                    "alarm2"
                ]
            },
            "sub_devices": [
                {
                    "serial_number": "device1",
                    "states": {
                        "rssi": 50,
                        "battery_level": 75,
                        "temperature": 25
                    }
                }
            ]
        }' \
        127.0.0.1:8080 \
        com.fundamentum.edge.v1.StatesEvent.PublishJson
    # ...
    

Through language specific bindings

For more serious use cases, we provide specific support for the following languages:

Please make sure that you use a binding library version compatible with your edge daemon service.

Note that in case your language is not already officially supported, it is still possible to use the protocol buffer compiler on the gRPC *.proto files to generate a bindings library for almost any language.

Development setup

Please see the development setup guide.

Releases

All official versions of this component are published to crates.io/crates/fundamentum-edge-daemon. A list of all published versions is available under the versions tab.

Detailed release notes are available in this repo at CHANGELOG.md.

License

Licensed under Apache License, Version 2.0 LICENSE.

Dependencies

~26–63MB
~1M SLoC