1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00
ctrl/README.md

1323 lines
50 KiB
Markdown
Raw Normal View History

2021-09-22 17:54:42 +00:00
# steward
2022-01-06 09:20:30 +00:00
Steward is a Command & Control backend system for Servers, IOT and Edge platforms where the network link for reaching them can be reliable like local networks, or totally unreliable like satellite links. An end node can even be offline when you give it a command, and Steward will make sure that the command is delivered when the node comes online.
2021-04-16 19:19:19 +00:00
2022-01-25 04:18:59 +00:00
Example use cases:
2022-01-06 09:20:30 +00:00
2022-01-25 04:18:59 +00:00
- Send a specific message to one or many end nodes that will instruct to run scripts or a series of shell commands to change config, restart services and control those systems.
2022-01-06 09:20:30 +00:00
- Gather IOT/OT data from both secure and not secure devices and systems, and transfer them encrypted in a secure way over the internet to your central system for handling those data.
- Collect metrics or monitor end nodes and store the result on a central Steward instance, or pass those data on to another central system for handling metrics or monitoring data.
- Distribute certificates.
As long as you can do something as an operator on in a shell on a system you can do the same with Steward in a secure way to one or all end nodes (servers) in one go with one single message/command.
2021-09-10 08:28:50 +00:00
2022-01-28 07:54:26 +00:00
**NB** Expect the main branch to have breaking changes. If stability is needed, use the released packages, and read the release notes where changes will be explained.
2021-09-10 08:28:50 +00:00
- [steward](#steward)
- [What is it ?](#what-is-it-)
- [Overview](#overview)
- [Inspiration](#inspiration)
- [Why](#why)
- [Publishing and Subscribing processes](#publishing-and-subscribing-processes)
- [Publisher](#publisher)
- [Subscriber](#subscriber)
- [Logical structure](#logical-structure)
- [Terminology](#terminology)
- [Features](#features)
- [Error messages from nodes](#error-messages-from-nodes)
- [Message handling and threads](#message-handling-and-threads)
2021-12-28 11:05:09 +00:00
- [Timeouts and retries for requests](#timeouts-and-retries-for-requests)
2021-11-11 14:15:59 +00:00
- [REQRelay](#reqrelay)
2022-01-06 09:20:30 +00:00
- [Relay Step 1](#relay-step-1)
- [Relay Step 2](#relay-step-2)
- [Relay Step 3](#relay-step-3)
- [Relay Step 4](#relay-step-4)
- [Relay Step 5](#relay-step-5)
- [Relay Step 6](#relay-step-6)
2021-09-10 08:28:50 +00:00
- [Flags and configuration file](#flags-and-configuration-file)
2021-09-21 09:09:14 +00:00
- [Schema for the messages to send into Steward via the API's](#schema-for-the-messages-to-send-into-steward-via-the-apis)
2021-12-28 11:05:09 +00:00
- [Nats messaging timeouts](#nats-messaging-timeouts)
- [Compression of the Nats message payload](#compression-of-the-nats-message-payload)
2022-01-26 23:38:25 +00:00
- [startup folder](#startup-folder)
- [General functionality](#general-functionality)
- [How to send the reply to another node](#how-to-send-the-reply-to-another-node)
- [method timeout](#method-timeout)
- [Example](#example)
2021-09-10 08:28:50 +00:00
- [Request Methods](#request-methods)
2021-09-21 05:10:41 +00:00
- [REQOpProcessList](#reqopprocesslist)
- [REQOpProcessStart](#reqopprocessstart)
- [REQOpProcessStop](#reqopprocessstop)
2021-09-10 08:28:50 +00:00
- [REQCliCommand](#reqclicommand)
- [REQCliCommandCont](#reqclicommandcont)
2021-09-10 08:28:50 +00:00
- [REQTailFile](#reqtailfile)
- [REQHttpGet](#reqhttpget)
2022-02-11 06:34:31 +00:00
- [REQHttpGetScheduled](#reqhttpgetscheduled)
2021-09-10 08:28:50 +00:00
- [REQHello](#reqhello)
2021-11-18 08:51:16 +00:00
- [REQCopyFileFrom](#reqcopyfilefrom)
2021-09-10 08:28:50 +00:00
- [REQErrorLog](#reqerrorlog)
- [Request Methods used for reply messages](#request-methods-used-for-reply-messages)
2022-01-05 07:47:06 +00:00
- [REQNone](#reqnone)
- [REQToConsole](#reqtoconsole)
2021-09-10 08:28:50 +00:00
- [REQToFileAppend](#reqtofileappend)
- [REQToFile](#reqtofile)
2022-03-10 08:09:07 +00:00
- [REQToFileNACK](#reqtofilenack)
- [ReqCliCommand](#reqclicommand-1)
2021-09-10 08:28:50 +00:00
- [Errors reporting](#errors-reporting)
- [Prometheus metrics](#prometheus-metrics)
- [Other](#other)
- [Howto](#howto)
- [Options for running](#options-for-running)
- [How to Run](#how-to-run)
2022-01-05 10:26:10 +00:00
- [Run Steward in the simplest possible way for testing](#run-steward-in-the-simplest-possible-way-for-testing)
- [Nats-server](#nats-server)
- [Steward](#steward-1)
- [Send messages with Steward](#send-messages-with-steward)
- [Example for starting steward with some more options set](#example-for-starting-steward-with-some-more-options-set)
2021-09-10 08:28:50 +00:00
- [Nkey Authentication](#nkey-authentication)
- [nats-server (the message broker)](#nats-server-the-message-broker)
2022-01-05 10:26:10 +00:00
- [Nats-server config with nkey authentication example](#nats-server-config-with-nkey-authentication-example)
2021-09-10 08:28:50 +00:00
- [Message fields explanation](#message-fields-explanation)
- [How to send a Message](#how-to-send-a-message)
- [Send to socket with netcat](#send-to-socket-with-netcat)
- [Sending a command from one Node to Another Node](#sending-a-command-from-one-node-to-another-node)
- [Example JSON for appending a message of type command into the `socket` file](#example-json-for-appending-a-message-of-type-command-into-the-socket-file)
- [Specify more messages at once do](#specify-more-messages-at-once-do)
- [Send the same message to several hosts by using the toHosts field](#send-the-same-message-to-several-hosts-by-using-the-tohosts-field)
2021-09-21 09:09:14 +00:00
- [Tail a log file on a node, and save the result of the tail centrally at the directory specified](#tail-a-log-file-on-a-node-and-save-the-result-of-the-tail-centrally-at-the-directory-specified)
2022-02-15 07:31:53 +00:00
- [Example for deleting the ringbuffer database and restarting steward](#example-for-deleting-the-ringbuffer-database-and-restarting-steward)
2021-09-10 08:28:50 +00:00
- [Concepts/Ideas](#conceptsideas)
- [Naming](#naming)
- [Subject](#subject)
- [Complete subject example](#complete-subject-example)
- [TODO](#todo)
- [Add Op option the remove messages from the queue on nodes](#add-op-option-the-remove-messages-from-the-queue-on-nodes)
- [Disclaimer](#disclaimer)
2021-04-16 19:19:19 +00:00
2021-03-11 16:14:43 +00:00
## What is it ?
2021-04-16 19:19:19 +00:00
Command And Control anything like Servers, Containers, VM's or others by creating and sending messages with methods who will describe what to do. Steward will then take the responsibility for making sure that the message are delivered to the receiver, and that the method specified are executed with the given parameters defined. An example of a message.
2021-02-03 08:06:37 +00:00
2021-09-21 05:10:41 +00:00
An example of a **request method** to feed into the system. All fields are explained in detail further down in the document.
2021-04-15 05:52:42 +00:00
```json
[
{
2021-09-21 05:10:41 +00:00
"directory":"/var/cli/command_result/",
"fileName": "some-file-name.result",
2021-04-15 05:52:42 +00:00
"toNode": "ship1",
"method":"REQCliCommand",
2022-01-06 09:20:30 +00:00
"methodArgs": ["bash","-c","sleep 5 & tree ./"],
"replyMethod":"REQToFileAppend",
"ACKTimeout":5,
2021-04-15 05:52:42 +00:00
"retries":3,
"replyACKTimeout":5,
"replyRetries":3,
"methodTimeout": 10
2021-04-15 05:52:42 +00:00
}
]
```
2022-01-06 09:20:30 +00:00
If the receiver `toNode` is down when the message was sent, it will be **retried** until delivered within the criterias set for `timeouts` and `retries`. The state of each message processed is handled by the owning steward instance where the message originated, and no state about the messages are stored in the NATS message broker.
2021-09-21 09:09:14 +00:00
2022-01-06 09:20:30 +00:00
Since the initial connection from a Steward node is outbound towards the central NATS message broker no inbound firewall openings are needed.
2021-04-15 05:52:42 +00:00
## Overview
2022-01-06 09:20:30 +00:00
Send Commands with Request Methods to control your servers by passing a messages that will have guaranteed delivery based on the criteries set, and when/if the receiving node is available. The result of the method executed will be delivered back to you from the node you sent it from.
2021-09-21 09:09:14 +00:00
Steward uses **NATS** as message passing architecture for the commands back and forth from nodes. Delivery is guaranteed within the criterias set. All of the processes in the system are running concurrently, so if something breaks or some process is slow it will not affect the handling and delivery of the other messages in the system.
2021-02-03 07:28:21 +00:00
2021-09-21 09:09:14 +00:00
A node can be a server running any host operating system, a container living in the cloud somewhere, a Rapsberry Pi, or something else that needs to be controlled that have an operating system installed.
2022-01-06 09:20:30 +00:00
Steward can be compiled to run on all major architectures like **x86**, **amd64**,**arm64**, **ppc64** and more, with for example operating systems like **Linux**, **OSX**, **Windows**.
2021-03-26 09:52:36 +00:00
## Inspiration
2021-04-15 05:52:42 +00:00
The idea for how to handle processes, messages and errors are based on Joe Armstrongs idea behind Erlang described in his Thesis <https://erlang.org/download/armstrong_thesis_2003.pdf>.
2021-09-21 09:09:14 +00:00
Joe's document describes how to build a system where everything is based on sending messages back and forth between processes in Erlang, and where everything is done concurrently.
I used those ideas as inspiration for building a fully concurrent system to control servers or container based systems by passing messages between processes asynchronously to execute methods, handle errors, or handle the retrying if something fails.
2021-04-15 05:52:42 +00:00
2022-01-06 09:20:30 +00:00
Steward is written in the programming language Go with NATS as the message broker.
2021-03-26 09:52:36 +00:00
## Why
2021-02-03 08:06:37 +00:00
2021-08-13 14:21:35 +00:00
With existing solutions there is often either a push or a pull kind of setup to control the nodes.
2021-02-03 08:06:37 +00:00
2021-02-17 12:14:19 +00:00
In a push setup the commands to be executed is pushed to the receiver, but if a command fails because for example a broken network link it is up to you as an administrator to detect those failures and retry them at a later time until it is executed successfully.
2021-02-03 08:06:37 +00:00
2021-03-11 16:14:43 +00:00
In a pull setup an agent is installed at the Edge unit, and the configuration or commands to execute locally are pulled from a central repository. With this kind of setup you can be pretty certain that sometime in the future the node will reach it's desired state, but you don't know when. And if you want to know the current state you will need to have some second service which gives you that information.
2021-02-03 08:06:37 +00:00
2022-01-06 09:20:30 +00:00
In it's simplest form the idea about using an event driven system as the core for management of Edge units is that the sender/publisher are fully decoupled from the receiver/subscriber. We can get an acknowledge message if a message is received or not, and with this functionality we will at all times know the current state of the receiving end.
2021-02-03 07:28:21 +00:00
2021-04-15 05:52:42 +00:00
## Publishing and Subscribing processes
2021-03-26 09:48:05 +00:00
All parts of the system like processes, method handlers, messages, error handling are running concurrently.
If one process hangs on a long running message method it will not affect the rest of the system.
### Publisher
2021-09-21 09:09:14 +00:00
1. A message in valid format is appended to the in socket.
1. The message is picked up by the system and put on a FIFO ringbuffer.
1. The method type of the message is checked, a subject is created based on the content of the message, and a publisher process to handle the message type for that specific receiving node is started if it does not exist.
1. The message is then serialized to binary format, and sent to the subscriber on the receiving node.
1. If the message is expected to be ACK'ed by the subcriber then the publisher will wait for an ACK if the message was delivered. If an ACK was not received within the defined timeout the message will be resent. The amount of retries are defined within the message.
2021-03-26 09:48:05 +00:00
### Subscriber
2021-09-21 09:09:14 +00:00
1. The receiving end will need to have a subscriber process started on a specific subject and be allowed handle messages from the sending nodes to execute the method defined in the message.
2022-01-06 09:20:30 +00:00
2. When a message have been received, a handler for the method type specified in the message will be executed.
3. If the output of the method called is supposed to be returned to the publiser it will do so by using the replyMethod specified.
2021-09-21 09:09:14 +00:00
### Logical structure
TODO: Make a diagram here...
2021-03-11 16:14:43 +00:00
## Terminology
2021-09-21 09:09:14 +00:00
- **Node**: Something with an operating system that have network available. This can be a server, a cloud instance, a container, or other.
- **Process**: A message handler that knows how to handle messages of a given subject concurrently.
2022-01-28 07:54:26 +00:00
- **Message**: A message sent from one Steward node to another.
2021-03-11 16:14:43 +00:00
## Features
### Error messages from nodes
2021-03-11 16:14:43 +00:00
- Error messages will be sent back to the central error handler upon failure on a node.
2021-09-21 09:09:14 +00:00
```log
Tue Sep 21 09:17:55 2021, info: toNode: ship2, fromNode: central, method: REQOpProcessList: max retries reached, check if node is up and running and if it got a subscriber for the given REQ type
```
### Message handling and threads
2021-09-21 09:09:14 +00:00
- The handling of all messages is done by spawning up a process for handling the message in it's own thread. This allows us to down on the **individual message level** keep the state for each message both in regards to ACK's, error handling, send retries, and rerun of a method for a message if the first run was not successful.
2022-01-06 09:20:30 +00:00
- Processes for handling messages on a host can be **restarted** upon **failure**, or asked to just terminate and send a message back to the operator that something have gone seriously wrong. This is right now just partially implemented to test that the concept works, where the error action is **action=no-action**.
2021-08-13 14:21:35 +00:00
- Publisher Processes on a node for handling new messages for new nodes will automatically be spawned when needed if it does not already exist.
2021-09-21 09:09:14 +00:00
- Messages not fully processed or not started yet will be automatically rehandled if the service is restarted since the current state of all the messages being processed are stored on the local node in a **key value store** until they are finished.
2022-01-06 09:20:30 +00:00
- All messages processed by a publisher will be written to a log file after they are processed, with all the information needed to recreate the same message if needed, or it can be used for auditing.
2021-03-05 12:10:46 +00:00
2021-03-11 16:14:43 +00:00
- All handling down to the process and message level are handled concurrently. So if there are problems handling one message sent to a node on a subject it will not affect the messages being sent to other nodes, or other messages sent on other subjects to the same host.
2021-03-01 09:16:07 +00:00
2021-09-21 09:09:14 +00:00
- Message types of both **ACK** and **NACK**, so we can decide if we want or don't want an Acknowledge if a message was delivered succesfully.
Example: We probably want an **ACK** when sending some **REQCLICommand** to be executed, but we don't care for an acknowledge **NACK** when we send an **REQHello** event.
2021-12-28 11:05:09 +00:00
### Timeouts and retries for requests
2021-03-29 12:00:28 +00:00
- Default timeouts to wait for ACK messages and max attempts to retry sending a message are specified upon startup. This can be overridden on the message level.
2021-09-21 09:09:14 +00:00
- Timeouts can be specified on both the **message**, and the **method**.
2022-01-06 09:20:30 +00:00
- A message can have a timeout used for used for when to resend and how many retries.
2021-09-21 09:09:14 +00:00
- If the method triggers a shell command, the command can have its own timeout, allowing process timeout for long/stuck commands, or for telling how long the command is supposed to run.
2021-03-29 12:00:28 +00:00
2021-09-21 09:09:14 +00:00
Example of a message with timeouts set:
2021-09-21 09:09:14 +00:00
```json
[
{
"directory":"/some/result/directory/",
"fileName":"my-syslog.log",
"toNode": "ship2",
"methodArgs": ["bash","-c","tail -f /var/log/syslog"],
"replyMethod":"REQToFileAppend",
2022-01-28 07:54:26 +00:00
"method":"REQCliCommandCont",
2021-09-21 09:09:14 +00:00
"ACKTimeout":3,
"retries":3,
"methodTimeout": 60
}
]
```
2021-09-21 09:09:14 +00:00
In the above example, the values set meaning:
2021-09-21 09:09:14 +00:00
- **ACKTimeout** : Wait 3 seconds for an **ACK** message.
- **retries** : If an **ACK** is not received, retry sending the message 3 times.
- **methodTimeout** : Let the bash command `tail -f ./tmp.log` run for 60 seconds before it is terminated.
2022-01-06 09:20:30 +00:00
If no timeout are specified in a message the defaults specified in the **etc/config.yaml** are used.
2021-11-11 14:15:59 +00:00
#### REQRelay
2021-12-07 09:42:11 +00:00
Instead of injecting the new Requests on the central server, you can relay messages via another node as long as the nats-server authorization conf permits it. This is what REQRelay is for.
2022-01-06 09:20:30 +00:00
This functionality can be thought of as attaching a terminal to a Steward instance. Instead of injecting messages directly on for example the central Steward instance you can use another Steward instance and relay messages via the central instance.
2021-12-07 09:42:11 +00:00
Example configuration of relay authorization for nats-server can be found in the [doc folder](doc/).
2021-11-11 14:15:59 +00:00
Example:
```json
[
{
"directory":"/var/tail-logs/",
"fileName": "my-wifi.log",
"toNode": "node1",
"relayViaNode": "central",
"relayReplyMethod": "REQToConsole",
"methodArgs": ["bash","-c","tail -f /var/log/wifi.log"],
"method":"REQCliCommandCont",
"replyMethod":"REQToFileAppend",
"ACKTimeout":5,
"retries":3,
"replyACKTimeout":5,
"replyRetries":3,
"methodTimeout": 10
}
]
```
```text
2021-12-07 09:42:11 +00:00
1 2 3
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
------------▷│ │------------▷│ │------------▷│ │
│ node1 │ │ central │ │ node2 │
◁------------│ │◁------------│ │◁------------│ │
└─────────────┘ └─────────────┘ └─────────────┘
6 5 4
2021-11-11 14:15:59 +00:00
```
Steps Explained:
2022-01-06 09:20:30 +00:00
##### Relay Step 1
2021-12-07 09:42:11 +00:00
- The **relayViaNode** field of the message is checked, and If set the message will be encapsulated within a **REQRelayInitial** message where the original message field values are kept, and put back on the message queue on **node1**.
- The new **REQRelayInitial** message will again be picked up on **node1** and handled by the **REQRelayInitial handler**.
- The **REQRelayInitial handler** will set the message method to **REQRelay**, and forward the message to the node value in the **relayViaNode** field.
2022-01-06 09:20:30 +00:00
##### Relay Step 2
2021-12-07 09:42:11 +00:00
- On **central** the **REQRelay method handler** will recreate the **original** message, and forward it to **node2**.
2022-01-06 09:20:30 +00:00
##### Relay Step 3
2021-12-07 09:42:11 +00:00
- **Node2** receives the request, and executes the **original** method with the arguments specified.
2022-01-06 09:20:30 +00:00
##### Relay Step 4
2021-12-07 09:42:11 +00:00
- The result is sent back to **central** in the form of a normal reply message.
2022-01-06 09:20:30 +00:00
##### Relay Step 5
2021-12-07 09:42:11 +00:00
- When the **reply** message is received on central a copy of the **reply** message will be created , and forwarded to **node1** where it originated.
- The the **original reply method** `"replyMethod":"REQToFileAppend"` is handled on central.
2022-01-06 09:20:30 +00:00
##### Relay Step 6
2021-12-07 09:42:11 +00:00
- On **node1** the **relayReplyMethod** is checked for how to handle the message. In this case it is printed to the consoles STDOUT.
2021-11-11 14:15:59 +00:00
2021-09-21 09:09:14 +00:00
### Flags and configuration file
2022-01-06 09:20:30 +00:00
Steward supports both the use of flags with values set at startup, and the use of a config file.
2021-09-21 09:09:14 +00:00
- A default config file will be created at first startup if one does not exist
- The default config will contain default values.
- Any value also provided via a flag will also be written to the config file.
2021-09-23 03:46:25 +00:00
- If **Steward** is restarted, the current content of the config file will be used as the new defaults.
2021-09-21 09:09:14 +00:00
- If you restart Steward without any flags specified, the values of the last run will be read from the config file.
- If new values are provided via CLI flags, they will take **precedence** over the ones currently in the config file.
- The new CLI flag values will be written to the config, making it the default for the next restart.
- The config file can be edited directly, removing the need for CLI flag use.
- To create a default config, simply:
1. Remove the current config file (or move it).
2022-01-06 09:20:30 +00:00
2. Restart Steward. A new default config file, with default values, will be created.
2021-09-21 09:09:14 +00:00
### Schema for the messages to send into Steward via the API's
- toNode : `string`
- toNodes : `string array`
- method : `string`
- methodArgs : `string array`
- replyMethod : `string`
- replyMethodArgs : `string array`
- ACKTimeout : `int`
- retries : `int`
- replyACKTimeout : `int`
- replyRetries : `int`
- methodTimeout : `int`
- replyMethodTimeout : `int`
- directory : `string`
- fileName : `string`
2022-01-06 09:20:30 +00:00
- RelayViaNode: `string`
- RelayReplyMethod: `string`
2021-12-28 11:05:09 +00:00
### Nats messaging timeouts
The various timeouts for the Nats messages can be controlled via the configuration file or flags.
If the network media is a high latency. satellite links it will make sense to adjust the client timeout to reflect the latency
```text
-natsConnOptTimeout int
default nats client conn timeout in seconds (default 20)
```
The interval in seconds the nats client should try to reconnect to the nats-server if the connection is lost.
```text
-natsConnectRetryInterval int
default nats retry connect interval in seconds. (default 10)
```
Jitter values.
```text
-natsReconnectJitter int
default nats ReconnectJitter interval in milliseconds. (default 100)
-natsReconnectJitterTLS int
default nats ReconnectJitterTLS interval in seconds. (default 5)
```
### Compression of the Nats message payload
You can choose to enable compression of the payload in the Nats messages.
```text
-compression string
2022-01-06 09:20:30 +00:00
compression method to use. defaults to no compression, z = zstd, g = gzip. Undefined value will default to no compression
2021-12-28 11:05:09 +00:00
```
2021-12-28 11:44:10 +00:00
When starting a Steward instance with compression enabled it is the publishing of the message payload that is compressed.
2021-12-28 11:05:09 +00:00
2021-12-28 11:44:10 +00:00
The subscribing instance of Steward will automatically detect if the message is compressed or not, and decompress it if needed.
2021-12-28 11:05:09 +00:00
With other words, Steward will by default receive and handle both compressed and uncompressed messages, and you decide on the publishing side if you want to enable compression or not.
2022-01-26 23:38:25 +00:00
### startup folder
#### General functionality
Messages can be automatically scheduled to be read and executed at startup of Steward.
A folder named **startup** will be present in the working directory of Steward, and you put the messages to be executed at startup here.
#### How to send the reply to another node
Normally the **fromNode** field is automatically filled in with the node name of the node where a message originated.
Since messages within the startup folder is not received from another node via the normal message path we need to specify the **fromNode** field within the message for where we want the reply delivered.
#### method timeout
We can also make the request method run for as long as the Steward instance itself is running. We can do that by setting the **methodTimeout** field to a value of `-1`.
This can make sense if you for example wan't to continously ping a host, or continously run a script on a node.
##### Example
```json
[
{
"toNode": "ship1",
"fromNode": "central",
"method": "REQCliCommandCont",
"methodArgs": [
"bash",
"-c",
"nc -lk localhost 8888"
],
"replyMethod": "REQToConsole",
"methodTimeout": 10,
}
]
```
This message is put in the `./startup` folder on **node1**.</br>
We send the message to ourself, hence specifying ourself in the `toNode` field.</br>
We specify the reply messages with the result to be sent to the console on **central** in the `fromNode` field.</br>
In the example we start a TCP listener on port 8888, and we want the method to run for as long as Steward is running. So we set the **methodTimeout** to `-1`.</br>
2021-04-13 15:48:25 +00:00
### Request Methods
2021-09-21 05:10:41 +00:00
#### REQOpProcessList
Get a list of the running processes.
```json
[
{
"directory":"test/dir",
"fileName":"test.result",
"toNode": "ship2",
"method":"REQOpProcessList",
"methodArgs": [],
"replyMethod":"REQToFileAppend",
}
]
```
#### REQOpProcessStart
Start up a process. Takes the REQ method to start as it's only argument.
```json
[
{
"directory":"test/dir",
"fileName":"test.result",
"toNode": "ship2",
"method":"REQOpProcessStart",
"methodArgs": ["REQHttpGet"],
"replyMethod":"REQToFileAppend",
}
]
```
#### REQOpProcessStop
Stop a process. Takes the REQ method, receiving node name, kind publisher/subscriber, and the process ID as it's arguments.
```json
[
{
"directory":"test/dir",
"fileName":"test.result",
"toNode": "ship2",
"method":"REQOpProcessStop",
"methodArgs": ["REQHttpGet","ship2","subscriber","199"],
"replyMethod":"REQToFileAppend",
}
]
```
2021-08-13 14:21:35 +00:00
#### REQCliCommand
2021-04-13 15:59:30 +00:00
2021-09-23 03:46:25 +00:00
Run CLI command on a node. Linux/Windows/Mac/Docker-container or other.
2021-04-13 15:48:25 +00:00
2021-06-08 18:52:45 +00:00
Will run the command given, and return the stdout output of the command when the command is done.
2021-09-21 09:09:14 +00:00
```json
2021-09-21 05:10:41 +00:00
[
{
"directory":"some/cli/command",
"fileName":"cli.result",
"toNode": "ship2",
"method":"REQnCliCommand",
"methodArgs": ["bash","-c","docker ps -a"],
"replyMethod":"REQToFileAppend",
}
]
2021-09-21 09:09:14 +00:00
```
2021-09-21 05:10:41 +00:00
#### REQCliCommandCont
2021-06-08 18:52:45 +00:00
Run CLI command on a node. Linux/Windows/Mac/Docker-container or other.
2021-09-21 05:10:41 +00:00
Will run the command given, and return the stdout output of the command continously while the command runs. Uses the methodTimeout to define for how long the command will run.
```json
[
{
"directory":"some/cli/command",
"fileName":"cli.result",
"toNode": "ship2",
2022-01-28 07:54:26 +00:00
"method":"REQCliCommandCont",
2021-09-21 05:10:41 +00:00
"methodArgs": ["bash","-c","docker ps -a"],
"replyMethod":"REQToFileAppend",
"methodTimeout":10,
}
]
```
2021-06-08 18:52:45 +00:00
2021-09-27 12:45:49 +00:00
**NB**: A github issue is filed on not killing all child processes when using pipes <https://github.com/golang/go/issues/23019>. This is relevant for this request type.
2022-01-06 09:20:30 +00:00
And also a new issue registered <https://github.com/golang/go/issues/50436>
TODO: Check in later if there are any progress on the issue. When testing the problem seems to appear when using sudo, or tcpdump without the -l option. So for now, don't use sudo, and remember to use -l with tcpdump
which makes stdout line buffered. `timeout` in front of the bash command can also be used to get around the problem with any command executed.
2021-09-27 12:45:49 +00:00
2021-04-13 15:59:30 +00:00
#### REQTailFile
2021-09-21 05:10:41 +00:00
Tail log files on some node, and get the result for each new line read sent back in a reply message. Uses the methodTimeout to define for how long the command will run.
```json
[
{
"directory": "/my/tail/files/",
"fileName": "tailfile.log",
"toNode": "ship2",
"method":"REQTailFile",
"methodArgs": ["/var/log/system.log"],
"methodTimeout": 10
}
]
```
2021-04-13 15:48:25 +00:00
2021-04-13 15:59:30 +00:00
#### REQHttpGet
2021-09-21 05:10:41 +00:00
Scrape web url, and get the html sent back in a reply message. Uses the methodTimeout for how long it will wait for the http get method to return result.
```json
[
{
"directory": "web",
"fileName": "web.html",
"toNode": "ship2",
"method":"REQHttpGet",
"methodArgs": ["https://web.ics.purdue.edu/~gchopra/class/public/pages/webdesign/05_simple.html"],
"replyMethod":"REQToFile",
"ACKTimeout":10,
"retries": 3,
"methodTimeout": 3
}
]
```
2021-04-13 15:48:25 +00:00
2022-02-11 06:34:31 +00:00
#### REQHttpGetScheduled
Schedule scraping of a web web url, and get the html sent back in a reply message. Uses the methodTimeout for how long it will wait for the http get method to return result.
The **methodArgs** also takes 3 arguments:
1. The URL to scrape.
2. The schedule interval given in **seconds**.
3. How long the scheduler should run in minutes.
The example below will scrape the URL specified every 30 seconds for 10 minutes.
```json
[
{
"directory": "web",
"fileName": "web.html",
"toNode": "ship2",
"method":"REQHttpGet",
"methodArgs": ["https://web.ics.purdue.edu/~gchopra/class/public/pages/webdesign/05_simple.html","30","10"],
"replyMethod":"REQToFile",
"ACKTimeout":10,
"retries": 3,
"methodTimeout": 3
}
]
```
2021-04-13 15:59:30 +00:00
#### REQHello
2021-09-21 05:10:41 +00:00
Send Hello messages.
All nodes have the flag option to start sending Hello message to the central server. The structure of those messages looks like this.
```json
[
{
"toNode": "central",
"method":"REQHello"
}
]
```
2021-04-13 15:48:25 +00:00
2021-11-18 08:51:16 +00:00
#### REQCopyFileFrom
Copy a file from one node to another node.
- Source node to copy from is specified in the toNode/toNodes field
- The file to copy and the destination node is specified in the **methodArgs** field:
1. The first field is the full path of the source file.
2. The second field is the destination node for where to copy the file to.
3. The third field is the full path for where to write the copied file.
```json
[
{
"directory": "copy",
"fileName": "copy.log",
"toNodes": ["central"],
"method":"REQCopyFileFrom",
"methodArgs": ["./tmp2.txt","ship2","/tmp/tmp2.txt"],
"replyMethod":"REQToFileAppend"
}
]
```
2021-04-13 15:59:30 +00:00
#### REQErrorLog
2021-09-21 05:10:41 +00:00
Method for receiving error logs for Central error logger.
2021-04-13 15:48:25 +00:00
2022-01-05 07:47:06 +00:00
**NB**: This is **not** to be used by users. Use **REQToFileAppend** instead.
2021-09-21 09:09:14 +00:00
2021-06-09 07:40:35 +00:00
### Request Methods used for reply messages
2021-04-13 15:59:30 +00:00
2022-01-05 07:47:06 +00:00
#### REQNone
Don't send a reply message.
2021-04-13 15:59:30 +00:00
2022-01-05 07:47:06 +00:00
An example could be that you send a `REQCliCommand` message to some node, and you specify `replyMethod: REQNone` if you don't care about the resulting output from the original method.
#### REQToConsole
This is a pure replyMethod that can be used to get the data of the reply message printed to stdout where Steward is running.
2021-04-13 15:59:30 +00:00
2021-09-21 09:09:14 +00:00
```json
[
{
2022-01-05 07:47:06 +00:00
"directory": "web",
"fileName": "web.html",
2021-09-21 09:09:14 +00:00
"toNode": "ship2",
2022-01-05 07:47:06 +00:00
"method":"REQHttpGet",
"methodArgs": ["https://web.ics.purdue.edu/~gchopra/class/public/pages/webdesign/05_simple.html"],
2021-09-21 09:09:14 +00:00
"replyMethod":"REQToConsole",
2022-01-05 07:47:06 +00:00
"ACKTimeout":10,
"retries": 3,
"methodTimeout": 3
2021-09-21 09:09:14 +00:00
}
]
```
2021-04-13 15:59:30 +00:00
#### REQToFileAppend
Append the output of the reply message to a log file specified with the `directory` and `fileName` fields.
2021-04-13 15:59:30 +00:00
2021-09-21 09:09:14 +00:00
```json
[
{
"directory":"test/dir",
"fileName":"test.result",
"toNode": "ship2",
"method":"REQOpProcessList",
"methodArgs": [],
"replyMethod":"REQToFileAppend",
}
]
```
2021-04-13 15:59:30 +00:00
#### REQToFile
2021-09-21 09:09:14 +00:00
Write the output of the reply message to a file specified with the `directory` and `fileName` fields, where the writing will write over any existing content of that file.
```json
[
{
"directory":"test/dir",
"fileName":"test.result",
"toNode": "ship2",
"method":"REQOpProcessList",
"methodArgs": [],
"replyMethod":"REQToFile",
}
]
```
2022-03-10 08:09:07 +00:00
#### REQToFileNACK
Same as REQToFile, but will not send an ACK when a message is delivered.
#### ReqCliCommand
**ReqCliCommand** is a bit special in that it can be used as both **method** and **replyMethod**
The final result, if any, of the replyMethod will be sent to the central server.
By using the `{{STEWARD_DATA}}` you can grab the output of your initial request method, and then use it as input in your reply method.
**NB:** The echo command in the example below will remove new lines from the data. To also keep any new lines we need to put escaped **quotes** around the template variable. Like this:
- `\"{{STEWARD_DATA}}\"`
Example of usage:
```json
[
{
"directory":"cli_command_test",
"fileName":"cli_command.result",
"toNode": "ship2",
"method":"REQCliCommand",
"methodArgs": ["bash","-c","tree"],
"replyMethod":"REQCliCommand",
"replyMethodArgs": ["bash", "-c","echo \"{{STEWARD_DATA}}\" > apekatt.txt"],
"replyMethodTimeOut": 10,
"ACKTimeout":3,
"retries":3,
"methodTimeout": 10
}
]
```
2021-09-23 03:05:12 +00:00
Or the same using bash's herestring:
```json
[
{
"directory":"cli_command_test",
"fileName":"cli_command.result",
"toNode": "ship2",
"method":"REQCliCommand",
"methodArgs": ["bash","-c","tree"],
"replyMethod":"REQCliCommand",
"replyMethodArgs": ["bash", "-c","cat <<< {{STEWARD_DATA}} > hest.txt"],
"replyMethodTimeOut": 10,
"ACKTimeout":3,
"retries":3,
"methodTimeout": 10
}
]
```
2021-04-13 15:59:30 +00:00
### Errors reporting
2021-09-21 09:09:14 +00:00
- Errors happening on **all** nodes will be reported back in to the node name defined with the `-centralNodeName` flag.
### Prometheus metrics
2021-09-21 09:09:14 +00:00
- Prometheus exporters for Metrics.
2021-02-10 22:59:47 +00:00
### Other
2021-03-11 16:14:43 +00:00
- More will come. In active development.
2021-02-10 22:59:47 +00:00
2021-02-10 18:02:57 +00:00
## Howto
### Options for running
The location of the config file are given via an env variable at startup (default "./etc/).
2022-01-06 09:20:30 +00:00
`env CONFIG_FOLDER </myconfig/folder/here> <steward binary>`
2022-01-05 10:26:10 +00:00
The different fields and their type in the config file. The fields of the config file can also be set by providing flag values at startup. Use the `-help` flag to get all the options.
2021-02-25 12:42:34 +00:00
```text
2022-01-05 10:26:10 +00:00
// RingBufferSize
RingBufferSize int
// The configuration folder on disk
ConfigFolder string
// The folder where the socket file should live
SocketFolder string
// TCP Listener for sending messages to the system
TCPListener string
// HTTP Listener for sending messages to the system
HTTPListener string
// The folder where the database should live
DatabaseFolder string
// some unique string to identify this Edge unit
NodeName string
// the address of the message broker
BrokerAddress string
// NatsConnOptTimeout the timeout for trying the connect to nats broker
NatsConnOptTimeout int
// nats connect retry
NatsConnectRetryInterval int
// NatsReconnectJitter in milliseconds
NatsReconnectJitter int
// NatsReconnectJitterTLS in seconds
NatsReconnectJitterTLS int
// The number of the profiling port
ProfilingPort string
// host and port for prometheus listener, e.g. localhost:2112
PromHostAndPort string
// set to true if this is the node that should receive the error log's from other nodes
DefaultMessageTimeout int
// Default value for how long can a request method max be allowed to run.
DefaultMethodTimeout int
// default amount of retries that will be done before a message is thrown away, and out of the system
DefaultMessageRetries int
// Publisher data folder
SubscribersDataFolder string
// central node to receive messages published from nodes
CentralNodeName string
// Path to the certificate of the root CA
RootCAPath string
// Full path to the NKEY's seed file
NkeySeedFile string
// The host and port to expose the data folder
ExposeDataFolder string
// Timeout for error messages
ErrorMessageTimeout int
// Retries for error messages.
ErrorMessageRetries int
// Compression
Compression string
// Serialization
Serialization string
// SetBlockProfileRate for block profiling
SetBlockProfileRate int
// NOTE:
// Op commands will not be specified as a flag since they can't be turned off.
// Make the current node send hello messages to central at given interval in seconds
StartPubREQHello int
// Start the central error logger.
// Takes a comma separated string of nodes to receive from or "*" for all nodes.
StartSubREQErrorLog bool
// Subscriber for hello messages
StartSubREQHello bool
// Subscriber for text logging
StartSubREQToFileAppend bool
// Subscriber for writing to file
StartSubREQToFile bool
// Subscriber for reading files to copy
StartSubREQCopyFileFrom bool
// Subscriber for writing copied files to disk
StartSubREQCopyFileTo bool
// Subscriber for Echo Request
StartSubREQPing bool
// Subscriber for Echo Reply
StartSubREQPong bool
// Subscriber for CLICommandRequest
StartSubREQCliCommand bool
// Subscriber for REQToConsole
StartSubREQToConsole bool
// Subscriber for REQHttpGet
StartSubREQHttpGet bool
// Subscriber for tailing log files
StartSubREQTailFile bool
// Subscriber for continously delivery of output from cli commands.
StartSubREQCliCommandCont bool
// Subscriber for relay messages.
StartSubREQRelay bool
2021-02-10 18:02:57 +00:00
```
### How to Run
2022-01-05 10:26:10 +00:00
#### Run Steward in the simplest possible way for testing
**NB** Running Steward like this is perfect for testing in a local test environment, but is not something you would wan't to do in production.
##### Nats-server
Download the **nats-server** from <https://github.com/nats-io/nats-server/releases/>
Or use the curl (replace the version information with wanted version):
`curl -L https://github.com/nats-io/nats-server/releases/download/vX.Y.Z/nats-server-vX.Y.Z-linux-amd64.zip -o nats-server.zip`
Unpack:
`unzip nats-server.zip -d nats-server`
Start the nats server listening on local interfaces and port 4222.
`./nats-server -D`
##### Steward
Steward is written in Go, so you need Go installed to compile it. You can get Go at <https://golang.org/dl/>.
When Go is installed:
Clone the repository:
`git clone https://github.com/RaaLabs/steward.git`.
Change directory and build:
```bash
2022-01-05 16:32:37 +00:00
cd ./steward/cmd/steward
2022-01-05 10:26:10 +00:00
go build -o steward
```
Start up a **central** server which will act as your command and control server.
- `env CONFIG_FOLDER=./etc/ ./steward --nodeName="central" --centralNodeName="central"`
Start up a node that will attach to the **central** node
`env CONFIG_FOLDER=./etc/ ./steward --nodeName="ship1" --centralNodeName="central"` & `./steward --node="ship2"`
You can get all the options with `./steward --help`
Steward will by default create the data and config directories needed in the current folder. This can be changed by using the different flags or editing the config file.
You can also run multiple instances of Steward on the same machine. For testing you can create sub folders for each steward instance, go into each folder and start steward. When starting each Steward instance make sure you give each node a unique `--nodeName`.
##### Send messages with Steward
You can now go to one of the folders for nodes started, and inject messages into the socket file `./tmp/steward.sock` with the **nc** tool.
2022-01-06 09:20:30 +00:00
Example on Mac:
2022-01-05 10:26:10 +00:00
`nc -U ./tmp/steward.sock < reqnone.msg`
2022-01-06 09:20:30 +00:00
Example on Linux:
`nc -NU ./tmp/steward.sock < reqnone.msg`
2022-01-05 10:26:10 +00:00
#### Example for starting steward with some more options set
A complete example to start a central node called `central`.
```bash
env CONFIG_FOLDER=./etc/ ./steward \
-nodeName="central" \
-defaultMessageRetries=3 \
-defaultMessageTimeout=5 \
-subscribersDataFolder="./data" \
-centralNodeName="central" \
-startSubREQErrorLog=true \
-subscribersDataFolder="./var" \
-brokerAddress="127.0.0.1:4222"
```
And start another node that will be managed via central.
```bash
env CONFIG_FOLDER=./etc/ ./steward \
-nodeName="ship1" \
-startPubREQHello=200 \
-centralNodeName="central" \
-promHostAndPort=":12112" \
-brokerAddress="127.0.0.1:4222"
```
2022-01-21 06:06:12 +00:00
**NB**: By default Steward creates it's folders like `./etc`, `./var`, and `./data` in the folder you're in when you start it. If you want to run multiple instances on the same machine you should create separate folders for each instance, and start Steward when you're in that folder. The location of the folders can also be specified within the config file.
2022-01-06 09:20:30 +00:00
#### Nkey Authentication
Nkey's can be used for authentication, and you use the `nkeySeedFile` flag to specify the seed file to use.
2021-09-09 07:54:33 +00:00
Read more in the sections below on how to generate nkey's.
2021-04-16 13:27:28 +00:00
#### nats-server (the message broker)
2021-09-21 09:09:14 +00:00
The broker for messaging is Nats-server from <https://nats.io>. Download, run it, and use the `-brokerAddress` flag on **Steward** to point to the ip and port:
`-brokerAddress="nats://10.0.0.124:4222"`
2021-03-12 05:01:26 +00:00
2021-04-16 13:27:28 +00:00
There is a lot of different variants of how you can setup and confiure Nats. Full mesh, leaf node, TLS, Authentication, and more. You can read more about how to configure the Nats broker called nats-server at <https://nats.io/>.
2022-01-05 10:26:10 +00:00
##### Nats-server config with nkey authentication example
```config
port: 4222
tls {
2021-09-21 09:09:14 +00:00
cert_file: "some.crt"
key_file: "some.key"
}
authorization: {
users = [
{
# central
nkey: <USER_NKEY_HERE>
permissions: {
publish: {
2022-01-05 10:26:10 +00:00
allow: ["some.>","errorCentral.>"]
}
subscribe: {
2022-01-05 10:26:10 +00:00
allow: ["some.>","errorCentral.>"]
}
}
}
{
2022-01-05 10:26:10 +00:00
# node1
nkey: <USER_NKEY_HERE>
permissions: {
publish: {
allow: ["central.>"]
}
subscribe: {
2022-01-05 10:26:10 +00:00
allow: ["central.>","some.node1.>","some.node10'.>"]
}
}
}
{
# node10
nkey: <USER_NKEY_HERE>
permissions: {
publish: {
2022-01-05 10:26:10 +00:00
allow: ["some.node1.>","errorCentral.>"]
}
subscribe: {
2022-01-05 10:26:10 +00:00
allow: ["central.>"]
}
}
}
]
}
```
The official docs for nkeys can be found here <https://docs.nats.io/nats-server/configuration/securing_nats/auth_intro/nkey_auth>.
2021-09-21 09:09:14 +00:00
- Generate private (seed) and public (user) key pair:
- `nk -gen user -pubout`
2021-09-21 09:09:14 +00:00
- Generate a public (user) key from a private (seed) key file called `seed.txt`.
- `nk -inkey seed.txt -pubout > user.txt`
2021-09-21 09:09:14 +00:00
More example configurations for the nats-server are located in the [doc](https://github.com/RaaLabs/steward/tree/main/doc) folder in this repository.
2021-03-11 16:14:43 +00:00
### Message fields explanation
```go
2021-11-18 08:51:16 +00:00
// The node to send the message to.
ToNode Node `json:"toNode" yaml:"toNode"`
2021-09-09 07:54:33 +00:00
// ToNodes to specify several hosts to send message to in the
// form of an slice/array.
2021-11-18 08:51:16 +00:00
ToNodes []Node `json:"toNodes,omitempty" yaml:"toNodes,omitempty"`
2021-09-09 07:54:33 +00:00
// The actual data in the message. This is typically where we
// specify the cli commands to execute on a node, and this is
// also the field where we put the returned data in a reply
// message.
2021-11-18 08:51:16 +00:00
Data []string `json:"data" yaml:"data"`
2021-09-09 07:54:33 +00:00
// Method, what request type to use, like REQCliCommand, REQHttpGet..
2021-11-18 08:51:16 +00:00
Method Method `json:"method" yaml:"method"`
2021-09-16 10:24:03 +00:00
// Additional arguments that might be needed when executing the
// method. Can be f.ex. an ip address if it is a tcp sender, or the
// shell command to execute in a cli session.
2021-11-18 08:51:16 +00:00
MethodArgs []string `json:"methodArgs" yaml:"methodArgs"`
2021-04-13 15:48:25 +00:00
// ReplyMethod, is the method to use for the reply message.
// By default the reply method will be set to log to file, but
// you can override it setting your own here.
2021-11-18 08:51:16 +00:00
ReplyMethod Method `json:"replyMethod" yaml:"replyMethod"`
2021-09-16 10:37:46 +00:00
// Additional arguments that might be needed when executing the reply
// method. Can be f.ex. an ip address if it is a tcp sender, or the
// shell command to execute in a cli session.
2021-11-18 08:51:16 +00:00
ReplyMethodArgs []string `json:"replyMethodArgs" yaml:"replyMethodArgs"`
// IsReply are used to tell that this is a reply message. By default
// the system sends the output of a request method back to the node
// the message originated from. If it is a reply method we want the
// result of the reply message to be sent to the central server, so
// we can use this value if set to swap the toNode, and fromNode
// fields.
IsReply bool `json:"isReply" yaml:"isReply"`
// From what node the message originated
FromNode Node
// ACKTimeout for waiting for an ack message
ACKTimeout int `json:"ACKTimeout" yaml:"ACKTimeout"`
// Resend retries
Retries int `json:"retries" yaml:"retries"`
2021-04-13 15:48:25 +00:00
// The ACK timeout of the new message created via a request event.
2021-11-18 08:51:16 +00:00
ReplyACKTimeout int `json:"replyACKTimeout" yaml:"replyACKTimeout"`
2021-03-11 16:14:43 +00:00
// The retries of the new message created via a request event.
2021-11-18 08:51:16 +00:00
ReplyRetries int `json:"replyRetries" yaml:"replyRetries"`
2021-04-09 17:23:08 +00:00
// Timeout for long a process should be allowed to operate
2021-11-18 08:51:16 +00:00
MethodTimeout int `json:"methodTimeout" yaml:"methodTimeout"`
2021-09-16 10:37:46 +00:00
// Timeout for long a process should be allowed to operate
2021-11-18 08:51:16 +00:00
ReplyMethodTimeout int `json:"replyMethodTimeout" yaml:"replyMethodTimeout"`
2021-04-09 17:23:08 +00:00
// Directory is a string that can be used to create the
//directory structure when saving the result of some method.
// For example "syslog","metrics", or "metrics/mysensor"
// The type is typically used in the handler of a method.
2021-11-18 08:51:16 +00:00
Directory string `json:"directory" yaml:"directory"`
// FileName is used to be able to set a wanted name
2021-04-09 17:23:08 +00:00
// on a file being saved as the result of data being handled
// by a method handler.
2021-11-18 08:51:16 +00:00
FileName string `json:"fileName" yaml:"fileName"`
// PreviousMessage are used for example if a reply message is
// generated and we also need a copy of the details of the the
// initial request message.
PreviousMessage *Message
// The node to relay the message via.
RelayViaNode Node `json:"relayViaNode" yaml:"relayViaNode"`
// The node where the relayed message originated, and where we want
// to send back the end result.
RelayFromNode Node `json:"relayFromNode" yaml:"relayFromNode"`
// The original value of the ToNode field of the original message.
RelayToNode Node `json:"relayToNode" yaml:"relayToNode"`
// The original method of the message.
RelayOriginalMethod Method `json:"relayOriginalMethod" yaml:"relayOriginalMethod"`
// The method to use when the reply of the relayed message came
// back to where originated from.
RelayReplyMethod Method `json:"relayReplyMethod" yaml:"relayReplyMethod"`
// done is used to signal when a message is fully processed.
// This is used for signaling back to the ringbuffer that we are
// done with processing a message, and the message can be removed
// from the ringbuffer and into the time series log.
2021-04-09 17:23:08 +00:00
```
2021-04-13 15:48:25 +00:00
### How to send a Message
2022-03-10 08:09:07 +00:00
The API for sending a message from one node to another node is by sending a structured JSON or YAML object into a listener port in of of the following ways.
2021-04-13 15:48:25 +00:00
2021-09-21 09:09:14 +00:00
- unix socket called `steward.sock`. By default lives in the `./tmp` directory
- tcpListener, specify host:port with startup flag, or config file.
- httpListener, specify host:port with startup flag, or config file.
2021-04-09 17:23:08 +00:00
2021-09-09 07:54:33 +00:00
#### Send to socket with netcat
`nc -U ./tmp/steward.sock < myMessage.json`
2021-02-10 18:02:57 +00:00
#### Sending a command from one Node to Another Node
2021-09-09 07:54:33 +00:00
##### Example JSON for appending a message of type command into the `socket` file
2021-02-10 18:02:57 +00:00
2022-03-10 08:09:07 +00:00
In JSON:
2021-02-10 22:59:47 +00:00
```json
2021-02-10 18:02:57 +00:00
[
{
2021-04-15 05:52:42 +00:00
"directory":"/var/steward/cli-command/executed-result",
2021-09-09 07:54:33 +00:00
"fileName": "some.log",
2021-02-10 18:02:57 +00:00
"toNode": "ship1",
2021-04-06 09:02:58 +00:00
"method":"REQCliCommand",
2022-01-05 10:29:24 +00:00
"methodArgs": ["bash","-c","sleep 3 & tree ./"],
"ACKTimeout":10,
2021-04-06 09:02:58 +00:00
"retries":3,
"methodTimeout": 4
2021-02-10 18:02:57 +00:00
}
]
```
2022-03-10 08:09:07 +00:00
Or in YAML:
```yaml
---
- toNodes:
- ship1
method: REQCliCommand
methodArgs:
- bash
- "-c"
- "
cat <<< $'[{
\"directory\": \"metrics\",
\"fileName\": \"edgeAgent.prom\",
\"fromNode\":\"metrics\",
\"toNode\": \"ship1\",
\"method\":\"REQHttpGetScheduled\",
\"methodArgs\": [\"http://127.0.0.1:8080/metrics\",
\"60\",\"5000000\"],\"replyMethod\":\"REQToFile\",
\"ACKTimeout\":10,
\"retries\": 3,\"methodTimeout\": 3
}]'>scrape-metrics.msg
"
replyMethod: REQToFile
ACKTimeout: 5
retries: 3
replyACKTimeout: 5
replyRetries: 3
methodTimeout: 5
directory: system
fileName: system.log
```
2021-09-09 07:54:33 +00:00
##### Specify more messages at once do
2021-02-10 18:02:57 +00:00
2021-02-10 22:59:47 +00:00
```json
2021-02-10 18:02:57 +00:00
[
{
"directory":"cli-command-executed-result",
2021-09-09 07:54:33 +00:00
"fileName": "some.log",
2021-02-10 18:02:57 +00:00
"toNode": "ship1",
2021-04-06 09:02:58 +00:00
"method":"REQCliCommand",
2022-01-05 10:29:24 +00:00
"methodArgs": ["bash","-c","sleep 3 & tree ./"],
"ACKTimeout":10,
2021-04-06 09:02:58 +00:00
"retries":3,
"methodTimeout": 4
2021-02-10 18:02:57 +00:00
},
{
"directory":"cli-command-executed-result",
2021-09-09 07:54:33 +00:00
"fileName": "some.log",
2021-02-10 18:02:57 +00:00
"toNode": "ship2",
2021-04-06 09:02:58 +00:00
"method":"REQCliCommand",
2022-01-05 10:29:24 +00:00
"methodArgs": ["bash","-c","sleep 3 & tree ./"],
"ACKTimeout":10,
2021-04-06 09:02:58 +00:00
"retries":3,
"methodTimeout": 4
2021-02-10 18:02:57 +00:00
}
]
```
2021-09-09 07:54:33 +00:00
##### Send the same message to several hosts by using the toHosts field
```json
[
{
"directory": "httpget",
"fileName": "finn.no.html",
"toNodes": ["central","ship2"],
"method":"REQHttpGet",
2022-01-05 10:29:24 +00:00
"methodArgs": ["https://finn.no"],
2021-09-09 07:54:33 +00:00
"replyMethod":"REQToFile",
"ACKTimeout":5,
"retries":3,
"methodTimeout": 5
}
]
```
2021-09-21 09:09:14 +00:00
##### Tail a log file on a node, and save the result of the tail centrally at the directory specified
2021-04-16 13:27:28 +00:00
```json
[
{
"directory": "./my/log/files/",
"fileName": "some.log",
2021-04-16 13:27:28 +00:00
"toNode": "ship2",
"method":"REQTailFile",
2022-01-05 10:29:24 +00:00
"methodArgs": ["./test.log"],
2021-04-16 13:27:28 +00:00
"ACKTimeout":5,
"retries":3,
"methodTimeout": 200
}
]
```
2022-02-15 07:31:53 +00:00
##### Example for deleting the ringbuffer database and restarting steward
```json
[
{
"directory":"system",
"fileName":"system.log",
"toNodes": ["ship2"],
"method":"REQCliCommand",
"methodArgs": ["bash","-c","rm -rf /usr/local/steward/lib/incomingBuffer.db & systemctl restart steward"],
"replyMethod":"REQToFileAppend",
"ACKTimeout":30,
"retries":1,
"methodTimeout": 30
}
]
```
2021-09-21 09:09:14 +00:00
You can save the content to myfile.JSON and append it to the `socket` file:
2021-02-10 18:02:57 +00:00
2021-09-21 09:09:14 +00:00
- `nc -U ./steward.sock < example/toShip1-REQCliCommand.json`
2021-02-19 17:00:47 +00:00
2021-03-11 16:14:43 +00:00
## Concepts/Ideas
### Naming
#### Subject
2022-01-28 07:54:26 +00:00
`<nodename>.<method>.<event>`
2021-03-11 16:14:43 +00:00
2022-01-06 09:20:30 +00:00
Example:
2022-01-28 07:54:26 +00:00
`ship3.REQCliCommand.EventACK`
2022-01-06 09:20:30 +00:00
For ACK messages (using the reply functionality in NATS) we append the `.reply` to the subject.
2022-01-28 07:54:26 +00:00
`ship3.REQCliCommand.EventACK.reply`
2022-01-06 09:20:30 +00:00
2021-09-21 09:09:14 +00:00
**Nodename**: Are the hostname of the device. This do not have to be resolvable via DNS, it is just a unique name for the host to receive the message.
2022-01-28 07:54:26 +00:00
**Event**: Desribes if we want and Acknowledge or No Acknowledge when the message was delivered :
2021-09-21 09:09:14 +00:00
- `EventACK`
- `EventNACK`
2022-01-28 07:54:26 +00:00
Info: The field **Event** are present in both the **Subject** structure and the **Message** structure.
This is due to **Event** being used in both the naming of a subject, and for specifying message type to allow for specific processing of a message.
2021-03-11 16:14:43 +00:00
2022-01-05 07:47:06 +00:00
**Method**: Are the functionality the message provide. Example could be for example `REQCliCommand` or `REQHttpGet`
2021-03-11 16:14:43 +00:00
##### Complete subject example
2021-04-06 09:02:58 +00:00
For Hello Message to a node named "central" of type Event and there is No Ack.
2021-03-11 16:14:43 +00:00
2021-04-06 09:02:58 +00:00
`central.REQHello.EventNACK`
2021-03-11 16:14:43 +00:00
2022-01-28 07:54:26 +00:00
For CliCommand message to a node named "ship1" of type Event and it wants an Ack.
2021-03-11 16:14:43 +00:00
2022-01-28 07:54:26 +00:00
`ship1.REQCliCommand.EventACK`
2021-03-11 16:14:43 +00:00
## TODO
2021-06-14 04:49:47 +00:00
### Add Op option the remove messages from the queue on nodes
If messages have been sent, and not picked up by a node it might make sense to have some method to clear messages on a node. This could either be done by message ID, and/or time duration.
2021-03-26 09:48:05 +00:00
## Disclaimer
2021-03-11 16:14:43 +00:00
2022-01-27 12:31:14 +00:00
All code in this repository are to be concidered not-production-ready, and the use is at your own responsibility and risk. The code are the attempt to concretize the idea of a purely async management system where the controlling unit is decoupled from the receiving unit, and that that we know the state of all the receiving units at all times.
2021-03-11 16:14:43 +00:00
2021-03-26 09:48:05 +00:00
Also read the license file for further details.
2022-01-27 12:29:27 +00:00
2022-01-27 12:31:14 +00:00
Expect the main branch to have breaking changes. If stability is needed, use the released packages, and read the release notes where changes will be explained.