Adi
09/26/2022, 8:33 AMEric Rodriguez
09/26/2022, 5:55 PMRahul Tiwari
09/27/2022, 8:11 AMDam Mad
09/27/2022, 12:54 PMsignal_calls_total
reports to be above the threshold forever (even in X hours when no another 4xx error occured)Dam Mad
09/27/2022, 12:55 PMAnkit Nayan
Jessie
09/27/2022, 1:54 PMconst tolerations = [
{
key: "<http://eks.amazonaws.com/compute-type|eks.amazonaws.com/compute-type>",
operator: "Equal",
value: "fargate:NoSchedule",
effect: "NoSchedule"
},
{
key: "<http://eks.amazonaws.com/compute-type|eks.amazonaws.com/compute-type>",
operator: "Equal",
value: "fargate",
effect: "Schedule"
}
];
this.cluster.addHelmChart('signoz', {
namespace: 'signoz',
createNamespace: true,
repository: '<https://charts.signoz.io>',
chart: 'signoz',
release: 'signoz-r1',
values: {
zookeeper: { // test if zookeeper pods will schedule, did not work
tolerations
},
tolerations, // Putting it right at the root? Nope, didn't work.
global: {
storageClass: "ebs-sc",
tolerations // Maybe global will work? Nope.
},
clickhouse: {
cloud: "aws",
installCustomStorageClass: false
}
},
wait: false
});
sibi vishnu
09/29/2022, 11:11 AMAnkit Nayan
Ubuntu 22.04 running in WSL 2 in Windows 2022this we have not tested..it will work for sure in vanilla ubuntu instance
Brian Richardson
10/02/2022, 9:20 AMAnil Kumar Bandrapalli
10/03/2022, 10:53 AMDevops Netapp
10/03/2022, 2:44 PMlevel=info ts=2022-10-03T14:36:20.440Z caller=main.go:237 msg="Starting Alertmanager" version="(version=0.23.0, branch=release/v0.23.0-0.2, revision=f3e6c2166de499b7a9b8f53de278ddd56f3ded07)"
level=info ts=2022-10-03T14:36:20.440Z caller=main.go:238 build_context="(go=go1.17.7, user=ec2-user@ip-172-31-17-99.us-east-2.compute.internal, date=20220816-10:29:54)"
level=warn ts=2022-10-03T14:36:20.442Z caller=cluster.go:177 component=cluster err="couldn't deduce an advertise address: no private IP found, explicit advertise addr not provided"
level=error ts=2022-10-03T14:36:20.443Z caller=main.go:268 msg="unable to initialize gossip mesh" err="create memberlist: Failed to get final advertise address: No private IP address found, and explicit IP not provided
I haven’t change the config and my replica count is 1 with additionalPeers: []
From exploring on the web this has something to do with the following condition that’s not accessed ( replicaCount == 1 , additionalPeers = [])
{{- if or (gt (int .Values.alertmanager.replicaCount) 1) (.Values.alertmanager.additionalPeers) }}
- --cluster.advertise-address=$(POD_IP):9094
- --cluster.listen-address=0.0.0.0:9094
{{- end }}
Please let me know if you have any suggestions.Brian Richardson
10/04/2022, 1:31 AMsibi vishnu
10/04/2022, 3:54 AMsibi vishnu
10/04/2022, 6:01 AMAkshat Kansal
10/04/2022, 10:57 AMAkshat Kansal
10/04/2022, 10:57 AMAkshat Kansal
10/04/2022, 10:58 AMKasim Ali
10/04/2022, 11:48 AMMark Raynsford
10/04/2022, 6:48 PMfinal var meter =
inTelemetry.openTelemetry()
.meterBuilder("IdUserSessionService")
.build();
this.sessionsGauge =
meter.gaugeBuilder("userSessions")
.setDescription("Active user sessions.")
.ofLongs()
.buildWithCallback(m -> {
m.record(Integer.toUnsignedLong(this.sessions.size()));
});
i don't see anything in the signoz UI related to this meter, but i'm not sure if that's because the UI isn't showing it, or if no data is being produced for some reason...Kasim Ali
10/05/2022, 9:58 AMshruti kuber
10/05/2022, 10:54 AMsibi vishnu
10/05/2022, 1:12 PMRahul Tiwari
10/06/2022, 5:38 AMVishal Goel
10/06/2022, 9:06 AMPrakshal Shah
10/06/2022, 11:02 AMChủ Huỳnh Minh
10/07/2022, 7:00 AMChủ Huỳnh Minh
10/07/2022, 7:21 AMKasim Ali
10/07/2022, 8:02 AMAnkit Nayan