Skip to content

Commit 59c68c4

Browse files
Akash VermaAkash Verma
authored andcommitted
Fix(ui): Added SSRS logo and md file
1 parent 80a525b commit 59c68c4

3 files changed

Lines changed: 68 additions & 0 deletions

File tree

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# SSRS
2+
3+
In this section, we provide guides and references to use the SQL Server Reporting Services (SSRS) connector.
4+
5+
## Requirements
6+
7+
To access the SSRS REST API and import reports from SQL Server Reporting Services into OpenMetadata, you need a service account with appropriate permissions on your SSRS instance.
8+
9+
- The user must have at least **Browser** role on the SSRS portal to list reports and folders.
10+
- **Content Manager** role is recommended for full metadata extraction including data sources.
11+
- SSRS REST API v2.0 must be enabled on the report server (available in SSRS 2017 and later).
12+
13+
You can find further information on the SSRS connector in the <a href="https://docs.open-metadata.org/connectors/dashboard/ssrs" target="_blank">docs</a>.
14+
15+
## Connection Details
16+
17+
$$section
18+
### Host and Port $(id="hostPort")
19+
20+
The base URL of your SSRS Report Server instance.
21+
22+
$$section
23+
### Username $(id="username")
24+
25+
Username to connect to SSRS. This should be a Windows domain account or a local account with sufficient permissions on the report server.
26+
27+
**Format:** `DOMAIN\username` for domain accounts, or just `username` for local accounts.
28+
$$
29+
30+
$$section
31+
### Password $(id="password")
32+
33+
Password of the user account used to connect to SSRS.
34+
$$
35+
36+
$$section
37+
### Verify SSL $(id="verifySSL")
38+
39+
Enable or disable SSL certificate verification when connecting to SSRS.
40+
41+
Possible values:
42+
- `validate`: Validate the certificate using the public certificate (recommended for production).
43+
- `ignore`: Ignore certificate validation (use only for development/testing).
44+
- `no-ssl`: SSL validation is not needed (default, for HTTP connections).
45+
$$
46+
47+
$$section
48+
### SSL Config $(id="sslConfig")
49+
50+
Client SSL configuration in case you are connecting to an SSRS instance with SSL enabled.
51+
$$
52+
53+
$$section
54+
### SSL CA $(id="caCertificate")
55+
The CA certificate used for SSL validation.
56+
$$
57+
58+
$$section
59+
### SSL Certificate $(id="sslCertificate")
60+
The SSL certificate used for client authentication.
61+
$$
62+
63+
$$section
64+
### SSL Key $(id="sslKey")
65+
The private key associated with the SSL certificate.
66+
$$
46.4 KB
Loading

openmetadata-ui/src/main/resources/ui/src/utils/ServiceIconUtils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ import sigma from '../assets/img/service-icon-sigma.png';
7979
import superset from '../assets/img/service-icon-superset.png';
8080
import tableau from '../assets/img/service-icon-tableau.png';
8181
import hex from '../assets/svg/service-icon-hex.svg';
82+
import ssrs from '../assets/img/service-icon-ssrs.png';
8283

8384
// Pipeline services
8485
import airbyte from '../assets/img/Airbyte.png';
@@ -203,6 +204,7 @@ const SERVICE_ICON_LOADERS: Record<string, string> = {
203204
microstrategy: microstrategy,
204205
grafana: grafana,
205206
hex: hex,
207+
ssrs: ssrs,
206208
customdashboard: dashboarddefault,
207209

208210
// Pipeline services

0 commit comments

Comments
 (0)