Shubham Choudhary

Results 14 comments of Shubham Choudhary

https://github.com/ASKBOT/askbot-devel/blob/master/askbot/deps/django_authopenid/models.py Instead of line 89 `user = models.ForeignKey(User, unique=True)` **USE** `user = models.OneToOneField(User) Because, Foreign key implictly mean unique = True. Django suggest using OneToOneField Similarly, https://github.com/ASKBOT/askbot-devel/blob/master/askbot/deps/group_messaging/models.py Line 102: `...

How can we propagate logout to all the clients when one of the client(application) performs a logout by hitting application/**oauth/logout**? Right now the other application which has also logged in...

Ok, got it. Thanks. Since I didn't get any acknowledge there so I asked here.

I am also not sure @paulfantom. Can we just add a `fsSelector` for Nodes dashboard?

`alertmanager_cluster_health_score` ![image](https://user-images.githubusercontent.com/15362871/95717581-c67c7f00-0c8a-11eb-8790-66958d885b93.png) `rate(alertmanager_cluster_peers_left_total[5m])` ![image](https://user-images.githubusercontent.com/15362871/95717389-80bfb680-0c8a-11eb-814b-37a8ccee4da6.png) `rate(alertmanager_cluster_reconnections_total[5m])` ![image](https://user-images.githubusercontent.com/15362871/95717606-ced4ba00-0c8a-11eb-90da-3847eb246180.png) `rate(alertmanager_cluster_reconnections_failed_total[5m])` ![image](https://user-images.githubusercontent.com/15362871/95717647-ddbb6c80-0c8a-11eb-8a74-cd9afda331b8.png) `histogram_quantile(0.9,rate(alertmanager_cluster_pings_seconds_bucket[5m]))` ![image](https://user-images.githubusercontent.com/15362871/95717783-16f3dc80-0c8b-11eb-84f9-e0058ee23a40.png) Logs Alertmanager 1 ``` {"log":"level=debug ts=2020-10-12T03:18:09.355Z caller=cluster.go:306 component=cluster memberlist=\"2020/10/12 03:18:09 [DEBUG] memberlist: Stream connection from=172.25.24.112:47398\\n\"\n","stream":"stderr","time":"2020-10-12T03:18:09.355533427Z"} {"log":"level=debug ts=2020-10-12T03:18:09.362Z caller=delegate.go:230 component=cluster received=NotifyJoin...

I have not mentioned `--cluster.listen-address` in the arguments for the container so it'll use the default value of "0.0.0.0:9094". I have exposed docker container 9093, 9094 port with host networking....

I have not enabled UDP port on 9094. But now I have enabled TCP as well UDP now on PORT 9094. ``` cdn-registry-1.docker.io/prom/alertmanager:v0.21.0 0.0.0.0:9093-9094->9093-9094/tcp, 0.0.0.0:9094->9094/udp alertmanager ``` **But still, logs...

After opening UDP port on 9094 along with TCP and allowing UDP access in Security Groups of AWS for port 9094. Still, we are facing a clustering issue on one...

yes, it is still an issue. Need to find a way to code it. Please have a look if you can figure it out.