This is an automated email from the ASF dual-hosted git repository.

fmariani pushed a change to branch fix-it-test
in repository https://gitbox.apache.org/repos/asf/camel-jbang-examples.git


    omit c057713  Use camel 4.17
    omit af5dbfb  Align citrus version to the latest released - fix 
integration-test compatbility
     add 52db1e8  Smart log analyzer example
     add 0b74d5c  Align citrus version to the latest released - fix 
integration-test compatbility
     add 57404af  Use camel 4.17

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c057713)
            \
             N -- N -- N   refs/heads/fix-it-test (57404af)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 smart-log-analyzer/README.adoc                     | 215 +++++++++++++
 .../analyzer/application-dev.properties            |  31 ++
 .../analyzer/error-analyzer.camel.yaml             |  74 +++++
 .../caches/infinispan-events-config.json           |  14 +
 .../infinispan-events-to-process-config.json       |  14 +
 smart-log-analyzer/containers/docker-compose.yaml  |  98 ++++++
 .../containers/otel-collector-config.yaml          |  32 ++
 .../correlator/application-dev.properties          |  28 ++
 .../correlator/correlated-log-schema.json          |  38 +++
 .../correlator/correlated-trace-schema.json        |  58 ++++
 .../correlator/infinispan.camel.yaml               | 104 +++++++
 smart-log-analyzer/correlator/kafka-ca-cert.pem    |  70 +++++
 .../correlator/kaoto-datamapper-4a94acc3.xsl       |  38 +++
 .../correlator/kaoto-datamapper-8f5bb2dd.xsl       |  64 ++++
 .../correlator/logs-mapper.camel.yaml              |  45 +++
 .../correlator/otel-log-record-schema.json         | 137 +++++++++
 .../correlator/otel-logs-schema.json               | 227 ++++++++++++++
 .../correlator/otel-span-schema.json               | 244 +++++++++++++++
 .../correlator/otel-traces-schema.json             | 334 +++++++++++++++++++++
 .../correlator/traces-mapper.camel.yaml            |  45 +++
 .../first-iteration/analyzer.camel.yaml            |  62 ++++
 .../first-iteration/application.properties         |   2 +
 .../first-iteration/load-generator.camel.yaml      |  48 +++
 .../test/first-iteration.camel.it.yaml             |  46 +++
 .../first-iteration/test/jbang.properties          |   3 +
 .../first-iteration/test/payload-error.json        |   1 +
 .../first-iteration/test/payload-info.json         |   1 +
 smart-log-analyzer/log-generator/agent.properties  |   6 +
 .../log-generator/application-dev.properties       |   3 +
 .../log-generator/log-generator.camel.yaml         |  87 ++++++
 .../log-generator/opentelemetry-javaagent.jar      | Bin 0 -> 24026362 bytes
 .../ui-console/application-dev.properties          |  32 +-
 smart-log-analyzer/ui-console/index.html           | 287 ++++++++++++++++++
 .../ui-console/jms-file-storage.camel.yaml         |  14 +
 smart-log-analyzer/ui-console/rest-api.camel.yaml  |  84 ++++++
 36 files changed, 2576 insertions(+), 11 deletions(-)
 create mode 100644 smart-log-analyzer/README.adoc
 create mode 100644 smart-log-analyzer/analyzer/application-dev.properties
 create mode 100644 smart-log-analyzer/analyzer/error-analyzer.camel.yaml
 create mode 100644 
smart-log-analyzer/containers/caches/infinispan-events-config.json
 create mode 100644 
smart-log-analyzer/containers/caches/infinispan-events-to-process-config.json
 create mode 100644 smart-log-analyzer/containers/docker-compose.yaml
 create mode 100644 smart-log-analyzer/containers/otel-collector-config.yaml
 create mode 100644 smart-log-analyzer/correlator/application-dev.properties
 create mode 100644 smart-log-analyzer/correlator/correlated-log-schema.json
 create mode 100644 smart-log-analyzer/correlator/correlated-trace-schema.json
 create mode 100644 smart-log-analyzer/correlator/infinispan.camel.yaml
 create mode 100644 smart-log-analyzer/correlator/kafka-ca-cert.pem
 create mode 100644 smart-log-analyzer/correlator/kaoto-datamapper-4a94acc3.xsl
 create mode 100644 smart-log-analyzer/correlator/kaoto-datamapper-8f5bb2dd.xsl
 create mode 100644 smart-log-analyzer/correlator/logs-mapper.camel.yaml
 create mode 100644 smart-log-analyzer/correlator/otel-log-record-schema.json
 create mode 100644 smart-log-analyzer/correlator/otel-logs-schema.json
 create mode 100644 smart-log-analyzer/correlator/otel-span-schema.json
 create mode 100644 smart-log-analyzer/correlator/otel-traces-schema.json
 create mode 100644 smart-log-analyzer/correlator/traces-mapper.camel.yaml
 create mode 100644 smart-log-analyzer/first-iteration/analyzer.camel.yaml
 create mode 100644 smart-log-analyzer/first-iteration/application.properties
 create mode 100644 smart-log-analyzer/first-iteration/load-generator.camel.yaml
 create mode 100644 
smart-log-analyzer/first-iteration/test/first-iteration.camel.it.yaml
 create mode 100644 smart-log-analyzer/first-iteration/test/jbang.properties
 create mode 100644 smart-log-analyzer/first-iteration/test/payload-error.json
 create mode 100644 smart-log-analyzer/first-iteration/test/payload-info.json
 create mode 100644 smart-log-analyzer/log-generator/agent.properties
 create mode 100644 smart-log-analyzer/log-generator/application-dev.properties
 create mode 100644 smart-log-analyzer/log-generator/log-generator.camel.yaml
 create mode 100644 smart-log-analyzer/log-generator/opentelemetry-javaagent.jar
 copy ftp/application.properties => 
smart-log-analyzer/ui-console/application-dev.properties (52%)
 create mode 100644 smart-log-analyzer/ui-console/index.html
 create mode 100644 smart-log-analyzer/ui-console/jms-file-storage.camel.yaml
 create mode 100644 smart-log-analyzer/ui-console/rest-api.camel.yaml

Reply via email to