Skip to content

Commit e8b0a53

Browse files
committed
about page
1 parent 7b8754f commit e8b0a53

File tree

3 files changed

+3
-182
lines changed

3 files changed

+3
-182
lines changed

.all-contributorsrc

Lines changed: 0 additions & 110 deletions
This file was deleted.

content/about.md

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,10 @@
11
---
22
title: About
33
description: |
4-
Roq stands out in the Java development community as a powerful static site generator, bridging the gap between the
5-
likes of Gatsby, Hugo, and the broader backend community. With GitHub Actions support out-of-the-box, Roq is easy to use for beginners, but also flexible enough to provide
6-
Java hooks for advanced users.
4+
NetObserv aka Network Observability is a set of components used to observe network traffic by generating "NetFlows" from eBPF agents, enrich those flows using a configurable pipeline that is Kubernetes-aware, export them in various ways (logs, metrics, Kafka, IPFIX...), and finally provide a comprehensive visualization tool for making sense of that data, and a CLI. Those components can be used as standalones or deployed in Kubernetes / OpenShift via an integrated Operator.
75
layout: :theme/page
86
---
97

10-
# About Roq
8+
# About NetObserv
119

12-
Roq stands out in the Java development community as a powerful static site generator, bridging the gap between the likes of Gatsby, Hugo, and the broader backend community. As Andy Damevin explains, while tools like Jekyll once filled this space, they’ve become outdated and cumbersome, especially with Ruby’s limitations. Roq offers a modern solution, leveraging Quarkus with no configuration needed, allowing developers to start quickly using Codestart and simply editing their site directory.
13-
14-
With GitHub Actions support out-of-the-box, Roq is easy to use for beginners, but also flexible enough to provide Java hooks for advanced users.
15-
16-
**This tool is a testament to how extensible and powerful Quarkus is, offering a low-risk yet highly capable platform that will evolve as demand grows.**
17-
18-
## Credits
19-
20-
`Those are generated as a JSON by all-contributors, then we leverage roq-data to print them... slick 🏄!`
21-
22-
Thanks goes to these wonderful people:
23-
24-
<div class="authors">
25-
{#for contributor in cdi:contributors.contributors}
26-
{#author-card name=contributor.name avatar=contributor.avatar_url nickname=contributor.login profile=contributor.profile }
27-
{#if cdi:authors.get(contributor.login)}
28-
<span class="author">author</span>
29-
{/if}
30-
{/author-card}
31-
{/for}
32-
</div>
10+
NetObserv (or Network Observability) is a set of components used to observe network traffic by generating "NetFlows" from [eBPF agents](https://github.com/netobserv/netobserv-ebpf-agent), enriching those flows using [a configurable pipeline](https://github.com/netobserv/flowlogs-pipeline/) which is Kubernetes-aware, exporting them in various ways (logs, metrics, Kafka, IPFIX...), and finally providing a comprehensive [visualization tool](https://github.com/netobserv/network-observability-console-plugin/) for making sense of that data, and [a CLI](https://github.com/netobserv/network-observability-cli). Those components can be used as standalones or deployed in Kubernetes / OpenShift via an [integrated Operator](https://github.com/netobserv/network-observability-operator/).

pom.xml

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -106,60 +106,13 @@
106106
</execution>
107107
</executions>
108108
</plugin>
109-
<plugin>
110-
<groupId>com.coderplus.maven.plugins</groupId>
111-
<artifactId>copy-rename-maven-plugin</artifactId>
112-
<version>1.0.1</version>
113-
<executions>
114-
<execution>
115-
<id>copy-contributors</id>
116-
<phase>generate-resources</phase>
117-
<goals>
118-
<goal>copy</goal>
119-
</goals>
120-
<configuration>
121-
<sourceFile>${project.basedir}/.all-contributorsrc</sourceFile>
122-
<destinationFile>data/contributors.json</destinationFile>
123-
</configuration>
124-
</execution>
125-
</executions>
126-
</plugin>
127109
<plugin>
128110
<artifactId>maven-compiler-plugin</artifactId>
129111
<version>${compiler-plugin.version}</version>
130112
<configuration>
131113
<parameters>true</parameters>
132114
</configuration>
133115
</plugin>
134-
<plugin>
135-
<artifactId>maven-surefire-plugin</artifactId>
136-
<version>${surefire-plugin.version}</version>
137-
<configuration>
138-
<systemPropertyVariables>
139-
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
140-
<maven.home>${maven.home}</maven.home>
141-
</systemPropertyVariables>
142-
</configuration>
143-
</plugin>
144-
<plugin>
145-
<artifactId>maven-failsafe-plugin</artifactId>
146-
<version>${surefire-plugin.version}</version>
147-
<executions>
148-
<execution>
149-
<goals>
150-
<goal>integration-test</goal>
151-
<goal>verify</goal>
152-
</goals>
153-
</execution>
154-
</executions>
155-
<configuration>
156-
<systemPropertyVariables>
157-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
158-
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
159-
<maven.home>${maven.home}</maven.home>
160-
</systemPropertyVariables>
161-
</configuration>
162-
</plugin>
163116
</plugins>
164117
</build>
165118

0 commit comments

Comments
 (0)