Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #291 - Update documentation package path naming #295

Merged
merged 2 commits into from
Sep 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/databases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ AIT Database API

AIT provides a general database abstraction class on top of which custom implementations can be written. AIT comes packaged with abstractions for InfluxDB (:class:`ait.core.db.InfluxDBBackend`)and SQLite (:class:`ait.core.db.SQLiteBackend`). You can inherit from the abstract base class :class:`ait.core.db.GenericBackend` and implement your own database abstraction.

The Data Archive Plugin, which is provided as part of AIT-Core at :class:`ait.core.server.plugin.DataArchive`, uses this database backend for archiving incoming data. It uses the :class:`ait.core.db.InfluxDBBackend` by default, but a custom database can be implemented and used instead by specifying the ``datastore`` parameter in the plugin's configuration.
The Data Archive Plugin, which is provided as part of AIT-Core at :class:`ait.core.server.plugins.DataArchive`, uses this database backend for archiving incoming data. It uses the :class:`ait.core.db.InfluxDBBackend` by default, but a custom database can be implemented and used instead by specifying the ``datastore`` parameter in the plugin's configuration.
4 changes: 2 additions & 2 deletions doc/source/server_architecture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Example configuration:
name: telem_testbed_stream
input: telem_port_in_stream
handlers:
- name: ait.server.handler.PacketHandler
- name: ait.server.handlers.PacketHandler
packet: 1553_HS_Packet

outbound-streams:
Expand Down Expand Up @@ -142,7 +142,7 @@ Here is an example of how the **server** portion of **config.yaml** should look:
name: telem_testbed_stream
input: telem_port_in_stream
handlers:
- name: ait.server.handler.PacketHandler
- name: ait.server.handlers.PacketHandler
packet: 1553_HS_Packet

outbound-streams:
Expand Down