Update project configuration and enhance OpenTelemetry integration
- Modified `.gitignore` to include and manage `.devcontainer/signoz/data/*` while preserving `.keep` files. - Updated `.prettierrc` to include the `@prettier/plugin-xml` plugin and configured XML formatting options. - Added OpenTelemetry SDK and exporter gems to the `Gemfile` for enhanced monitoring capabilities. - Removed `package-lock.json` as part of the transition to Yarn for dependency management. - Enhanced `.devcontainer` configuration with new services for SigNoz, including ClickHouse and related configurations. - Introduced new ClickHouse configuration files for user and cluster settings. - Updated Nginx and OpenTelemetry collector configurations to support new logging and monitoring features. - Improved user experience in the `UserSearchBar` component by updating the placeholder text. These changes aim to improve project maintainability, monitoring capabilities, and user experience.
This commit is contained in:
34
yarn.lock
34
yarn.lock
@@ -1155,6 +1155,13 @@
|
||||
resolved "https://registry.yarnpkg.com/@prettier/plugin-ruby/-/plugin-ruby-4.0.4.tgz#73d85fc2a1731a3f62b57ac3116cf1c234027cb6"
|
||||
integrity sha512-lCpvfS/dQU5WrwN3AQ5vR8qrvj2h5gE41X08NNzAAXvHdM4zwwGRcP2sHSxfu6n6No+ljWCVx95NvJPFTTjCTg==
|
||||
|
||||
"@prettier/plugin-xml@^3.4.1":
|
||||
version "3.4.1"
|
||||
resolved "https://registry.npmjs.org/@prettier/plugin-xml/-/plugin-xml-3.4.1.tgz"
|
||||
integrity sha512-Uf/6/+9ez6z/IvZErgobZ2G9n1ybxF5BhCd7eMcKqfoWuOzzNUxBipNo3QAP8kRC1VD18TIo84no7LhqtyDcTg==
|
||||
dependencies:
|
||||
"@xml-tools/parser" "^1.0.11"
|
||||
|
||||
"@sinclair/typebox@^0.25.16":
|
||||
version "0.25.24"
|
||||
resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz"
|
||||
@@ -1526,6 +1533,13 @@
|
||||
resolved "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz"
|
||||
integrity sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==
|
||||
|
||||
"@xml-tools/parser@^1.0.11":
|
||||
version "1.0.11"
|
||||
resolved "https://registry.npmjs.org/@xml-tools/parser/-/parser-1.0.11.tgz"
|
||||
integrity sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==
|
||||
dependencies:
|
||||
chevrotain "7.1.1"
|
||||
|
||||
"@xtuc/ieee754@^1.2.0":
|
||||
version "1.2.0"
|
||||
resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz"
|
||||
@@ -1880,6 +1894,13 @@ chalk@^4.0, chalk@^4.0.0, chalk@^4.1.2:
|
||||
ansi-styles "^4.1.0"
|
||||
supports-color "^7.1.0"
|
||||
|
||||
chevrotain@7.1.1:
|
||||
version "7.1.1"
|
||||
resolved "https://registry.npmjs.org/chevrotain/-/chevrotain-7.1.1.tgz"
|
||||
integrity sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==
|
||||
dependencies:
|
||||
regexp-to-ast "0.5.0"
|
||||
|
||||
chokidar@^3.5.3, chokidar@^3.6.0:
|
||||
version "3.6.0"
|
||||
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz"
|
||||
@@ -2393,6 +2414,14 @@ entities@^4.2.0:
|
||||
resolved "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz"
|
||||
integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==
|
||||
|
||||
env-cmd@^10.1.0:
|
||||
version "10.1.0"
|
||||
resolved "https://registry.npmjs.org/env-cmd/-/env-cmd-10.1.0.tgz"
|
||||
integrity sha512-mMdWTT9XKN7yNth/6N6g2GuKuJTsKMDHlQFUDacb/heQRRWOTIZ42t1rMHnQu4jYxU1ajdTeJM+9eEETlqToMA==
|
||||
dependencies:
|
||||
commander "^4.0.0"
|
||||
cross-spawn "^7.0.0"
|
||||
|
||||
envinfo@^7.7.3:
|
||||
version "7.8.1"
|
||||
resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz"
|
||||
@@ -4178,6 +4207,11 @@ regenerator-transform@^0.15.1:
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.8.4"
|
||||
|
||||
regexp-to-ast@0.5.0:
|
||||
version "0.5.0"
|
||||
resolved "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz"
|
||||
integrity sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==
|
||||
|
||||
regexpu-core@^5.3.1:
|
||||
version "5.3.2"
|
||||
resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz"
|
||||
|
||||
Reference in New Issue
Block a user