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
70 changes: 67 additions & 3 deletions docs/Admin-and-data/Third-Party-Licenses/licenses.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ Licensees may convey the work under these licenses

[Modified Grafana source code](https://github.com/intergral/grafana)

---

## Third-party licenses

| Description | License type |
Expand Down Expand Up @@ -71,13 +73,75 @@ Licensees may convey the work under these licenses
| Google Material Design Icons | [APACHE LICENSE 2.0](/tpl/APACHE_LICENSE-2.0/) |
| yaml | [ISC](/tpl/ISC_LICENSE/) |

---

## FusionReactor Agent licenses
[Third-party license agreements & additional notices](/Admin-and-data/Third-Party-Licenses/Third_Party_License_Agreements/)

Full third-party license agreements and additional notices for the FusionReactor agent are available on a separate page.

[View third-party license agreements & additional notices](/Admin-and-data/Third-Party-Licenses/Third_Party_License_Agreements/)

---

## EULA
[EULA](https://fusion-reactor.com/eula-intergral-software-end-user-license-agreement/)

___
The End User License Agreement (EULA) governs your use of Intergral software products.

[Read the EULA](https://fusion-reactor.com/eula-intergral-software-end-user-license-agreement/)

---

## Legal Notices
This document lists third-party open-source dependencies used in this project that carry license terms with explicit attribution or notice requirements.
All other dependencies use the MIT license, which has equivalent notice requirements but is considered permissive enough that legal teams do not typically require explicit listing for SaaS web applications.

No GPL, LGPL, or AGPL licensed packages are used. There are no source-disclosure obligations.

### Apache License 2.0

The following production dependencies are licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).

Apache 2.0 requires that a copy of the license and any existing NOTICE files accompany distributions. None of the packages below include a NOTICE file with additional third-party attributions.

| Package | Version | Copyright Holder |
|---|---|---|
| `@aws-sdk/credential-providers` | 3.1034.0 | AWS SDK for JavaScript Team |
| `@grafana/faro-web-sdk` | 2.2.4 | Grafana Labs |
| `@grafana/faro-web-tracing` | 2.2.4 | Grafana Labs |
| `@opentelemetry/api` | 1.9.0 | OpenTelemetry Authors |
| `@opentelemetry/api-logs` | 0.212.0 | OpenTelemetry Authors |
| `@opentelemetry/instrumentation` | 0.212.0 | OpenTelemetry Authors |
| `@opentelemetry/resources` | 2.5.1 | OpenTelemetry Authors |
| `@opentelemetry/sdk-logs` | 0.212.0 | OpenTelemetry Authors |
| `@opentelemetry/sdk-metrics` | 2.5.1 | OpenTelemetry Authors |
| `@opentelemetry/sdk-trace-base` | 2.5.1 | OpenTelemetry Authors |
| `class-variance-authority` | 0.7.1 | Joe Bell |
| `fuse.js` | 7.3.0 | Kiro Risk |
| `launchdarkly-js-client-sdk` | 3.9.0 | Catamorphic, Co. |
| `launchdarkly-node-server-sdk` | 7.0.4 | Catamorphic, Co. |
| `mongodb` | 7.2.0 | The MongoDB NodeJS Team |

### BSD 3-Clause License

The following production dependency is licensed under the [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause).

BSD 3-Clause requires that the copyright notice and disclaimer be reproduced in documentation or other materials provided with binary distributions.

| Package | Version | Copyright Holder |
|---|---|---|
| `rrule` | 2.8.1 | Jakub Roztocil, Lars Schoning, and David Golightly |

### ISC License

The following production dependencies are licensed under the [ISC License](https://opensource.org/licenses/ISC), which is functionally equivalent to MIT.

| Package | Version | Copyright Holder |
|---|---|---|
| `d3-force` | 3.0.0 | Mike Bostock |
| `d3-quadtree` | 3.0.1 | Mike Bostock |
| `lucide-react` | 0.576.0 | Cole Bemis (Feather icons, MIT); Lucide Contributors (all other icons) |

---

!!! question "Need more help?"
Contact support in the chat bubble and let us know how we can assist.
14 changes: 12 additions & 2 deletions docs/Data-insights/Features/Services/overview.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# Services Overview
![!Screenshot](services.png)

<br>

The Services Overview gives you a centralised view of all services in your environment, visualising how they depend on each other and summarising their health at a glance.
The **Services** page gives you full visibility into your OpenTelemetry-instrumented services - how they connect, how they perform, and where problems are occurring.

![!Screenshot](services-overview.png)
<br>

<div class="intro-with-video">
<div class="video-side">
<iframe src="https://player.vimeo.com/video/1192175205?badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media" allowfullscreen></iframe>
</div>
<div class="intro-text">
<p>Watch this short walkthrough to see the Services view in action - covering the service graph, dependency mapping, latency and error metrics, and how to drill into individual services for deeper investigation.</p>
</div>
</div>

## Service Graph

Expand Down
29 changes: 29 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,35 @@
text-align: center; /* Center the button text */
}

/* Side-by-side intro: video left, text right */
.intro-with-video {
display: flex;
gap: 24px;
align-items: center;
margin-bottom: 1.5rem;
}

.intro-with-video .video-side {
flex: 1;
}

.intro-with-video .video-side iframe {
width: 100%;
aspect-ratio: 16 / 9;
display: block;
border: 0;
}

.intro-with-video .intro-text {
flex: 1;
}

@media (max-width: 600px) {
.intro-with-video {
flex-direction: column;
}
}

/* Responsive video embeds */
.video-wrapper {
position: relative;
Expand Down
Loading