-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
chore(install-script): install.sh script improvements #6857
Conversation
Build Error! No Linked Issue found. Please link an issue or mention it in the body using #<issue_id> |
Build Error! No Linked Issue found. Please link an issue or mention it in the body using #<issue_id> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Looks good to me! Reviewed everything up to d73a0b6 in 1 minute and 24 seconds
More details
- Looked at
172
lines of code in1
files - Skipped
0
files when reviewing. - Skipped posting
3
drafted comments based on config settings.
1. deploy/install.sh:36
- Draft comment:
Consider usingis_command_present
for checking docker compose plugin for consistency.
has_docker_compose_plugin() {
is_command_present "docker compose"
}
- Reason this comment was not posted:
Confidence changes required:50%
The functionhas_docker_compose_plugin
checks for the docker compose plugin, but the functionis_command_present
is used elsewhere to check for command presence. It would be more consistent to useis_command_present
for checking docker compose plugin as well.
2. deploy/install.sh:479
- Draft comment:
Consider defining port numbers as constants at the top of the script for better maintainability. - Reason this comment was not posted:
Confidence changes required:50%
Thecheck_ports_occupied
function uses hardcoded port numbers 3301 and 4317. It would be better to define these as constants at the top of the script for easier maintenance and readability.
3. deploy/install.sh:428
- Draft comment:
Duplicate assignment forevent
variable insend_event
function. Remove the redundant line. - Reason this comment was not posted:
Comment was not on a valid diff hunk.
Workflow ID: wflow_ED6OCRIxi04tLboe
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
Signed-off-by: Prashant Shahi <prashant@signoz.io>
Related Issue |
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)
This is not working |
@RecoX can you please share the commands that you followed and also the OS and arch type? |
### Summary - 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>
Summary
Important
Improved
install.sh
by adding Docker Compose plugin support, checking for occupied ports, and removing unused code.has_docker_compose_plugin()
to check for Docker Compose plugin.docker_compose_cmd
to use eitherdocker compose
ordocker-compose
based on availability.docker-compose
commands to use$docker_compose_cmd
.install.sh
.This description was created by
for d73a0b6. It will automatically update as commits are pushed.