CAMEL-23837: Add DataSource connection pool dev-console and TUI tab

Adds a datasource dev-console that discovers javax.sql.DataSource beans
from the Camel registry and extracts pool metrics via reflection for
HikariCP and Agroal. Includes a TUI DataSource tab with pool exhaustion
warnings, a `camel get datasource` CLI command, dynamic infra panel
sizing in the overview tab, and synced jbang examples catalog.

Closes #24278

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 files changed
tree: 2f325773d935b5a6bfc1ed4a450897450f3a9b93
  1. .claude-plugin/
  2. .github/
  3. .idea/
  4. .mvn/
  5. .oss-ai-helper-rules/
  6. apache-camel/
  7. archetypes/
  8. bom/
  9. buildingtools/
  10. camel-dependencies/
  11. camel-sbom/
  12. catalog/
  13. components/
  14. core/
  15. coverage/
  16. design/
  17. docs/
  18. dsl/
  19. etc/
  20. parent/
  21. plugins/
  22. test-infra/
  23. tests/
  24. tooling/
  25. .asf.yaml
  26. .gitattributes
  27. .gitignore
  28. .gitmodules
  29. .sdkmanrc
  30. AGENTS.md
  31. CONTRIBUTING.md
  32. doap.rdf
  33. jbang-catalog.json
  34. Jenkinsfile
  35. Jenkinsfile.deploy
  36. Jenkinsfile.jbangtest
  37. Jenkinsfile.jdk26
  38. KEYS
  39. LICENSE.txt
  40. mvnw
  41. mvnw.cmd
  42. NOTICE.txt
  43. pom.xml
  44. README.md
  45. SECURITY.md
README.md

Apache Camel

Maven Central Javadocs Stack Overflow Chat Twitter

Apache Camel is an open source integration framework with 350+ connectors for databases, APIs, message brokers, and cloud services. Write routes in Java, YAML, or XML. Run on Spring Boot, Quarkus, or standalone with the Camel CLI. In production since 2007 — used by thousands of companies worldwide. Apache License 2.0.

What is Apache Camel? | Getting Started | Components | Tooling

Get started in seconds

camel init hello.yaml
camel run hello.yaml

Or add to your existing Spring Boot project:

<dependency>
    <groupId>org.apache.camel.springboot</groupId>
    <artifactId>camel-spring-boot-starter</artifactId>
</dependency>

Write it your way

The same route in YAML, Java, or XML — pick what fits your team:

YAML:

- route:
    from:
      uri: kafka:incoming-orders
      steps:
        - unmarshal:
            json: {}
        - to:
            uri: sql:INSERT INTO orders(id, data) VALUES(:#${header.id}, :#${body})

Java:

from("kafka:incoming-orders")
    .unmarshal().json()
    .to("sql:INSERT INTO orders(id, data) VALUES(:#${header.id}, :#${body})");

Runtimes

RuntimeWhat it does
Camel Spring BootCamel on Spring Boot with starters for 350+ connectors
Camel QuarkusCloud-native Camel with fast startup, low memory, native compilation
Camel CLIRun, develop, test, and trace routes from the command line

Other runtimes: Camel K (Kubernetes), Camel Karaf (OSGi), Camel Kafka Connector (Kafka Connect)

Components

350+ connectors for connecting to anything — Kafka, REST, JDBC, AWS, Azure, GCP, Salesforce, and more:

AI integration

Apache Camel provides an MCP server (Model Context Protocol) for AI coding assistants — Claude Code, GitHub Copilot, Cursor, and Gemini CLI get full Camel catalog context. Camel also includes components for LangChain4j and OpenAI, and supports the A2A agent-to-agent protocol for connecting AI agents to enterprise systems.

Visual designers

  • Kaoto — open source visual designer for Camel routes, drag-and-drop, no code required
  • Karavan — visual designer for Camel integrations in VS Code and standalone

Examples

Contributing

We welcome all kinds of contributions:

https://github.com/apache/camel/blob/main/CONTRIBUTING.md

Community

Licensing

Apache License 2.0 — see LICENSE.txt.