All Projects → GENIVI → Dlt Daemon

GENIVI / Dlt Daemon

Licence: other
Diagnostic Log and Trace.

Projects that are alternatives of or similar to Dlt Daemon

ecu-simulator
OBD-II ECU Simulator
Stars: ✭ 24 (-80.17%)
Mutual labels:  diagnostics
Androbd
Android OBD diagnostics with any ELM327 adapter
Stars: ✭ 573 (+373.55%)
Mutual labels:  diagnostics
Postsharp.samples
PostSharp Samples
Stars: ✭ 84 (-30.58%)
Mutual labels:  diagnostics
Dt
DNS tool - display information about your domain
Stars: ✭ 313 (+158.68%)
Mutual labels:  diagnostics
Gops
A tool to list and diagnose Go processes currently running on your system
Stars: ✭ 5,404 (+4366.12%)
Mutual labels:  diagnostics
Bugsnag Node
[DEPRECATED] Please upgrade to our Universal JS notifier "@bugsnag/js" • https://github.com/bugsnag/bugsnag-js
Stars: ✭ 48 (-60.33%)
Mutual labels:  diagnostics
Wells
A lightweight diagnostics report submission system
Stars: ✭ 26 (-78.51%)
Mutual labels:  diagnostics
Tracing
Application level tracing for Rust.
Stars: ✭ 1,294 (+969.42%)
Mutual labels:  diagnostics
Wtrace
Command line tracing tool for Windows, based on ETW.
Stars: ✭ 563 (+365.29%)
Mutual labels:  diagnostics
Mayday
A diagnostics tool for capturing system state.
Stars: ✭ 78 (-35.54%)
Mutual labels:  diagnostics
Clangkit
ClangKit provides an Objective-C frontend to LibClang. Source tokenization, diagnostics and fix-its are actually implemented.
Stars: ✭ 330 (+172.73%)
Mutual labels:  diagnostics
Terraform Lsp
Language Server Protocol for Terraform
Stars: ✭ 469 (+287.6%)
Mutual labels:  diagnostics
Poke
A powerful reflection module for powershell.
Stars: ✭ 66 (-45.45%)
Mutual labels:  diagnostics
Home
Project Glimpse: Node Edition - Spend less time debugging and more time developing.
Stars: ✭ 260 (+114.88%)
Mutual labels:  diagnostics
A11y.css
This CSS file intends to warn developers about possible risks and mistakes that exist in HTML code. It can also be used to roughly evaluate a site's quality by simply including it as an external stylesheet.
Stars: ✭ 1,277 (+955.37%)
Mutual labels:  diagnostics
HTTP-Connectivity-Tester
Aids in discovering HTTP and HTTPS connectivity issues. #nsacyber
Stars: ✭ 79 (-34.71%)
Mutual labels:  diagnostics
Tofu
Project for an open-source python library for synthetic diagnostics and tomography for Fusion devices
Stars: ✭ 35 (-71.07%)
Mutual labels:  diagnostics
Roslynpad
A cross-platform C# editor based on Roslyn and AvalonEdit
Stars: ✭ 1,310 (+982.64%)
Mutual labels:  diagnostics
Dotnet Netrace
Collects network traces of .NET applications.
Stars: ✭ 88 (-27.27%)
Mutual labels:  diagnostics
Diat
A CLI tool to help with diagnosing Node.js processes basing on inspector.
Stars: ✭ 67 (-44.63%)
Mutual labels:  diagnostics

Diagnostic Log and Trace

Build and Test status: Build Status Alerts: Total alerts Code quality: Language grade: C/C++

Diagnostic Log and Trace

Welcome to GENIVI Diagnostic Log and Trace (DLT). If you are familiar with DLT and want to know what's new, check the Release Notes.

New to DLT? Great! Welcome aboard. We prepared a brief overview for you as well as some information on how to get started immediately. After you made yourself familiar with the basic mechanics of DLT, you can learn more about advanced concepts and features.

Overview

GENIVI DLT provides a log and trace interface, based on the standardised protocol specified in the AUTOSAR standard 4.0 DLT. It is used by other GENIVI components but can serve as logging framework for other applications without relation to GENIVI.

The most important terms and parts are depicted in the following figure. Please refer to Glossary for a full overview over DLT-specific terms.

alt text

  • A DLT User essentially is an application that serves its respective (not DLT-related) purpose and produces DLT log messages. It utilizes the DLT library to craft and transmit these messages.
  • The DLT Library provides a convenient API to DLT Users (i.e. applications) to create DLT log messages and hand them over to the DLT Daemon. If the latter is not avilable, the library will cache the messages in a ring buffer so they don't get lost immediately.
  • The DLT Daemon is the DLT communication interface of an ECU. It collects and buffers log messages from one or more DLT users running on the ECU and provides them to DLT clients upon their request. The daemon also accepts control messages from the clients to adjust the daemon's or the aplications' behaviour.
  • A DLT Client receives and consumes the log messages from DLT Users by fetching them from DLT Daemons. It may also issue control messages to control the behaviour of a DLT Daemon or its connected DLT Users. A DLT client can even transmit user-defined data to a DLT User through so-calles injection messages.

This is only the simplest of all use cases that you will further pursue in the Get Started section. Once you want to learn more, you will find that the repository contains advanced features utilizing several adaptors and console utilities as well as test applications.

Get Started

In this section, you can learn how to build and install DLT. Then you can choose to run a DLT demo setup or to start by developing your own DLT-featured application.

Build and install

The following packages need to be installed in order to be able to build and install DLT daemon:

  • cmake
  • zlib
  • dbus

On Ubuntu those dependencies can be installed with the following command:

sudo apt-get install cmake zlib1g-dev libdbus-glib-1-dev

Then proceed to download DLT if you haven't already. We recommend cloning the repository, but downloading and extracting a zip-archive is fine as well.

cd /path/to/workspace
git clone https://github.com/GENIVI/dlt-daemon.git

To build and install the DLT daemon, follow these steps:

cd /path/to/workspace/dlt-daemon
mkdir build
cd build
cmake ..
make
optional: sudo make install
optional: sudo ldconfig # in case you executed make install

CMake accepts a plethora of build options to configure the build to suit your needs.

Run a DLT demo

In case you haven't had a look at the brief overview, now would be the perfect occasion to learn about the most important terms and to get an idea where data is buffered. Then go on with our guide on how to set up a DLT demo setup.

Develop your own DLT-featured application

Now that you have seen DLT in action, you probably want to develop your own applications using DLT. You will find everything you need in our "DLT for Application Developers" guide.

A hint: If you want to read the API documentation, you have to build it locally at the moment. The API documentation is generated with doxygen. To build it, run cmake with the -DWITH_DOC=ON option, e.g.:

mkdir build
cd build
cmake -DWITH_DOC=ON ..
make doc

Build DLT debian package

To build the DLT debian package for your own purpose, follow these steps:

mkdir build
cd build
cmake ..
cpack

Learn more

Once you got your feet wet with developing your first application, you might want to learn more. Find out about DLT's advanced topics, learn how to configure, control and interface DLT or study its internals by checking out the design specifications.

Advanced Topics

The GENIVI DLT implementation is capable of by far more than to "just" send log message. You will get an overview of advanced features in this section. Follow the links to learn more about the respective concept.

Document Description
Build Options The CMake build system provides a large amount of build options. They let you turn on or off certain features and provide alternative implementation details.
LogStorage The DLT Daemon as well as the DLT libary provide buffers for caching log data during absence of a consumer. However, some use cases require to write large amounts of log message e.g. to mass storages for long term storage or because no other means of exfiltrating the log data is available.
MultiNode A DLT Daemon can run as a gateway to connect multiple passive nodes. Each passive node has its owns DLT Applications and runs its own daemon. The gateway node connects to all of them, collects the logs and routes them to the DLT Client.
Extended Network Trace Normal DLT messages are limited in size. To overcome this limitation the feature network trace message allows the user to send or truncate messages which would not fit into a normal DLT message.
DLT Filetransfer Although not originally designed for this, files can be transmitted over DLT. A corresponding DLT Client (e.g. DLT Viewer) can receive and decode them accordingly.
DLT KPI Valueable status information about the monitored system can be read via DLT as well. The information under /proc of the target system is at your hands easily.
DLT Core Dump Handler This tool collects and extracts debug information then utilize DLT Filetransfer to transfer the information to client.

Configure, Control and Interface

There is still lots to discover about DLT. If you turn on the generation of manpages with the cmake option -DWITH_MAN=ON you can learn how to configure DLT to exactly suit your needs, how to control the behvaiour of running instances and how to interface DLT with existing system through provided adaptors.

The man pages are generated with pandoc.

Build manpages (initally or because something changed) with e.g.

mkdir build
cd build
cmake -DWITH_MAN=ON ..
make generate_man
Document Description
Configuration
dlt-daemon(1) How to start DLT-Daemon
dlt.conf(5) Configure the DLT framework to reflect your use case
Control running instances of DLT
dlt-receive(1) Receive DLT messages from daemon and print or store the log messages.
dlt-control(1) Send control messages to daemon.
dlt-logstorage-ctrl(1) Send a trigger to daemon to connect/disconnect certain logstorage device, or send a demand to sync data the internal buffer into logstorage file.
dlt-passive-node-ctrl(1) Send a trigger to daemon to connect/disconnect passive daemon.
Interfacing DLT
dlt-system(1) DLT-System provides a way to directly access system logs via DLT
dlt-system.conf(5) Configure DLT-System
dlt-adaptor-stdin(1) Adaptor for forwarding input from stdin to daemon.
dlt-adaptor-udp(1) Adaptor for forwarding received UDP messages to daemon.
dlt-convert(1) Convert DLT files into human readable format.
dlt-sortbytimestamp(1) Read log messages from DLT file, sort by timestamp, and store them again.
dlt-qnx-system(1) Access system logs in QNX with DLT

Contribution

Start working, best practice is to commit smaller, compilable pieces during the work that makes it easier to handle later on.

If you want to commit your changes, create a Pull Request in Github. Please make sure to follow the Rules for commit messages

Coding Rules

Before contributing code, run uncrustify to harmonize code style.

Configuration: util/uncrustify.cfg uncrustify version: 0.68_f

Known issues

List of open issues can be found on Github

  • DLT library: Usage of dlt_user_log_write_float64() and DLT_FLOAT64() leads to "Illegal instruction (core dumped)" on ARM target.
  • DLT library: Nested calls to DLT_LOG_ ... are not supported, and will lead to a deadlock.
  • For Non linux platforms [eg: QNX] IPC supported is UNIX_SOCKET. For Linux Platforms both IPC FIFO and UNIX_SOCKET are supported

Software/Hardware

Developed and tested with Ubuntu Linux 16 64-bit / Intel PC

License

Full information on the license for this software is available in the "LICENSE" file. Full information on the license for the cityhash code is available in "COPYING" file in src/core_dump_handler/cityhash_c.

Mailinglist

https://lists.genivi.org/mailman/listinfo/genivi-diagnostic-log-and-trace_lists.genivi.org

Contact

Saya Sugiura [email protected], Bui Nguyen Quoc, Thanh [email protected]

alt text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].