You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(alertmanager): first iteration of alertmanager
feat: add search span scope in the list view tab to add the scope at per Query level (#6810)
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
* feat: add search span scope in the list view tab to add the scope at per query level
chore(install-script): install.sh script improvements (#6857)
- support for docker compose plugin
- check for occupied port when installing SigNoz for the first time
- remove unused code
Signed-off-by: Prashant Shahi <prashant@signoz.io>
chore: correct order within page result (#6847)
# echo -e "\n✅ ${CYAN}You have chosen: ${setup_type} setup\n"
386
-
387
360
# Run bye if failure happens
388
361
trap bye EXIT
389
362
@@ -455,8 +428,6 @@ if [[ $desired_os -eq 0 ]]; then
455
428
send_event "os_not_supported"
456
429
fi
457
430
458
-
# check_ports_occupied
459
-
460
431
# Check is Docker daemon is installed and available. If not, the install & start Docker for Linux machines. We cannot automatically install Docker Desktop on Mac OS
461
432
if! is_command_present docker;then
462
433
@@ -486,27 +457,39 @@ if ! is_command_present docker; then
486
457
fi
487
458
fi
488
459
460
+
if has_docker_compose_plugin;then
461
+
echo"docker compose plugin is present, using it"
462
+
docker_compose_cmd="docker compose"
489
463
# Install docker-compose
490
-
if! is_command_present docker-compose;then
491
-
request_sudo
492
-
install_docker_compose
464
+
else
465
+
docker_compose_cmd="docker-compose"
466
+
if! is_command_present docker-compose;then
467
+
request_sudo
468
+
install_docker_compose
469
+
fi
493
470
fi
494
471
495
472
start_docker
496
473
497
-
# $sudo_cmd docker-compose -f ./docker/clickhouse-setup/docker-compose.yaml up -d --remove-orphans || true
498
-
474
+
# check for open ports, if signoz is not installed
echo"or reach us on SigNoz for support https://signoz.io/slack"
@@ -537,7 +520,7 @@ else
537
520
echo"ℹ️ By default, retention period is set to 15 days for logs and traces, and 30 days for metrics."
538
521
echo -e "To change this, navigate to the General tab on the Settings page of SigNoz UI. For more details, refer to https://signoz.io/docs/userguide/retention-period \n"
539
522
540
-
echo"ℹ️ To bring down SigNoz and clean volumes : $sudo_cmddocker-compose -f ./docker/clickhouse-setup/docker-compose.yaml down -v"
523
+
echo"ℹ️ To bring down SigNoz and clean volumes : $sudo_cmd$docker_compose_cmd -f ./docker/clickhouse-setup/docker-compose.yaml down -v"
0 commit comments