GitHub
01/08/2023, 4:59 PM<https://github.com/SigNoz/signoz/tree/develop|develop>
by ankitnayan
<https://github.com/SigNoz/signoz/commit/b35bdf01ccb30484f1bd56c3e2fe9d201cbd45ed|b35bdf01>
- chore: š pin versions: SigNoz 0.13.1
<https://github.com/SigNoz/signoz/commit/435d74c37e0f429979243e4cab84986de08d2691|435d74c3>
- Merge pull request #1996 from SigNoz/release/v0.13.1
SigNoz/signozGitHub
01/08/2023, 5:00 PMGitHub
01/08/2023, 5:42 PM<https://github.com/SigNoz/signoz/tree/develop|develop>
by ankitnayan
<https://github.com/SigNoz/signoz/commit/0c27d5acbc13339b4d1e1c0f4333647ee8a13595|0c27d5ac>
- chore: better error handling
<https://github.com/SigNoz/signoz/commit/215ea8d8199af6fe6aec7b7d8c8f8ebc8c6994fa|215ea8d8>
- chore: different ticker interval for active user
SigNoz/signozGitHub
01/08/2023, 5:43 PMGitHub
01/08/2023, 6:34 PMGitHub
01/08/2023, 6:37 PMGitHub
01/08/2023, 7:06 PM<https://github.com/SigNoz/charts/tree/main|main>
by ankitnayan
<https://github.com/SigNoz/charts/commit/0757895c00312a56218c89d8f0de7a7b9f6f6ed1|0757895c>
- fix duplicate metrics issue in OtelCollectors of SigNoz and K8s-Infra charts (#125)
SigNoz/chartsGitHub
01/08/2023, 7:06 PMGitHub
01/08/2023, 7:07 PMGitHub
01/09/2023, 7:56 AMimageā¾
GitHub
01/09/2023, 8:02 AMrelabel_config
⢠introduce clusterName
configuration in both signoz and k8s-infra charts which is attached to telemetry data using resourcedection env
⢠introduce <http://apm.signoz.io/scrape|apm.signoz.io/scrape>
annotations for signoz apm spanmetrics
⢠use k8sattributes
processor in OtelCollector and resourcedetection
processor from missing pipelines
Note: After resource_to_telemetry_conversion
issue is resolved, we could include k8sattributes
, resourcedetection
or resource
processors in metrics pipeline.
SigNoz/chartsGitHub
01/09/2023, 11:59 AMimageā¾
GitHub
01/09/2023, 12:11 PMGitHub
01/09/2023, 1:39 PMimageā¾
imageā¾
GitHub
01/09/2023, 2:24 PMON
clause.
Earlier query built:
SELECT
A.service_name as service_name,
A.ts as ts,
A.value / (B.value + C.value) as value
FROM (
...
) as A JOIN (
...
) as B JOIN(
...
) as C USING (service, ts)
Correct query:
SELECT
A.service_name as service_name,
A.ts as ts,
A.value / (B.value + C.value) as value
FROM (
...
) as A JOIN (
...
) as B ON A.service_name = B.service_name AND A.ts = B.ts JOIN(
...
) as C ON B.service_name = C.service_name AND B.ts = C.ts
SigNoz/signoz
SonarCloud: Quality Gate failed
GitHub Actions: playwright
GitHub Actions: lint-commits
ā
10 other checks have passed
10/13 successful checksGitHub
01/09/2023, 2:34 PMimageā¾
imageā¾
GitHub
01/09/2023, 5:05 PMDynamic Volume Provisioning
enabled.
Hence I would like to ask if it's possible to support existingClaim
in queryService. persistence
and alertmanager.persistence
, similar to how it is possible for clickhouse.persistence
.
The use case for this is that if for some reason I want to redeploy SigNoz on my cluster, I want to control which persistent volumes each service will get.
Yesterday I was testing outage scenarios and came across the following situation:
1. Create 4 persistent volumes (pv1, pv2, pv3, pv4)
2. Deploy SigNoz
3. The query service persistent volume claim gets pv2
4. Register user
5. Remove SigNoz from the cluster
6. Deploy SigNoz again
7. The query service persistent volume claim gets pv3
8. The user registered in 4. is not found
SigNoz/chartsGitHub
01/09/2023, 5:51 PMGitHub
01/09/2023, 7:57 PMGitHub
01/09/2023, 7:57 PMGitHub
01/09/2023, 7:57 PMGitHub
01/09/2023, 8:48 PM/frontend
folder with the configuration added in this pull request:
⯠exportman --config exportman.json --onlyFiles
--- UNUSED FILES (26)
src/container/EditRules/styles.ts
src/container/FormAlertChannels/Settings/LabelFilter.tsx
src/container/ListOfDashboard/dashboardSearchAndFilter.ts
src/container/NewDashboard/DashboardSettings/General/Description/index.tsx
src/container/NewDashboard/DashboardSettings/General/Description/styles.ts
src/container/NewDashboard/DescriptionOfDashboard/NameOfTheDashboard/index.tsx
src/container/Trace/Filters/Panel/PanelBody/styles.ts
src/container/Trace/Filters/styles.ts
src/hooks/useMountedState.ts
src/lib/JSXtoHTML.ts
src/lib/convertIntoHr.ts
src/lib/getGlobalDropDownFormatedDate.ts
src/lib/getSettingsPeroid.ts
src/pages/CreateAlert/styles.ts
src/store/actions/logs/addToSelectedField.ts
src/store/actions/trace/selectTraceFilter.ts
src/store/actions/trace/updateTagsSelected.ts
src/types/api/alerts/queryType.ts
src/types/api/dashboard/shared.ts
src/types/api/logs/operator.ts
src/types/api/logs/removeSelectedField.ts
src/types/api/user/setUserPreference.ts
src/typings/environment.ts
src/typings/window.ts
src/utils/fixtures/TraceData.ts
src/utils/token.ts
The results seem pretty accurate, but I'm not 100% sure about each file separately. For instance, I see some styles.ts
files that are not imported anywhere, but they may be automatically included by a framework or build? If so, we can ignore such files and add them to the filePatterns
with !**/styles.ts
, and so on.
Running the tool without the --onlyFiles
flag will also report unused exports, unused types, and duplicate exports (didn't add them here for brevity).
I believe this tool can help significantly when maintaining (and refactoring) repositories like this.
Also see https://github.com/webpro/exportman if you're interested. Have a great day and best of luck with your project.
SigNoz/signoz
SonarCloud: Quality Gate failed
GitHub Actions: build-frontend
GitHub Actions: lint-commits
GitHub Actions: Ensure Pull Request has a linked issue.
GitHub Actions: Codeball
GitHub Actions: playwright
ā
6 other checks have passed
6/12 successful checksGitHub
01/10/2023, 3:51 AMGitHub
01/10/2023, 5:02 AM<https://github.com/SigNoz/charts/tree/main|main>
by prashant-shahi
<https://github.com/SigNoz/charts/commit/c56a134c93835d14485a2f132bcd34b2c7bd3dd3|c56a134c>
- chore: š§ k8sattribute/resourceattribute processors
<https://github.com/SigNoz/charts/commit/15b3e8c5d261889275f68e209f313ee6b98aee00|15b3e8c5>
- Merge pull request #133 from SigNoz/prashant/processors
SigNoz/chartsGitHub
01/10/2023, 5:03 AM<https://github.com/SigNoz/charts/tree/main|main>
by prashant-shahi
<https://github.com/SigNoz/charts/commit/9b0a7e6498c14b131b0979ea6f2538cd9839d2f8|9b0a7e64>
- chore: š§ include relabel_configs and related prometheus changes
<https://github.com/SigNoz/charts/commit/a9747aeea450054b192deacf13f0a235275e0328|a9747aee>
- Merge pull request #132 from SigNoz/prashant/relabel-config
SigNoz/chartsGitHub
01/10/2023, 5:15 AM<https://github.com/SigNoz/signoz/tree/develop|develop>
by palashgdev
<https://github.com/SigNoz/signoz/commit/b23d8da96c2c21141528af72ea216e6f93cdfd5a|b23d8da9>
- style: use 'no data' for empty graphs (#2002)
SigNoz/signozGitHub
01/10/2023, 5:15 AMGitHub
01/10/2023, 5:15 AMGitHub
01/10/2023, 5:18 AM<https://github.com/SigNoz/charts/tree/main|main>
by prashant-shahi
<https://github.com/SigNoz/charts/commit/2ea11970daa3079fb2d3bdf1b962e77b59cdf549|2ea11970>
- chore: š§ include clusterName and envvar templates
<https://github.com/SigNoz/charts/commit/66cdf20394511c8cfd9addc955b5ad2fe334d892|66cdf203>
- chore: š§ add K8S_CLUSTER_NAME resource attribute for OtelCollector Metrics
<https://github.com/SigNoz/charts/commit/30c7e9f2609cb7ea867acfa3efde8d95ea58e0c4|30c7e9f2>
- Merge branch 'main' into prashant/snippets-env
<https://github.com/SigNoz/charts/commit/f2355ece96e3b4123fa6a51ba6abbae18b7838f2|f2355ece>
- Merge pull request #134 from SigNoz/prashant/snippets-env
SigNoz/chartsGitHub
01/10/2023, 5:55 AM<https://github.com/SigNoz/charts/tree/main|main>
by prashant-shahi
<https://github.com/SigNoz/charts/commit/c913b3b02244e04df6ea553a0f471d2a9e707038|c913b3b0>
- chore(clickhouse): š§ global image registry
<https://github.com/SigNoz/charts/commit/da93ab0b2a04cad5f27623146d51e8daec6a66a6|da93ab0b>
- chore(k8s-infra): š§ global image registry
<https://github.com/SigNoz/charts/commit/4fa996a93425ca0e699a19beab4114da96df7f99|4fa996a9>
- chore(signoz): š§ global image registry
<https://github.com/SigNoz/charts/commit/0bb9b703b5667c77df2cf46a32b4d1150ed8a5bc|0bb9b703>
- Merge branch 'main' into prashant/global-registry
<https://github.com/SigNoz/charts/commit/2509fc4d21b86517d73e51c52f7db19cb2b04c25|2509fc4d>
- chore(release): š Bump up clickhouse to 23.7.0
<https://github.com/SigNoz/charts/commit/2a518dd567c44500c3af8d3a64c00386b68827be|2a518dd5>
- chore(release): š Bump up k8s-infra to 0.5.0
<https://github.com/SigNoz/charts/commit/cd3c9dc1a1d5a744c82232fc11d59e23a560b182|cd3c9dc1>
- chore: š pin versions: SigNoz 0.13.1 and sync imageRegistry changes
<https://github.com/SigNoz/charts/commit/77877f5483eefbbbb8b85315141f9166e636a15e|77877f54>
- Merge pull request #135 from SigNoz/prashant/global-registry
SigNoz/charts