Skip to content
Closed
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
35 changes: 35 additions & 0 deletions backend/src/server/services/definitions/denodo.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
use crate::server::hosts::r#impl::ports::PortBase;
use crate::server::services::definitions::{ServiceDefinitionFactory, create_service};
use crate::server::services::r#impl::categories::ServiceCategory;
use crate::server::services::r#impl::definitions::ServiceDefinition;
use crate::server::services::r#impl::patterns::Pattern;

#[derive(Default, Clone, Eq, PartialEq, Hash)]
pub struct Denodo;

impl ServiceDefinition for Denodo {
fn name(&self) -> &'static str {
"Denodo"
}
fn description(&self) -> &'static str {
"Data virtualization"
}
fn category(&self) -> ServiceCategory {
ServiceCategory::Database
}

fn discovery_pattern(&self) -> Pattern<'_> {
Pattern::AllOf(vec![
Pattern::Port(PortBase::new_tcp(9990)),
Pattern::Port(PortBase::new_tcp(9996)),
Pattern::Port(PortBase::new_tcp(9090)),
Pattern::Port(PortBase::new_tcp(9099)),
])
}

fn logo_url(&self) -> &'static str {
"https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/denodo.svg"
}
}

inventory::submit!(ServiceDefinitionFactory::new(create_service::<Denodo>));
1 change: 1 addition & 0 deletions backend/src/server/services/definitions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ pub mod rancher;
// Database
pub mod cassandra;
pub mod couchdb;
pub mod denodo;
pub mod elasticsearch;
pub mod influxdb;
pub mod mariadb;
Expand Down
6 changes: 6 additions & 0 deletions docs/SERVICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,12 @@ This document lists all services that NetVisor can automatically discover and id
<td style="padding: 12px;"><code style="background-color: #374151; color: #e5e7eb; padding: 2px 6px; border-radius: 3px; font-size: 0.875em;">Endpoint response body from <ip>:5984/ contains "couchdb"</code></td>
</tr>
<tr style="border-bottom: 1px solid #374151;">
<td align="center" style="padding: 12px; color: #d1d5db;"><img src="https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/denodo.svg" alt="CouchDB" width="32" height="32" /></td>
<td style="padding: 12px; color: #f3f4f6; font-weight: 500;">Denodo</td>
<td style="padding: 12px; color: #d1d5db;">Data Virtualization</td>
<td style="padding: 12px;"><code style="background-color: #374151; color: #e5e7eb; padding: 2px 6px; border-radius: 3px; font-size: 0.875em;">Any of: (9999/tcp (VDP) is open, 9996/tcp (ODBC) is open, 9090/tcp (HTTP) is open, 9099/tcp (Web container) is open)</code></td>
</tr>
<tr style="border-bottom: 1px solid #374151;">
<td align="center" style="padding: 12px; color: #d1d5db;"><img src="https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/elasticsearch.svg" alt="Elasticsearch" width="32" height="32" /></td>
<td style="padding: 12px; color: #f3f4f6; font-weight: 500;">Elasticsearch</td>
<td style="padding: 12px; color: #d1d5db;">Distributed search and analytics engine</td>
Expand Down
14 changes: 0 additions & 14 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading