Troubleshooting

An new certificate was pushed in the configuration but the certificate is still not used by the module.

Adding a certificate (CA) does not restart the modules because each new module create a new CA sent to all modules on the SWARM. To add a certificate to a given module :

  1. Push the certificate on the configuration

  2. Restart all the modules to let them fetch the new CA

Why am I experiencing packet dropping, and what are the solutions?

The problem can arise in highly demanding stacks, especially when thousands of devices are simultaneously transmitting data.

There isn’t a one-size-fits-all solution to this issue. In certain cases, such as SNMP-TRAP, the bottleneck often lies with the operating system’s ability to efficiently transfer data from the network driver to the user level at the same rate as incoming packets. For more insights on this topic, refer to the network tuning section.

In instances of heavy data bursts, a recommended best practice is to distribute the workload across multiple hosts using multiple modules.

Unauthorized or non-functional connection on a Onvif controller

Occasionally, the onvif controller or camera may reject the connection with an “unauthorized” error message, despite the correct password and user credentials being entered. This issue is typically caused by a discrepancy in the date and time settings on the external device, which can lead to an error during the connection negotiation process

Frontend issue after upgrading

After some upgrade, in some edge cases, the user preferences stored locally could conflict with the new version of the frontend and cause problems. To resolve this issue, you can clear the local storage by accessing it through the side panel menu.

../../_images/clear-local-storage.png

RTSP broken video

From Kurento server documentation (https://readthedocs.org/projects/doc-kurento/downloads/pdf/stable/ chapter 12.6.1)

Note

Some users have reported huge macro-blocks or straight out broken video frames when using a PlayerEndpoint to receive an RTSP stream containing H.264 video. A possible solution to fix this issue is to fine-tune the PlayerEndpoint’s networkCache parameter. It basically sets the buffer size (in milliseconds) that the underlying GStreamer decoding element will use to cache the stream.

There’s no science for that parameter, though. The perfect value depends on your network topology and efficiency, so you should proceed in a trial-and-error approach. For some situations, values lower than 100ms has worked fine; some users have reported that 10ms was required to make their specific camera work, others have seen good results with setting this parameter to 0ms.

Video streaming problem

We can start by checking if ICE has answers to its queries.

Note

In the context of real-time communications (e.g., for video calls or instant messaging), an “ICE candidate” is an IP address and port that can be used to establish a direct connection between two computers on the Internet. When a client wants to connect to another client, it can send a connection offer that includes several “ICE candidates” that can be used to establish the connection. The remote client will respond with a reply that also includes a list of its own “ICE candidates”. The two clients will then exchange their “ICE candidates” until they find a common set they can use to establish a direct connection. “ICE candidates” can include private IP addresses, public IP addresses, or relay IP addresses, depending on which the clients need to use to connect. The process of selecting an appropriate “ICE candidate” can be complex, but it is essential for enabling high-quality real-time communication between clients.

You can start by checking whether ICE requests are answered with the Google Chrome inspection tool.

  1. Go to Google’s inspection tool

  2. Go to tab Network

  3. Filter: WS

../../_images/inspection_google_chrome.png
  1. Then you will see all the websocket requests clicked on the video request.

../../_images/selection.png
  1. In case ICE doesn’t have a return request you will see this as data, there will be no response to the request the video on the dashboard makes

../../_images/no_ice_reponce.png
  1. In case there are answers to the requests of the stream requested by the dashboard, you will see ice-candidate in the requests with a protocol, ip etc…

../../_images/ice_reponse.png

Url not properly encoded

When this happen there will be no “Ice canditates” on the request.

Warning

Kurento support only url encoded user and password. <code>rtsp://osp:9d[7xh3.#BDUT-m8n4J@10.10.10.10/onvif-media/media.amp</code> should be <code>rtsp://osp:9d%5B7xh3.%23BDUT-m8n4J@10.10.10.10/onvif-media/media.amp</code>

We can see that some characters have been replaced by % in the coded URL. Here is an explanation to be able to detect a not coded URL, most of the time and for the case above, it would be especially the password which poses problem.

Note

To determine if a URL is encoded or not in English, you can look for special characters that have been replaced by escape codes (e.g. %20 for a space), or if it contains non-ASCII characters that have been encoded in UTF-8. Here are some clues that can help you determine if a URL is encoded in English: The presence of special characters such as spaces, quotes, apostrophes, question marks, etc. If these characters are replaced by escape codes, it indicates that the URL has been encoded. The presence of non-ASCII characters, such as letters with accents or symbols. If these characters are encoded in UTF-8, it also indicates that the URL has been encoded. The absence of special characters or non-ASCII characters. If the URL contains only letters, numbers, and basic punctuation characters, it is likely that it has not been encoded. It is important to note that even if a URL does not appear to be encoded, it is still possible that it contains characters that can cause problems when sending HTTP requests or displaying the corresponding page. Therefore, it is recommended to use URL encoding tools to avoid these issues.

There are several ways of encoding URLs

Decoding:
Decoding the base64 encoded blob using PowerShell is simple.

$EncodedText = “VABoAGkAcwAgAGkAcwAgAGEAIABzAGUAYwByAGUAdAAgAGEAbgBkACAAcwBoAG8AdQBsAGQAIABiAGUAIABoAGkAZABlAG4A”
$DecodedText = [System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String($EncodedText))
$DecodedText

Recover GIT after corruption

In some borderline cases, such as file system corruption, the system may be corrupted and make the dispatcher inaccessible. In this case, the system must be recovered manually.

Note

The following method must be done, when the dispatcher is continually rebooting.

The first step is to remove the osp-configuration-dispatcher service, either from the portainer or with the command line

docker service rm osp-stack-1_modules_configuration-dispatcher_main

1. Access to GIT

Case 1 : The git is mounted on the host system, in this case, it is enough to restore it locally.

Case 2 : The git is only available on docker volume, in this case we can create a service to restore the system :

With osp-configuration-dipatcher:1.2.7 (add the correct version and repository)

docker container run -it --mount src=osp-stack-1_osp-git,dst=/git -u root osp-configuration-dispatcher:<version> /bin/bash

If you don’t have access to the host, but only to the portainer, use the service creation tabs and set the command to sleep 7200 to have time to debug the system.

2. Restore GIT state

Check the status of git :

git status

The branch should be master, with no changes. If there are changes, undo them (make sure you have a local copy of your work, and save the GIT before the changes).

git reset --hard
git checkout master

Index corruption : If the index is corrupted, delete it and reinsert the files if necessary. Beware that this type of recovery may create an out-of-sequence state with your local working copy. In this case, it is easier to re-clone the git and push your change manually.

3. Re-enable osp-configuration-dispatcher

Log in to the portainer, in the stack tab, in the stack file of osp-stack-1 and re-apply.

Slow alarms

The MongoDB log might contain information about some queries that are slow. You can find them by searching for Slow query.

Note

By default, each query taking more than 100ms is considered as slow. This can be changed by running the following command:

db.runCommand({profile: 0, slowms: 1000})

The slow query log is a json string that have the following format.

  1{
  2  "t": {
  3    "$date": "2022-06-01T12:17:01.307+00:00"
  4  },
  5  "s": "I",
  6  "c": "COMMAND",
  7  "id": 51803,
  8  "ctx": "conn6622",
  9  "msg": "Slow query",
 10  "attr": {
 11    "type": "command",
 12    "ns": "alarms.deduplicated",
 13    "command": {
 14      "find": "deduplicated",
 15      "filter": {
 16        "$and": [
 17          {
 18            "additionalData.maintenance": {
 19              "$exists": true
 20            }
 21          },
 22          {
 23            "$or": [
 24              {
 25                "additionalData.maintenance": {
 26                  "$ne": "Normal"
 27                }
 28              },
 29              {
 30                "$and": [
 31                  {
 32                    "summary": "Site under maintenance"
 33                  },
 34                  {
 35                    "severity": {
 36                      "$ne": 0
 37                    }
 38                  }
 39                ]
 40              },
 41              {
 42                "$and": [
 43                  {
 44                    "summary": "Device under maintenance"
 45                  },
 46                  {
 47                    "severity": {
 48                      "$ne": 0
 49                    }
 50                  }
 51                ]
 52              }
 53            ]
 54          }
 55        ]
 56      },
 57      "batchSize": 2147483647,
 58      "$db": "alarms",
 59      "$clusterTime": {
 60        "clusterTime": {
 61          "$timestamp": {
 62            "t": 1654085815,
 63            "i": 58
 64          }
 65        },
 66        "signature": {
 67          "hash": {
 68            "$binary": {
 69              "base64": "AAAAAAAAAAAAAAAAAAAAAAAAAAA=",
 70              "subType": "0"
 71            }
 72          },
 73          "keyId": 0
 74        }
 75      },
 76      "lsid": {
 77        "id": {
 78          "$uuid": "436af056-e784-44ea-b249-3391ec708791"
 79        }
 80      }
 81    },
 82    "planSummary": "IXSCAN { summary: 1 }, IXSCAN { summary: 1 }, IXSCAN { additionalData.maintenance: 1 }",
 83    "keysExamined": 140929,
 84    "docsExamined": 140928,
 85    "cursorExhausted": true,
 86    "numYields": 140,
 87    "nreturned": 0,
 88    "queryHash": "43D1A392",
 89    "planCacheKey": "775884E3",
 90    "reslen": 233,
 91    "locks": {
 92      "ReplicationStateTransition": {
 93        "acquireCount": {
 94          "w": 141
 95        }
 96      },
 97      "Global": {
 98        "acquireCount": {
 99          "r": 141
100        }
101      },
102      "Database": {
103        "acquireCount": {
104          "r": 141
105        }
106      },
107      "Collection": {
108        "acquireCount": {
109          "r": 141
110        }
111      },
112      "Mutex": {
113        "acquireCount": {
114          "r": 1
115        }
116      }
117    },
118    "storage": {},
119    "protocol": "op_msg",
120    "durationMillis": 217
121  }
122}

On the previous log extract, we have the following field than help to determinate the impact of the query.

Field

Description

Line

durationMillis

The duration of the request.

120

planSummary

The indicate which field are scanned by MongoDB. (IXSCAN show that an index was used, COLLSCAN show that no index was used)

82

keysExamined

The number of indexes examined.

83

docsExamined

The number of documents examined.

84

command

Show the command executed.

13

On the log provided by Mongo, we can see the docsExamined field is not 0 which implies that MongoDB needed to scan the document (read the db content) to filter it. The planSummary field indicates which part of the document were scanned.

On this specific case, MongoDB needed to check the equality for the summary and additionalData.maintenance field with a string (See line 26, 32 and 44). The index exist for both field as shown by the IXSCAN on the planSummary, but by default the index are not handling the text field (It only check the existence of the field).

To improve the situation, you can add the following index to index a text field and improve the equality check between string.

{
  "name": "textual",
  "index": {
    "additionalData.maintenance": "text",
    "summary": "text"
  }
}

To the deduplicatedIndexes list on the module.alarms file.

Stress tests

Disclaimer

While designed to be as efficient and lightweight as possible, OnSphere is still a complex system. It can run a lot of operations at the same time and depending on the amount of said operations, their nature and complexity, the system can appear a bit slow.

It is important to be able to identify where this slowing down comes from to have a chance of addressing it. Being able to identify bottleneck requires a deep understanding of OnSphere internal working.

No two system are identical and therefore it is near impossible to provide a foolproof one-size-fits-all solution to stress test a system and measure its behavior.

This being said, there are obviously some considerations which should always be kept in mind when trying to identify the source of slowdowns:

  • network communication

  • disk writing

  • computational loop

The goal of this document is to guide you through a simple example showing the kind of reasoning needed to diagnostic performances issue so that you can assess your own system and its configuration.

Test example description

Test setup example:

We are going to use a configuration running some plugins in addition to (always present) core modules:

The Waveforms plugin will be used to generate a flow of new values which the Scripts plugin will subscribe on. Upon reception of those new values, it will request the Alarms plugin to create alarms. To only generate a specific number of alarms, the Variables plugin will be used.

Note

The following schema is an oversimplification of the actual processing taking place through the script. Its purposes is to help gain a quick understanding of what we are trying to achieve without dwelling on the implementation details. A more complete explanation is given in the Test example explanation.

@startuml
skinparam backgroundColor transparent

participant "Waveforms plugin" as waveforms
participant "Variables plugin" as variables
participant "Alarms plugin" as alarms
participant "Scripts plugin" as scripts

waveforms -> scripts : Publish new value

loop til specified number of alarms is not reached

activate scripts
scripts -> scripts : Run script logic

scripts -> variables : Query variable content (specified number of alarm already reached)
activate variables
variables --> scripts : Publish variable content
deactivate variables

scripts -> scripts : check specified number of alarms has already been reached

alt specified number of alarms is reached

scripts -> scripts : nothing to be done, tests are finished we exit the loop

else specified number of alarms still not reached

scripts -> alarms : Request alarm insertion
deactivate scripts

activate alarms
deactivate alarms
alarms -> alarms : Insert alarm in Database
end

end

@enduml

Test example explanation

Note

The idea behind this test is to plot the elapsed time between consecutive alarms insertions. Values triggering those alarms insertions are periodic which means we should be able to find this period in the timestamp of alarms inserted in the database.

The Waveforms plugin periodically generates a value whose content is gradually incremented from 0 to a given maximum. Once this maximum is reached the value is reset to 0 before being incremented gradually again, then reset to 0 and so on, creating a ramp signal. For more information on the waveforms plugin capacity.

The Script plugin will react upon values published by the Waveforms plugin. For each value it will request the Alarms plugin to insert alarms with a `summary` based on the content of the value which triggered its insertion.

Among the 4 collections used by the Alarms plugin, we are going to focus on the history. To ease its usage in our test results analysis, we would prefer if it only contained alarms matching one ramp period. To achieve this we will use the Variables plugin. It will store one value indicating we started a new ramp and another indicating we already completed a full ramp (meaning no more alarms creation should be requested so that history collection only contains alarms for one ramp).

The script processing (in root/scripts/generate-alarms/generate.js) has been heavily commented to help better understand it.

Run the test example configuration

Note

For this test to make any sens, it is recommended you run it on a freshly deployed stack, meaning a stack without any prior configuration.

You can deploy the test example configuration by cloning the stress-test-example branch.

  1. Make sure the configuration you are working on is up to date

git pull
  1. Checkout resources made available to you through the git example-stress-test branch

git checkout origin/example-stress-test -- .
  1. Validate checkout resources with a proper message :

git commmit -m "Add resources for self stress test"
  1. Double check the configuration you are working on is up to date

git pull
  1. Deploy the configuration including the checkout resources for self stress test

git push

Extract the test result

  1. Connect on MongoDB docker

docker container ls
  • List the docker running on your stack

docker container ls
  • Note the Mongo DB container name (MONGO_DB_CONTAINER_NAME)

  • Connect on the docker

docker container exec -it MONGO_DB_CONTAINER_NAME /bin/bash
  1. Dump the alarms history collection

Note

The test can take some time to run. If you did not modify the script or the waveform plugin configuration it should not take more than 5 minutes for it to finish once you pushed the resources in the stress-test-example branch. If you changed the waveform plugin configuration it can take a while longer depending on the values used. To make sure tests are done running, check the script container plugin logs. It should indicates : “STOP CREATING ALARMS !!!!”.

Once you are sure tests are finished, you can dump the history collection with the following:

mongoexport -d alarms -c history -o alarms-history.json
  1. Download the dumped alarms history (locally, on your computer)

docker container cp MONGO_DB_CONTAINER_NAME:/alarms-history.json ./

Manipulation on test result to make them fit for analysis

  1. Make the result file content a json array:

When specifying to mongoexport we want a json outpout (alarms-history .json), mongoexport creates a file containing the alarms in the json format. While the alarms themselves are serialized in a json format, the file itself is not. To make it a proper json file, the file content must be transformed into a json array. For this we only need to add bracket [] around the entries, one a the beginning and another at the end. Then, every lines except the last must be appended with a comma. This can be done with the text editor of your choice.

  1. Keep only alarms fields we are interested in:

To manipulate the freshly created json file we will use a command line tool: jq. (while we explain here how to use jq to do what we need, you can obviously use any tool you want to do the same)

The only alarms fields we are interested in are summary and timestamp.

jq allows you to do so by running the following command:

cat alarms-history.json | jq '[.[] | {timestamp: .timestamp, summary: .summary}]' > alarms-filtered-field.json
  1. Transform je json file into a csv file

To be able to manipulate our data we are going to transform the json file into a csv file which any basic spreadsheet program can understand. To do so we will use a command line tool: dasel. (while we explain here how to use dasel to do what we need, you can obviously use any tool you want to do the same)

dasel -r json -w csv < alarms-filtered-field.json > alarms-filtered-field.csv
  1. Compute elasped time

The generated CSV file can be opened with any spreadsheet program. It contains:

  • 1 increasing number X after the testSummary: text in the form testSummary:X. This is the number generated by the Waveforms plugin and it has been embedded in the summary so that you can make sure entries are properly ordered (and order them if not, any basic spreadsheet program allows this)

  • 1 timestamp which we will call TPwaveforms after the testSummary:X, text in the form testSummary:X,TPwaveforms. This timestamp matches the time the value X was generated by the Waveforms plugin

  • 1 timestamp which we will call TPscripts in its own column. This timestamp was generated by the Scripts plugin when it called the alarm.create method

Create 2 new columns, one for the elapsed time between values generated by the Waveforms plugin, another for the elapsed time between requests to create alarms by the Scripts plugin.

Note

Timestamp inserted by the Scripts plugin is in nanoseconds, therefore the elapsed times computed from it can be divided by 1000000 to get a value in ms which will make more sens.

Test result analysis

Run on our machine, the plotted elapsed time give the following :

../../_images/plot-both-timestamp-on-2400-val-over-1-min-25-ms-spaced.png

We can see the Waveforms plugin generated its values with a perfect 25ms period. The Scripts plugin called the alarm.create with an average interval quite similar but we can see some peaks here and there. The average time between the moment the value is generated by the Waveforms plugin and the moment the Scripts plugin call the alarm.create method is of 2ms.

When analyzing those results it is important to keep in mind:

  • Stress is generated internally (through the Waveforms plugin): resources which could have been used to handle stress were occupied generating it

  • All plugins were running on the same host: “best” case scenario since no external network communication was needed

  • The alarm mechanism used for alarm insertion is the “Alarm creation request” one: alarms created are never processed by the pre-insertion scripts, meaning less processing required (see module alarms) for more information on alarms insertion mechanisms.

But more importantly, for this very specific test, remember that this test result is a collaboration between multiple very different plugins with very different mechanism and that any pattern identified in the result can originate from any of the involved plugins.

To go further

  • Run this test with different values (changes needed in the Waveforms plugin configuration as well as in the generate.js script)

  • Test various alarms insertion mechanism (from script plugin, alarm.insert vs alarm.create, or test using snmp trap plugin)

  • Isolate mechanisms you are testing

  • Run this test while also running the stress binary

Initial deploy of the dispatcher fail

During the initial deploy, the dispatcher restart in a loop with an error message like:

Stack with name [<your stack name>] not found.

This indicate that the dispatcher was not able to find the stack on portainer.

If the stack exist on portainer and the edition of the stack (editor to modify the compose file) is not available, this means that the stack was not deployed with portainer.

For portainer to be able to edit a stack, it must have create it. Otherwise, it doesn’t have the knowledge of the compose file used.

To fix it, remove the stack created and redeploy it with portainer.

See the installation chapter, for more information.