See this list of “Privacy-Conscious Email Services”
- 3 Posts
- 19 Comments
I found this site that tracks uptime of lemmy services. They have an API that helps you construct a query in the WUI.
Or you can use cURL to get the uptime of all known lemmy instances
curl 'https://api.fediverse.observer/' -X POST -H 'Accept: */*' -H 'Accept-Language: en-US,en;q=0.5' -H 'Content-Type: application/json' --data-raw '{"query":"query{\n nodes (softwarename: \"lemmy\") {\ndomain uptime_alltime\n }\n}\n"}'
See also:
@mobiuscoffee@sh.itjust.works found one that monitors uptime!
Anyone know who runs that site? Do they have an account here on lemmy?
Ideally I’d want something that I just feed a config file, a sqlite db file, tell it to “run”, and then it spits-out the uptime for each site
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•What's the difference between "linked", "allowed", and "blocked"1·2 years agoInteresting. So I guess that functionality is disabled when the admin has a non-null list set for
allowed
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•What's the difference between "linked", "allowed", and "blocked"1·2 years agoSo if a user searches for a community on another instance, does that mean that the instance that they’re following is automatically added to the
linked
list or no?If so, does that happen when they subscribe or when they search?
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•What's the difference between "linked", "allowed", and "blocked"1·2 years agoLinked just means they actively federate
What does “actively federate” mean? What does it mean to be “inactively federating”?
What impact does it have on the user of these instances?
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•What's the difference between "linked", "allowed", and "blocked"1·2 years agoSee also
Regarding “federation state”: You can have a blocklist, then Lemmy will federate with every instance except blocked ones. Or have an allowlist, then it will only federate with the allowed ones. If neither is set then it also federate with everything. Using allowlist and blocklist together doesnt make much sense, then it would only federate with allowed instances which are not in the blocklist.
…but this doesn’t address what
linked
does
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•What's the difference between "linked", "allowed", and "blocked"1·2 years agoSee also
Is it possible to query a lemmy instance’s Federation State?
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English1·2 years agoThanks. See also https://github.com/LemmyNet/lemmy-stats-crawler/issues/4
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English1·2 years agowait but there’s three states. If it’s not
allowlist
then it’s eitheropen
orblocklist
– according to the documentation.Are you suggesting that if both are null then the federation state is set to
open
?
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English2·2 years agoThanks! I can’t find any field that specifies
open
orblocklist
orallowlist
but I do see arrays forlinked
andallowed
andblocked
. My best-guess is:- if
allowed
is not null, then the server’s federation is inallowlist
state - if
blocked
is not null, then the server’s federation is inblocklist
state
…but I could be totally wrong
And I don’t know how to determine if the server’s federation state is
open
.It would be good if we had three example servers – one in each state (
open
,blocklist
, andallowlist
) so that I could compare the API’s output for each.Edit: /u/Nutomic clarified this on GitHub:
Regarding “federation state”: You can have a blocklist, then Lemmy will federate with every instance except blocked ones. Or have an allowlist, then it will only federate with the allowed ones. If neither is set then it also federate with everything. Using allowlist and blocklist together doesnt make much sense, then it would only federate with allowed instances which are not in the blocklist.
- if
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English1·2 years agoThe sourcecode is here afaict https://codeberg.org/wintermute/lemmymap
It says they use lemmy-stats-crawler, but I can’t get it to run on Debian 11. And I can’t open issues on that repo.
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English3·2 years agothanks! Unfortunately that site is basically unuseable for me, but perhaps if we dig into their code, we’ll find how they figure out the federation state…
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English2·2 years agoanyway, I’m posting here to figure out what data can be queried. Otherwise, it’s manual entry and that’s a maintenance nightmare.
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English3·2 years agothat’s my issue ;)
maltfield@lemmy.mlOPto asklemmy@lemmy.ml•Is it possible to query a lemmy instance's Federation State?English2·2 years agoRelated: see also my feature request for join-lemmy.org to display this information about each instance in a data table that compares each instance available:
The
awesome-lemmy-instances
repo on GitHub displays uptime: