Shubham Choudhary
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`  `rate(alertmanager_cluster_peers_left_total[5m])`  `rate(alertmanager_cluster_reconnections_total[5m])`  `rate(alertmanager_cluster_reconnections_failed_total[5m])`  `histogram_quantile(0.9,rate(alertmanager_cluster_pings_seconds_bucket[5m]))`  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.