Skip to content

Commit e761352

Browse files
authored
Merge pull request #724 from BlakeSLC/main
Add Skyline Station Montior connector help
2 parents cefb7c1 + af1ee02 commit e761352

4 files changed

+131
-1
lines changed

connector/doc/Control_By_Web_X-600M.md

+2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,7 @@ The **Control By Web X-600M** is a multifunction web-enabled industrial I/O cont
3232

3333
**Benefit**: Enhances efficiency, reduces manual intervention, and minimizes the risk of human error.
3434

35+
## Technical Information
36+
3537
> [!NOTE]
3638
> For detailed technical information, refer to our [technical documentation](xref:Connector_help_Control_By_Web_X-600M_Technical).
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
uid: Connector_help_Skyline_Station_Monitor
3+
---
4+
5+
# Skyline Station Monitor
6+
7+
The **Skyline Station Monitor** standardizes and simplifies the collection of data for monitoring transmitters and related equipment (tower lights, generators, transfer switches, etc.) across multiple stations/transmission sites. Utilizing real-time monitoring and automation, this connector serves as a mediation layer, gathering data from various collectors and storing it according to predefined parameters. This ensures consistent reporting and display in low-code apps and dashboards. Additionally, the collector supports the collection of non-standard (custom) parameters for stations that need to track data from elements that users might not have permission to access. It also provides the capability to define custom actions.
8+
9+
## Key Features
10+
11+
- Mediates common transmission parameters at regular intervals into standard parameters allowing for standardized reporting.
12+
- Can be extended to monitor additional, custom values from specified elements for data aggregation beyond the standard complement of included parameters.
13+
- Allows you to define a custom polling frequency for standard and custom parameters.
14+
- Polls both the value and alarm state from the source element to allow for passthrough of existing alarm templates.
15+
- Provides historical polling timestamps for analysis.
16+
- Can help isolate users from source elements by only allowing access to the Station Monitor element.
17+
- FCC Licensed Power calculations allow stations to monitor their compliance with transmission output power limitations and provide warnings if the power output exceeds FCC tolerances.
18+
19+
## Use Cases
20+
21+
### Standardized Monitoring of Multiple Transmission Sites
22+
23+
**Challenge**: Unless each transmission site has the exact same complement of equipment, groups that need to monitor multiple transmission sites find that each site needs to be treated as a one-off. This requires setting up custom alarming, custom trending, custom reporting, and custom dashboards for each site, which can be time-consuming and costly at scale.
24+
25+
**Solution**: The **Skyline Station Monitor** provides a way to collect commonly used monitoring and reporting values into a standard footprint.
26+
27+
**Benefit**: There are multiple benefits to this approach that can greatly reduce the admin overhead of managing a large number of sites. Some of these benefits include:
28+
29+
- Standardized alarm and trend templates.
30+
- The ability to reuse reports and low-code apps across sites.
31+
- Users can be provided access to targeted information about a site without getting full access to the source elements.
32+
33+
### FCC Reporting Requirements
34+
35+
**Challenge**: Stations have an obligation to report certain metrics to the FCC related to their transmission towers, including power outputs and tower light status.
36+
37+
**Solution**: By using the **Skyline Station Monitor**, this information is easy to collect in a standardized way.
38+
39+
**Benefit**: By standardizing the collection, monitoring, and trending of key metrics required by the FCC, report generation is a breeze and easy to implement across your entire organization, reducing time to deploy and the costs to manage changes needed down the road.
40+
41+
## Technical Information
42+
43+
> [!NOTE]
44+
> For detailed technical information, refer to our [technical documentation](xref:Connector_help_Skyline_Station_Monitor_Technical).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
uid: Connector_help_Skyline_Station_Monitor_Technical
3+
---
4+
5+
# Skyline Station Monitor
6+
7+
The Skyline Station Monitor connection is designed to facilitate real-time data collection, parameter tracking, and automated actions for generic Apps for quick deployment of new stations.
8+
9+
## Configuration
10+
11+
### Connections
12+
13+
#### Virtual connection
14+
15+
This connector uses a virtual connection and does not require any input during element creation.
16+
17+
## Usage
18+
19+
### Standard Monitoring
20+
21+
Standard monitoring is consistent across all stations. It must be routed to the predefined parameters that hold information for each KPI, meaning that rows cannot be added or removed. The collected data is then displayed on the Standard Monitoring page.
22+
23+
### Custom Monitoring
24+
25+
Custom monitoring allows for flexible mapping, enabling users to define their own parameters to retrieve. Unlike with standard monitoring, users can add or remove rows as needed to accommodate specific monitoring requirements that are not predefined within the standard framework.
26+
27+
### Data Polling Process
28+
29+
1. The system reads the **Element ID** to identify the device and component.
30+
1. It retrieves the specified **Parameter ID** value at the configured polling frequency.
31+
1. If a **Row Key** is provided, it accesses the corresponding row in a table.
32+
1. The collected values are stored, including timestamps, alarm states, and results.
33+
1. Errors are logged if polling fails.
34+
35+
### Element ID Format
36+
37+
Each monitored element is identified using a **DMAID/ElementID** format:
38+
39+
- **DMAID**: A unique identifier for the monitored device or system.
40+
- **ElementID**: The specific component within that system being monitored.
41+
42+
For example:
43+
44+
```
45+
123/456
46+
```
47+
48+
### Parameter ID
49+
50+
The **Parameter ID** is a numerical identifier representing the specific attribute being monitored within an element. It defines what data will be polled from the specified **Element ID**.
51+
52+
- Each parameter ID corresponds to a predefined metric (e.g. CPU usage, voltage, temperature).
53+
- The polling frequency determines how often the parameter value is retrieved.
54+
55+
For example:
56+
57+
```
58+
Element ID: 123/456
59+
Parameter ID: 789
60+
```
61+
62+
In the example above, **parameter 789** is being polled from **Element 123/456**.
63+
64+
### Using a Row Key for Table-Based Parameters
65+
66+
If a **Row Key** is specified, the system assumes the parameter belongs to a table structure within the element. In this case:
67+
68+
- The **Row Key** determines the specific entry within the table (the primary key).
69+
- The **Parameter ID** defines the column ID to be retrieved from that row.
70+
71+
For example:
72+
73+
```
74+
Element ID: 123/456
75+
Parameter ID: 789
76+
Row Key: analog1
77+
```
78+
79+
The setup from the example above retrieves the **789** parameter from the **analog1** row within **Element 123/456**.

connector/toc.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -2332,7 +2332,7 @@
23322332
- name: Control By Web X-600M
23332333
topicUid: Connector_help_Control_By_Web_X-600M
23342334
items:
2335-
- name: Connector name Technical
2335+
- name: Control By Web X-600M Technical
23362336
topicUid: Connector_help_Control_By_Web_X-600M_Technical
23372337
- name: Control By Web X332
23382338
topicUid: Connector_help_Control_By_Web_X332
@@ -8231,6 +8231,11 @@
82318231
topicUid: Connector_help_Skyline_SRM_Service_Manager
82328232
- name: Skyline SSL Certificate Monitor
82338233
topicUid: Connector_help_Skyline_SSL_Certificate_Monitor
8234+
- name: Skyline Station Monitor
8235+
topicUid: Connector_help_Skyline_Station_Monitor
8236+
items:
8237+
- name: Skyline Station Monitor Technical
8238+
topicUid: Connector_help_Skyline_Station_Monitor_Technical
82348239
- name: Skyline Synthetic Testing
82358240
topicUid: Connector_help_Skyline_Synthetic_Testing
82368241
- name: Skyline Synthetic Testing Results

0 commit comments

Comments
 (0)