Skip to content

Commit

Permalink
Merge branch 'main' into meter
Browse files Browse the repository at this point in the history
  • Loading branch information
yurishkuro authored Nov 17, 2024
2 parents 1c383d8 + 47e1ee6 commit 1245dce
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docker-compose/cassandra/v4/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
services:
cassandra:
image: cassandra:4.1
container_name: "cassandra-4"
ports:
- "9042:9042"
- "9160:9160"
Expand All @@ -11,7 +12,7 @@ services:
networks:
- cassandra-net
healthcheck:
test: ["CMD", "cqlsh", "-e", "describe keyspaces"]
test: ["CMD", "cqlsh", "-u", "cassandra", "-p", "cassandra", "-e", "describe keyspaces"]
interval: 30s
timeout: 10s
retries: 5
Expand Down
3 changes: 2 additions & 1 deletion docker-compose/cassandra/v5/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
services:
cassandra:
image: cassandra:5.0
container_name: "cassandra-5"
ports:
- "9042:9042"
- "9160:9160"
Expand All @@ -11,7 +12,7 @@ services:
networks:
- cassandra-net
healthcheck:
test: ["CMD", "cqlsh", "-e", "describe keyspaces"]
test: ["CMD", "cqlsh", "-u", "cassandra", "-p", "cassandra", "-e", "describe keyspaces"]
interval: 30s
timeout: 10s
retries: 5
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/monitor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ docker compose -f docker-compose-v2.yml up
**Tips:**
- Let the application run for a couple of minutes to ensure there is enough time series data to plot in the dashboard.
- Navigate to Jaeger UI at http://localhost:16686/ and inspect the Monitor tab. Select `redis` service from the dropdown to see more than one endpoint.
- To visualize the raw metrics stored on the Prometheus server (for debugging and local development use cases), use the built-in Prometheus UI at http://localhost:9090/graph. For example, http://localhost:9090/graph?g0.expr=traces_span_metrics_calls_total&g0.tab=0&g0.range_input=5m
- To visualize the raw metrics stored on the Prometheus server (for debugging and local development use cases), use the built-in Prometheus UI at http://localhost:9090/query. For example, http://localhost:9090/query?g0.expr=traces_span_metrics_calls_total&g0.tab=0&g0.range_input=5m

**Warning:** The included [docker-compose.yml](./docker-compose.yml) file uses the `latest` version of Jaeger and other components. If your local Docker registry already contains older versions, which may still be tagged as `latest`, you may want to delete those images before running the full set, to ensure consistent behavior:

Expand Down
24 changes: 24 additions & 0 deletions scripts/cassandra-integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ set -euxf -o pipefail
export CASSANDRA_USERNAME="cassandra"
export CASSANDRA_PASSWORD="cassandra"
success="false"
timeout=600
end_time=$((SECONDS + timeout))

usage() {
echo $"Usage: $0 <cassandra_version> <schema_version>"
Expand All @@ -26,6 +28,26 @@ setup_cassandra() {
docker compose -f "$compose_file" up -d
}

healthcheck_cassandra() {
local cas_version=$1
local container_name="cassandra-${cas_version}"
# Since the healthcheck in cassandra is done at the interval of 30s
local wait_seconds=30

while [ $SECONDS -lt $end_time ]; do
status=$(docker inspect -f '{{ .State.Health.Status }}' "${container_name}")
if [[ ${status} == "healthy" ]]; then
echo "$container_name is healthy"
return 0
fi
echo "Waiting for $container_name to be healthy. Current status: $status"
sleep $wait_seconds
done

echo "❌ ERROR: $container_name did not become healthy in time"
exit 1
}

dump_logs() {
local compose_file=$1
echo "::group::🚧 🚧 🚧 Cassandra logs"
Expand Down Expand Up @@ -74,6 +96,8 @@ run_integration_test() {
# shellcheck disable=SC2064
trap "teardown_cassandra ${compose_file}" EXIT

healthcheck_cassandra "${major_version}"

apply_schema "$schema_version" "$primaryKeyspace"
apply_schema "$schema_version" "$archiveKeyspace"

Expand Down
2 changes: 1 addition & 1 deletion scripts/spm-integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ check_service_health() {
wait_for_services() {
echo "Waiting for services to be up and running..."
check_service_health "Jaeger" "http://localhost:16686"
check_service_health "Prometheus" "http://localhost:9090/graph"
check_service_health "Prometheus" "http://localhost:9090/query"
}

# Function to validate the service metrics
Expand Down

0 comments on commit 1245dce

Please sign in to comment.