Skip to content

Commit e2c1eef

Browse files
authored
feat: add beyla to emerging applications (#527)
* feat: add beyla to emerging applications * feat: change ordering as per request * fix: add missing mention of Prometheus
1 parent 03dcb9a commit e2c1eef

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed
Loading

src/components/pages/project-landscape/project-card/project-card.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import slugifyCategory from 'utils/slugify-category';
88

99
import alazLogo from './logos/alaz.svg';
1010
import bccLogo from './logos/bcc.svg';
11+
import beylaLogo from './logos/beyla.png';
1112
import blixtLogo from './logos/blixt.png';
1213
import bpfdLogo from './logos/bpfd.svg';
1314
import bpftoolLogo from './logos/bpftool.svg';
@@ -150,6 +151,7 @@ const logos = {
150151
<StaticImage src="./logos/odigos.png" alt="Odigos" loading="lazy" width={116} height={116} />
151152
),
152153
ingressNodeFirewallLogo,
154+
beylaLogo,
153155
};
154156

155157
const Logo = ({ logo, name }) => {

src/data/pages/applications/emerging.js

+16
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,22 @@ const emergingApplications = [
283283
{ label: 'Website', url: 'https://sustainable-computing.io' },
284284
],
285285
},
286+
{
287+
logoUrl: 'https://github.com/grafana/beyla',
288+
name: 'Beyla',
289+
logoName: 'beylaLogo',
290+
title: 'Zero-code automatic instrumentation with eBPF and OpenTelemetry',
291+
description: `Beyla is a vendor agnostic, OpenTelemetry and Prometheus application auto-instrumentation tool,
292+
which lets you easily get started with Application Observability. eBPF is used to automatically inspect
293+
application executables and the OS networking layer, allowing us to capture essential application observability
294+
events for HTTP/S and gRPC services. From these captured eBPF events, we produce OpenTelemetry web transaction
295+
trace spans and Rate-Errors-Duration (RED) metrics. As with most eBPF tools, all data capture and instrumentation
296+
occurs without any modifications to your application code or configuration.`,
297+
urls: [
298+
{ label: 'GitHub', url: 'https://github.com/grafana/beyla' },
299+
{ label: 'Website', url: 'https://grafana.com/oss/beyla-ebpf/' },
300+
],
301+
},
286302
{
287303
logoUrl: 'https://github.com/ddosify/alaz',
288304
name: 'Alaz',

0 commit comments

Comments
 (0)