├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── LODCloud_SPARQL_Endpoints.ttl ├── README.md ├── diff-status.sh ├── latest-status.ttl ├── status-check.sparql ├── trash ├── README.md ├── alive-endpoints-2020-03-12.ttl ├── resources │ ├── sparql-endpoints-from-andre-status.trig │ ├── sparql-endpoints-from-andre.ttl │ ├── sparql-endpoints-from-sparqles-api-status.trig │ └── sparql-endpoints-from-sparqles-api.ttl ├── scripts │ ├── check-endpoint-status.sparql │ ├── check-test.sparql │ ├── extract-alive-endpoints.sparql │ ├── rdfize-endpoints-from-andre.sparql │ └── rdfize-endpoints-from-sparqles-api.sparql └── sparql-service-description.ttl └── update-status.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | on: 3 | schedule: 4 | - cron: '0 * * * *' 5 | 6 | jobs: 7 | update-sparql-endpoint-status: 8 | runs-on: ubuntu-latest 9 | name: Update SPARQL Endpoint Service Status 10 | steps: 11 | - uses: actions/checkout@v1 12 | - name: Run service check 13 | run: ./update-status.sh 14 | - name: Commit files 15 | run: | 16 | git diff-index --quiet HEAD || git add latest-status.ttl 17 | git config --local user.email "cstadler@informatik.uni-leipzig.de" 18 | git config --local user.name "Claus Stadler" 19 | git diff-index --quiet HEAD || git commit -m "Automatic status update" -a 20 | - name: Push changes 21 | uses: ad-m/github-push-action@master 22 | with: 23 | github_token: ${{ secrets.GITHUB_TOKEN }} 24 | 25 | 26 | # - name: Upload status 27 | # uses: actions/upload-artifact@v1 28 | # with: 29 | # name: status 30 | # path: status.trig 31 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Linked Open Data and SPARQL Endpoints Observatory 2 | 3 | This repo provides automated service monitoring of SPARQL Endpoints on an hourly basis. 4 | The results are published in the file [latest-status.ttl](https://github.com/SmartDataAnalytics/lodservatory/blob/master/latest-status.ttl). 5 | Many Linked Data clients can consume the data directly from 6 | 7 | https://raw.githubusercontent.com/SmartDataAnalytics/lodservatory/master/latest-status.ttl 8 | 9 | ### How Does It Work 10 | 11 | There is [this git action](.github/workflows/main.yml) which invokes the following process every hour. 12 | 13 | The script [update-status.sh](update-status.sh) first downloads [OpenLink's SPARQL endpoint dataset](https://github.com/OpenLinkSoftware/general-turtle-doc-collection/blob/master/LODCloud_SPARQL_Endpoints.ttl) and then runs the SPARQL query in [status-check.sparql](status-check.sparql) on each endpoint URL. 14 | 15 | The workflow runner is our [sparql-integrate command line tool](https://github.com/SmartDataAnalytics/Sparqlintegrate), built on [Apache Jena](https://jena.apache.org/), which simplifies the process of mashing-up RDF datasets and SPARQL queries. 16 | 17 | ### Is Service Monitoring using GitActions Permitted? 18 | According to this answer to my question: [Yes](https://github.com/orgs/community/discussions/26140) 19 | 20 | ### How To Contribute... 21 | 22 | #### ... New Endpoints? 23 | This project uses 24 | [OpenLink's SPARQL endpoint dataset](https://github.com/OpenLinkSoftware/general-turtle-doc-collection/blob/master/LODCloud_SPARQL_Endpoints.ttl) as the source, please make pull requests there. 25 | 26 | #### ... Additional Service Information? 27 | As github has API limits (1000 requests per hour) it may be better to make separate projects for other kind of information, such as void descriptions. Note, that one can use this service status dataset as the basis in order to not waste requests! 28 | 29 | Feel free to contribute your ideas on the issue tracker. 30 | 31 | ### How Can I Monitor My Own Endpoints? 32 | 33 | Just clone the repo and use a different dataset of endpoints as the source. 34 | 35 | ### Licence 36 | The source code of this repo is published under the [Apache License Version 2.0](LICENSE). 37 | 38 | 39 | -------------------------------------------------------------------------------- /diff-status.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Purpose: Prevent update of service status time stamps if the status has not changed 4 | 5 | 6 | CURRENT="$1" 7 | NEXT="$2" 8 | 9 | [ -f "$CURRENT" ] || touch "$CURRENT" 10 | 11 | # Load the old status 12 | # Copy it to a named graph (we should add a short cut for this) 13 | # Laod the current status into the default graph 14 | # Replace new timestamps in the default graph with the old ones from the named graph if the status is still the same 15 | java -cp si.jar sparqlintegrate --w=trig/pretty \ 16 | "$CURRENT" \ 17 | 'DELETE { ?s ?p ?o } INSERT { GRAPH eg:old { ?s ?p ?o } } WHERE { ?s ?p ?o }' \ 18 | "$NEXT" \ 19 | 'PREFIX schema: DELETE { ?s schema:dateModified ?newTime } INSERT { ?s schema:dateModified ?oldTime } WHERE { ?s schema:serverStatus ?newStatus ; schema:dateModified ?newTime GRAPH ?g { ?s schema:serverStatus ?oldStatus ; schema:dateModified ?oldTime } FILTER(?oldStatus = ?newStatus) }' \ 20 | 'CONSTRUCT WHERE { ?s ?p ?o } ORDER BY ?s ?p ?o' 21 | 22 | 23 | -------------------------------------------------------------------------------- /latest-status.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartDataAnalytics/lodservatory/2d0b621e6db16e99418f5bdf5e229ab720eb1a27/latest-status.ttl -------------------------------------------------------------------------------- /status-check.sparql: -------------------------------------------------------------------------------- 1 | PREFIX eg: 2 | PREFIX sd: 3 | PREFIX schema: 4 | 5 | CONSTRUCT { 6 | GRAPH ?g { 7 | ?s 8 | a sd:Service ; 9 | sd:endpoint ?e ; 10 | schema:serverStatus ?status ; 11 | schema:dateModified ?time ; 12 | . 13 | } 14 | } 15 | { 16 | BIND(NOW() AS ?time) 17 | 18 | GRAPH ?g { ?s sd:endpoint ?e } 19 | 20 | OPTIONAL { 21 | SERVICE SILENT ?e { 22 | { SELECT ?t { ?x ?y ?t } LIMIT 1 } 23 | } 24 | } 25 | 26 | # This is a best-effort query; it assumes at least one type triple in the default graph 27 | # It should work for 99% of the cases 28 | # The issue is, that I don't trust lecacy endpoints to handle ?s ?p ?o well 29 | # (especially mysql based ones: first copy everything into a temporary table of everything, than pick the 1 result...) 30 | # And some may even complain about exceeded execution time estimations 31 | BIND(IF(BOUND(?t), schema:Online, schema:OfflineTemporarily) AS ?status) 32 | } 33 | -------------------------------------------------------------------------------- /trash/README.md: -------------------------------------------------------------------------------- 1 | # Linked Open Data and SPARQL Endpoints Observatory 2 | 3 | **Work in progress** 4 | 5 | This repository features community datasets about SPARQL endpoints and datasets using the [DCAT2](https://www.w3.org/TR/vocab-dcat-2/) and [Service Description](https://www.w3.org/TR/sparql11-service-description/) data models as the backbone. 6 | 7 | What the community gets from this 8 | 9 | * A list of service URLS 10 | * Dataset identifiers and their relations to services that host them 11 | * Service Status information (online/offline) 12 | * More information to come 13 | 14 | Although https://sparqles.ai.wu.ac.at/ has a nice user interface and features a non-RDF API, this repo demonstrates, that combining a dataset of sparql endpoints with a sparql query that retrieves the online status with a git action is sufficient to automatically publish time-slice datasets with service status information. 15 | 16 | 17 | ## How does it work 18 | This repo demonstrates our mighty [sparql-integrate](https://github.com/SmartDataAnalytics/SparqlIntegrate) toolkit. It is simply a Java command line tool that combines RDF dataset and RDF stream processing using the commands `sparqlintegrate` and `ngs`. The latter stands for "named graph stream". You can either build sparql-integrate yourself, or download the jar bundle from the [releases section](https://github.com/SmartDataAnalytics/SparqlIntegrate/releases). 19 | 20 | 21 | The whole workflow is just this: 22 | ```bash 23 | # Load the endpoint dataset and map it to a set of named graphs 24 | java -cp si.jar sparqlintegrate \ 25 | alive-endpoints-latest.ttl \ 26 | playground/endpoint-to-graph.sparql | \ 27 | # Map the set of named graphs in PARALLEL! through the status check sparql query 28 | # whereas -t specifies the connection timeout, query timeout 29 | java -cp si.jar ngs \ 30 | map -t '5000,5000' --sparql playground/check-test.sparql |\ 31 | # Combine the triples of resulting named graphs into a single dataset 32 | # --u is union named graph mode, so ?s ?p ?o runs over all named graphs 33 | java -cp si.jar sparqlintegrate --w=trig/pretty \ 34 | --u - 'CONSTRUCT WHERE { ?s ?p ?o }' > latest-status.ttl 35 | ``` 36 | 37 | ## Is doing remote requests with GitActions permitted 38 | 39 | According to [this answer](https://github.community/t5/GitHub-Actions/Is-it-permitted-to-do-Remote-Requests-for-Service-Monitoring/m-p/50071#M7696): yes. 40 | 41 | 42 | ## Register your own endpoint 43 | (This is work in progress; it not yet implemented) 44 | 45 | 46 | ### Register a query that fetches data from your API 47 | 48 | Create a query just like [this one](https://github.com/SmartDataAnalytics/lodservatory/blob/master/scripts/rdfize-endpoints-from-sparqles-api.sparql) that extracts the JSON from the sparqles API as RDF. 49 | 50 | ### Register the actual data 51 | 52 | * Create a folder for the endpoint URL in the service directory. Omit the scheme (http(s)), reverse the host name (like Java packages), and create sub directories according to the path part of the URL. For example, `http://dbpedia.org/sparql` would turn into `services/org/dbpedia/sparql` 53 | * Create a description of the service and the dataset it provides. In the simplest case this is just the endpointURL. DCAT distributions capture technical aspects of dataset distributions, and the graph(s) in which is it is hosted is such as aspect. 54 | Note, that if the data hosted in a SPARQL endpoint does not exacly match a given dataset identifier, consider using a fresh dataset identifier such as 'http://your.endpoint/sparql#dataset`. 55 | 56 | ```turtle 57 | #service.ttl 58 | 59 | a cat:DataService ; 60 | cat:endpointURL ; 61 | . 62 | 63 | 64 | # <- Dataset identifier 65 | a cat:Dataset ; 66 | cat:distribution [ 67 | a cat:Distribution ; 68 | cat:accessURL ; 69 | catx:graphs () # <- Constrain the distribution to this graph 70 | ] 71 | ``` 72 | TODO Decide on catx namespace. 73 | 74 | 75 | ### Link to a remote description 76 | Maybe you have your own git repo, sparql endpoint, or other source of information. 77 | In that case there is no need to duplicate the information, but instead you can link to it. 78 | 79 | 80 | #### Linking with Conjure 81 | [Conjure](https://github.com/SmartDataAnalytics/Conjure/) is a system for referencing and transforming RDF data by means of workflows which can use hybrid ETL and query answering over views. 82 | 83 | The simplest workflow specification is a simple URL reference. Any detected conjure descriptions will be transcluded into the _effective_ `service.ttl` file. 84 | ``` 85 | #service.ttl 86 | @prefix rpif: . 87 | 88 | [] 89 | a rpif:DataRefUrl ; 90 | rpif:dataRefUrl ; 91 | . 92 | ``` 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /trash/alive-endpoints-2020-03-12.ttl: -------------------------------------------------------------------------------- 1 | @prefix rdf: . 2 | @prefix cat: . 3 | 4 | 5 | a cat:DataService ; 6 | cat:endpointURL . 7 | 8 | 9 | a cat:DataService ; 10 | cat:endpointURL . 11 | 12 | 13 | a cat:DataService ; 14 | cat:endpointURL . 15 | 16 | 17 | a cat:DataService ; 18 | cat:endpointURL . 19 | 20 | 21 | a cat:DataService ; 22 | cat:endpointURL . 23 | 24 | 25 | a cat:DataService ; 26 | cat:endpointURL . 27 | 28 | 29 | a cat:DataService ; 30 | cat:endpointURL . 31 | 32 | 33 | a cat:DataService ; 34 | cat:endpointURL . 35 | 36 | 37 | a cat:DataService ; 38 | cat:endpointURL . 39 | 40 | 41 | a cat:DataService ; 42 | cat:endpointURL . 43 | 44 | 45 | a cat:DataService ; 46 | cat:endpointURL . 47 | 48 | 49 | a cat:DataService ; 50 | cat:endpointURL . 51 | 52 | 53 | a cat:DataService ; 54 | cat:endpointURL . 55 | 56 | 57 | a cat:DataService ; 58 | cat:endpointURL . 59 | 60 | 61 | a cat:DataService ; 62 | cat:endpointURL . 63 | 64 | 65 | a cat:DataService ; 66 | cat:endpointURL . 67 | 68 | 69 | a cat:DataService ; 70 | cat:endpointURL . 71 | 72 | 73 | a cat:DataService ; 74 | cat:endpointURL . 75 | 76 | 77 | a cat:DataService ; 78 | cat:endpointURL . 79 | 80 | 81 | a cat:DataService ; 82 | cat:endpointURL . 83 | 84 | 85 | a cat:DataService ; 86 | cat:endpointURL . 87 | 88 | 89 | a cat:DataService ; 90 | cat:endpointURL . 91 | 92 | 93 | a cat:DataService ; 94 | cat:endpointURL . 95 | 96 | 97 | a cat:DataService ; 98 | cat:endpointURL . 99 | 100 | 101 | a cat:DataService ; 102 | cat:endpointURL . 103 | 104 | 105 | a cat:DataService ; 106 | cat:endpointURL . 107 | 108 | 109 | a cat:DataService ; 110 | cat:endpointURL . 111 | 112 | 113 | a cat:DataService ; 114 | cat:endpointURL . 115 | 116 | 117 | a cat:DataService ; 118 | cat:endpointURL . 119 | 120 | 121 | a cat:DataService ; 122 | cat:endpointURL . 123 | 124 | 125 | a cat:DataService ; 126 | cat:endpointURL . 127 | 128 | 129 | a cat:DataService ; 130 | cat:endpointURL . 131 | 132 | 133 | a cat:DataService ; 134 | cat:endpointURL . 135 | 136 | 137 | a cat:DataService ; 138 | cat:endpointURL . 139 | 140 | 141 | a cat:DataService ; 142 | cat:endpointURL . 143 | 144 | 145 | a cat:DataService ; 146 | cat:endpointURL . 147 | 148 | 149 | a cat:DataService ; 150 | cat:endpointURL . 151 | 152 | 153 | a cat:DataService ; 154 | cat:endpointURL . 155 | 156 | 157 | a cat:DataService ; 158 | cat:endpointURL . 159 | 160 | 161 | a cat:DataService ; 162 | cat:endpointURL . 163 | 164 | 165 | a cat:DataService ; 166 | cat:endpointURL . 167 | 168 | 169 | a cat:DataService ; 170 | cat:endpointURL . 171 | 172 | 173 | a cat:DataService ; 174 | cat:endpointURL . 175 | 176 | 177 | a cat:DataService ; 178 | cat:endpointURL . 179 | 180 | 181 | a cat:DataService ; 182 | cat:endpointURL . 183 | 184 | 185 | a cat:DataService ; 186 | cat:endpointURL . 187 | 188 | 189 | a cat:DataService ; 190 | cat:endpointURL . 191 | 192 | 193 | a cat:DataService ; 194 | cat:endpointURL . 195 | 196 | 197 | a cat:DataService ; 198 | cat:endpointURL . 199 | 200 | 201 | a cat:DataService ; 202 | cat:endpointURL . 203 | 204 | 205 | a cat:DataService ; 206 | cat:endpointURL . 207 | 208 | 209 | a cat:DataService ; 210 | cat:endpointURL . 211 | 212 | 213 | a cat:DataService ; 214 | cat:endpointURL . 215 | 216 | 217 | a cat:DataService ; 218 | cat:endpointURL . 219 | 220 | 221 | a cat:DataService ; 222 | cat:endpointURL . 223 | 224 | 225 | a cat:DataService ; 226 | cat:endpointURL . 227 | 228 | 229 | a cat:DataService ; 230 | cat:endpointURL . 231 | 232 | 233 | a cat:DataService ; 234 | cat:endpointURL . 235 | 236 | 237 | a cat:DataService ; 238 | cat:endpointURL . 239 | 240 | 241 | a cat:DataService ; 242 | cat:endpointURL . 243 | 244 | 245 | a cat:DataService ; 246 | cat:endpointURL . 247 | 248 | 249 | a cat:DataService ; 250 | cat:endpointURL . 251 | 252 | 253 | a cat:DataService ; 254 | cat:endpointURL . 255 | 256 | 257 | a cat:DataService ; 258 | cat:endpointURL . 259 | 260 | 261 | a cat:DataService ; 262 | cat:endpointURL . 263 | 264 | 265 | a cat:DataService ; 266 | cat:endpointURL . 267 | 268 | 269 | a cat:DataService ; 270 | cat:endpointURL . 271 | 272 | 273 | a cat:DataService ; 274 | cat:endpointURL . 275 | 276 | 277 | a cat:DataService ; 278 | cat:endpointURL . 279 | 280 | 281 | a cat:DataService ; 282 | cat:endpointURL . 283 | 284 | 285 | a cat:DataService ; 286 | cat:endpointURL . 287 | 288 | 289 | a cat:DataService ; 290 | cat:endpointURL . 291 | 292 | 293 | a cat:DataService ; 294 | cat:endpointURL . 295 | 296 | 297 | a cat:DataService ; 298 | cat:endpointURL . 299 | 300 | 301 | a cat:DataService ; 302 | cat:endpointURL . 303 | 304 | 305 | a cat:DataService ; 306 | cat:endpointURL . 307 | 308 | 309 | a cat:DataService ; 310 | cat:endpointURL . 311 | 312 | 313 | a cat:DataService ; 314 | cat:endpointURL . 315 | 316 | 317 | a cat:DataService ; 318 | cat:endpointURL . 319 | 320 | 321 | a cat:DataService ; 322 | cat:endpointURL . 323 | 324 | 325 | a cat:DataService ; 326 | cat:endpointURL . 327 | 328 | 329 | a cat:DataService ; 330 | cat:endpointURL . 331 | 332 | 333 | a cat:DataService ; 334 | cat:endpointURL . 335 | 336 | 337 | a cat:DataService ; 338 | cat:endpointURL . 339 | 340 | 341 | a cat:DataService ; 342 | cat:endpointURL . 343 | 344 | 345 | a cat:DataService ; 346 | cat:endpointURL . 347 | 348 | 349 | a cat:DataService ; 350 | cat:endpointURL . 351 | 352 | 353 | a cat:DataService ; 354 | cat:endpointURL . 355 | 356 | 357 | a cat:DataService ; 358 | cat:endpointURL . 359 | 360 | 361 | a cat:DataService ; 362 | cat:endpointURL . 363 | 364 | 365 | a cat:DataService ; 366 | cat:endpointURL . 367 | 368 | 369 | a cat:DataService ; 370 | cat:endpointURL . 371 | 372 | 373 | a cat:DataService ; 374 | cat:endpointURL . 375 | 376 | 377 | a cat:DataService ; 378 | cat:endpointURL . 379 | 380 | 381 | a cat:DataService ; 382 | cat:endpointURL . 383 | 384 | 385 | a cat:DataService ; 386 | cat:endpointURL . 387 | 388 | 389 | a cat:DataService ; 390 | cat:endpointURL . 391 | 392 | 393 | a cat:DataService ; 394 | cat:endpointURL . 395 | 396 | 397 | a cat:DataService ; 398 | cat:endpointURL . 399 | 400 | 401 | a cat:DataService ; 402 | cat:endpointURL . 403 | 404 | 405 | a cat:DataService ; 406 | cat:endpointURL . 407 | 408 | 409 | a cat:DataService ; 410 | cat:endpointURL . 411 | 412 | 413 | a cat:DataService ; 414 | cat:endpointURL . 415 | 416 | 417 | a cat:DataService ; 418 | cat:endpointURL . 419 | 420 | 421 | a cat:DataService ; 422 | cat:endpointURL . 423 | 424 | 425 | a cat:DataService ; 426 | cat:endpointURL . 427 | 428 | 429 | a cat:DataService ; 430 | cat:endpointURL . 431 | 432 | 433 | a cat:DataService ; 434 | cat:endpointURL . 435 | 436 | 437 | a cat:DataService ; 438 | cat:endpointURL . 439 | 440 | 441 | a cat:DataService ; 442 | cat:endpointURL . 443 | 444 | 445 | a cat:DataService ; 446 | cat:endpointURL . 447 | 448 | 449 | a cat:DataService ; 450 | cat:endpointURL . 451 | 452 | 453 | a cat:DataService ; 454 | cat:endpointURL . 455 | 456 | 457 | a cat:DataService ; 458 | cat:endpointURL . 459 | 460 | 461 | a cat:DataService ; 462 | cat:endpointURL . 463 | 464 | 465 | a cat:DataService ; 466 | cat:endpointURL . 467 | 468 | 469 | a cat:DataService ; 470 | cat:endpointURL . 471 | 472 | 473 | a cat:DataService ; 474 | cat:endpointURL . 475 | 476 | 477 | a cat:DataService ; 478 | cat:endpointURL . 479 | 480 | 481 | a cat:DataService ; 482 | cat:endpointURL . 483 | 484 | 485 | a cat:DataService ; 486 | cat:endpointURL . 487 | 488 | 489 | a cat:DataService ; 490 | cat:endpointURL . 491 | 492 | 493 | a cat:DataService ; 494 | cat:endpointURL . 495 | 496 | 497 | a cat:DataService ; 498 | cat:endpointURL . 499 | 500 | 501 | a cat:DataService ; 502 | cat:endpointURL . 503 | 504 | 505 | a cat:DataService ; 506 | cat:endpointURL . 507 | 508 | 509 | a cat:DataService ; 510 | cat:endpointURL . 511 | 512 | 513 | a cat:DataService ; 514 | cat:endpointURL . 515 | 516 | 517 | a cat:DataService ; 518 | cat:endpointURL . 519 | 520 | 521 | a cat:DataService ; 522 | cat:endpointURL . 523 | 524 | 525 | a cat:DataService ; 526 | cat:endpointURL . 527 | 528 | 529 | a cat:DataService ; 530 | cat:endpointURL . 531 | 532 | 533 | a cat:DataService ; 534 | cat:endpointURL . 535 | 536 | 537 | a cat:DataService ; 538 | cat:endpointURL . 539 | 540 | 541 | a cat:DataService ; 542 | cat:endpointURL . 543 | 544 | 545 | a cat:DataService ; 546 | cat:endpointURL . 547 | 548 | 549 | a cat:DataService ; 550 | cat:endpointURL . 551 | 552 | 553 | a cat:DataService ; 554 | cat:endpointURL . 555 | 556 | 557 | a cat:DataService ; 558 | cat:endpointURL . 559 | 560 | 561 | a cat:DataService ; 562 | cat:endpointURL . 563 | 564 | 565 | a cat:DataService ; 566 | cat:endpointURL . 567 | 568 | 569 | a cat:DataService ; 570 | cat:endpointURL . 571 | 572 | 573 | a cat:DataService ; 574 | cat:endpointURL . 575 | 576 | 577 | a cat:DataService ; 578 | cat:endpointURL . 579 | 580 | 581 | a cat:DataService ; 582 | cat:endpointURL . 583 | 584 | 585 | a cat:DataService ; 586 | cat:endpointURL . 587 | 588 | 589 | a cat:DataService ; 590 | cat:endpointURL . 591 | 592 | 593 | a cat:DataService ; 594 | cat:endpointURL . 595 | 596 | 597 | a cat:DataService ; 598 | cat:endpointURL . 599 | 600 | 601 | a cat:DataService ; 602 | cat:endpointURL . 603 | 604 | 605 | a cat:DataService ; 606 | cat:endpointURL . 607 | 608 | 609 | a cat:DataService ; 610 | cat:endpointURL . 611 | 612 | 613 | a cat:DataService ; 614 | cat:endpointURL . 615 | 616 | 617 | a cat:DataService ; 618 | cat:endpointURL . 619 | 620 | 621 | a cat:DataService ; 622 | cat:endpointURL . 623 | 624 | 625 | a cat:DataService ; 626 | cat:endpointURL . 627 | 628 | 629 | a cat:DataService ; 630 | cat:endpointURL . 631 | 632 | 633 | a cat:DataService ; 634 | cat:endpointURL . 635 | 636 | 637 | a cat:DataService ; 638 | cat:endpointURL . 639 | 640 | 641 | a cat:DataService ; 642 | cat:endpointURL . 643 | 644 | 645 | a cat:DataService ; 646 | cat:endpointURL . 647 | 648 | 649 | a cat:DataService ; 650 | cat:endpointURL . 651 | 652 | 653 | a cat:DataService ; 654 | cat:endpointURL . 655 | 656 | 657 | a cat:DataService ; 658 | cat:endpointURL . 659 | 660 | 661 | a cat:DataService ; 662 | cat:endpointURL . 663 | 664 | 665 | a cat:DataService ; 666 | cat:endpointURL . 667 | 668 | 669 | a cat:DataService ; 670 | cat:endpointURL . 671 | 672 | 673 | a cat:DataService ; 674 | cat:endpointURL . 675 | 676 | 677 | a cat:DataService ; 678 | cat:endpointURL . 679 | 680 | 681 | a cat:DataService ; 682 | cat:endpointURL . 683 | 684 | 685 | a cat:DataService ; 686 | cat:endpointURL . 687 | 688 | 689 | a cat:DataService ; 690 | cat:endpointURL . 691 | 692 | 693 | a cat:DataService ; 694 | cat:endpointURL . 695 | 696 | 697 | a cat:DataService ; 698 | cat:endpointURL . 699 | 700 | 701 | a cat:DataService ; 702 | cat:endpointURL . 703 | 704 | 705 | a cat:DataService ; 706 | cat:endpointURL . 707 | 708 | 709 | a cat:DataService ; 710 | cat:endpointURL . 711 | 712 | 713 | a cat:DataService ; 714 | cat:endpointURL . 715 | 716 | 717 | a cat:DataService ; 718 | cat:endpointURL . 719 | 720 | 721 | a cat:DataService ; 722 | cat:endpointURL . 723 | 724 | 725 | a cat:DataService ; 726 | cat:endpointURL . 727 | 728 | 729 | a cat:DataService ; 730 | cat:endpointURL . 731 | 732 | 733 | a cat:DataService ; 734 | cat:endpointURL . 735 | 736 | 737 | a cat:DataService ; 738 | cat:endpointURL . 739 | 740 | 741 | a cat:DataService ; 742 | cat:endpointURL . 743 | -------------------------------------------------------------------------------- /trash/resources/sparql-endpoints-from-andre-status.trig: -------------------------------------------------------------------------------- 1 | { 2 | 3 | 4 | "online" ; 5 | 6 | "2020-03-12T20:08:25.585+01:00"^^ . 7 | 8 | 9 | 10 | "online" ; 11 | 12 | "2020-03-12T20:08:25.585+01:00"^^ . 13 | 14 | 15 | 16 | "offline" ; 17 | 18 | "2020-03-12T20:08:25.585+01:00"^^ . 19 | 20 | 21 | 22 | "offline" ; 23 | 24 | "2020-03-12T20:08:25.585+01:00"^^ . 25 | 26 | 27 | 28 | "offline" ; 29 | 30 | "2020-03-12T20:08:25.585+01:00"^^ . 31 | 32 | 33 | 34 | "offline" ; 35 | 36 | "2020-03-12T20:08:25.585+01:00"^^ . 37 | 38 | 39 | 40 | "offline" ; 41 | 42 | "2020-03-12T20:08:25.585+01:00"^^ . 43 | 44 | 45 | 46 | "offline" ; 47 | 48 | "2020-03-12T20:08:25.585+01:00"^^ . 49 | 50 | 51 | 52 | "offline" ; 53 | 54 | "2020-03-12T20:08:25.585+01:00"^^ . 55 | 56 | 57 | 58 | "online" ; 59 | 60 | "2020-03-12T20:08:25.585+01:00"^^ . 61 | 62 | 63 | 64 | "offline" ; 65 | 66 | "2020-03-12T20:08:25.585+01:00"^^ . 67 | 68 | 69 | 70 | "offline" ; 71 | 72 | "2020-03-12T20:08:25.585+01:00"^^ . 73 | 74 | 75 | 76 | "offline" ; 77 | 78 | "2020-03-12T20:08:25.585+01:00"^^ . 79 | 80 | 81 | 82 | "online" ; 83 | 84 | "2020-03-12T20:08:25.585+01:00"^^ . 85 | 86 | 87 | 88 | "offline" ; 89 | 90 | "2020-03-12T20:08:25.585+01:00"^^ . 91 | 92 | 93 | 94 | "offline" ; 95 | 96 | "2020-03-12T20:08:25.585+01:00"^^ . 97 | 98 | 99 | 100 | "online" ; 101 | 102 | "2020-03-12T20:08:25.585+01:00"^^ . 103 | 104 | 105 | 106 | "online" ; 107 | 108 | "2020-03-12T20:08:25.585+01:00"^^ . 109 | 110 | 111 | 112 | "offline" ; 113 | 114 | "2020-03-12T20:08:25.585+01:00"^^ . 115 | 116 | 117 | 118 | "offline" ; 119 | 120 | "2020-03-12T20:08:25.585+01:00"^^ . 121 | 122 | 123 | 124 | "offline" ; 125 | 126 | "2020-03-12T20:08:25.585+01:00"^^ . 127 | 128 | 129 | 130 | "online" ; 131 | 132 | "2020-03-12T20:08:25.585+01:00"^^ . 133 | 134 | 135 | 136 | "offline" ; 137 | 138 | "2020-03-12T20:08:25.585+01:00"^^ . 139 | 140 | 141 | 142 | "online" ; 143 | 144 | "2020-03-12T20:08:25.585+01:00"^^ . 145 | 146 | 147 | 148 | "offline" ; 149 | 150 | "2020-03-12T20:08:25.585+01:00"^^ . 151 | 152 | 153 | 154 | "offline" ; 155 | 156 | "2020-03-12T20:08:25.585+01:00"^^ . 157 | 158 | 159 | 160 | "offline" ; 161 | 162 | "2020-03-12T20:08:25.585+01:00"^^ . 163 | 164 | 165 | 166 | "offline" ; 167 | 168 | "2020-03-12T20:08:25.585+01:00"^^ . 169 | 170 | 171 | 172 | "online" ; 173 | 174 | "2020-03-12T20:08:25.585+01:00"^^ . 175 | 176 | 177 | 178 | "online" ; 179 | 180 | "2020-03-12T20:08:25.585+01:00"^^ . 181 | 182 | 183 | 184 | "offline" ; 185 | 186 | "2020-03-12T20:08:25.585+01:00"^^ . 187 | 188 | 189 | 190 | "online" ; 191 | 192 | "2020-03-12T20:08:25.585+01:00"^^ . 193 | 194 | 195 | 196 | "offline" ; 197 | 198 | "2020-03-12T20:08:25.585+01:00"^^ . 199 | 200 | 201 | 202 | "offline" ; 203 | 204 | "2020-03-12T20:08:25.585+01:00"^^ . 205 | 206 | 207 | 208 | "offline" ; 209 | 210 | "2020-03-12T20:08:25.585+01:00"^^ . 211 | 212 | 213 | 214 | "offline" ; 215 | 216 | "2020-03-12T20:08:25.585+01:00"^^ . 217 | 218 | 219 | 220 | "online" ; 221 | 222 | "2020-03-12T20:08:25.585+01:00"^^ . 223 | 224 | 225 | 226 | "online" ; 227 | 228 | "2020-03-12T20:08:25.585+01:00"^^ . 229 | 230 | 231 | 232 | "online" ; 233 | 234 | "2020-03-12T20:08:25.585+01:00"^^ . 235 | 236 | 237 | 238 | "offline" ; 239 | 240 | "2020-03-12T20:08:25.585+01:00"^^ . 241 | 242 | 243 | 244 | "online" ; 245 | 246 | "2020-03-12T20:08:25.585+01:00"^^ . 247 | 248 | 249 | 250 | "offline" ; 251 | 252 | "2020-03-12T20:08:25.585+01:00"^^ . 253 | 254 | 255 | 256 | "online" ; 257 | 258 | "2020-03-12T20:08:25.585+01:00"^^ . 259 | 260 | 261 | 262 | "offline" ; 263 | 264 | "2020-03-12T20:08:25.585+01:00"^^ . 265 | 266 | 267 | 268 | "offline" ; 269 | 270 | "2020-03-12T20:08:25.585+01:00"^^ . 271 | 272 | 273 | 274 | "offline" ; 275 | 276 | "2020-03-12T20:08:25.585+01:00"^^ . 277 | 278 | 279 | 280 | "offline" ; 281 | 282 | "2020-03-12T20:08:25.585+01:00"^^ . 283 | 284 | 285 | 286 | "offline" ; 287 | 288 | "2020-03-12T20:08:25.585+01:00"^^ . 289 | 290 | 291 | 292 | "online" ; 293 | 294 | "2020-03-12T20:08:25.585+01:00"^^ . 295 | 296 | 297 | 298 | "offline" ; 299 | 300 | "2020-03-12T20:08:25.585+01:00"^^ . 301 | 302 | 303 | 304 | "offline" ; 305 | 306 | "2020-03-12T20:08:25.585+01:00"^^ . 307 | 308 | 309 | 310 | "online" ; 311 | 312 | "2020-03-12T20:08:25.585+01:00"^^ . 313 | 314 | 315 | 316 | "online" ; 317 | 318 | "2020-03-12T20:08:25.585+01:00"^^ . 319 | 320 | 321 | 322 | "offline" ; 323 | 324 | "2020-03-12T20:08:25.585+01:00"^^ . 325 | 326 | 327 | 328 | "online" ; 329 | 330 | "2020-03-12T20:08:25.585+01:00"^^ . 331 | 332 | 333 | 334 | "offline" ; 335 | 336 | "2020-03-12T20:08:25.585+01:00"^^ . 337 | 338 | 339 | 340 | "offline" ; 341 | 342 | "2020-03-12T20:08:25.585+01:00"^^ . 343 | 344 | 345 | 346 | "offline" ; 347 | 348 | "2020-03-12T20:08:25.585+01:00"^^ . 349 | 350 | 351 | 352 | "offline" ; 353 | 354 | "2020-03-12T20:08:25.585+01:00"^^ . 355 | 356 | 357 | 358 | "online" ; 359 | 360 | "2020-03-12T20:08:25.585+01:00"^^ . 361 | 362 | 363 | 364 | "online" ; 365 | 366 | "2020-03-12T20:08:25.585+01:00"^^ . 367 | 368 | 369 | 370 | "offline" ; 371 | 372 | "2020-03-12T20:08:25.585+01:00"^^ . 373 | 374 | 375 | 376 | "online" ; 377 | 378 | "2020-03-12T20:08:25.585+01:00"^^ . 379 | 380 | 381 | 382 | "offline" ; 383 | 384 | "2020-03-12T20:08:25.585+01:00"^^ . 385 | 386 | 387 | 388 | "offline" ; 389 | 390 | "2020-03-12T20:08:25.585+01:00"^^ . 391 | 392 | 393 | 394 | "offline" ; 395 | 396 | "2020-03-12T20:08:25.585+01:00"^^ . 397 | 398 | 399 | 400 | "offline" ; 401 | 402 | "2020-03-12T20:08:25.585+01:00"^^ . 403 | 404 | 405 | 406 | "offline" ; 407 | 408 | "2020-03-12T20:08:25.585+01:00"^^ . 409 | 410 | 411 | 412 | "online" ; 413 | 414 | "2020-03-12T20:08:25.585+01:00"^^ . 415 | 416 | 417 | 418 | "offline" ; 419 | 420 | "2020-03-12T20:08:25.585+01:00"^^ . 421 | 422 | 423 | 424 | "online" ; 425 | 426 | "2020-03-12T20:08:25.585+01:00"^^ . 427 | 428 | 429 | 430 | "online" ; 431 | 432 | "2020-03-12T20:08:25.585+01:00"^^ . 433 | 434 | 435 | 436 | "online" ; 437 | 438 | "2020-03-12T20:08:25.585+01:00"^^ . 439 | 440 | 441 | 442 | "offline" ; 443 | 444 | "2020-03-12T20:08:25.585+01:00"^^ . 445 | 446 | 447 | 448 | "offline" ; 449 | 450 | "2020-03-12T20:08:25.585+01:00"^^ . 451 | 452 | 453 | 454 | "online" ; 455 | 456 | "2020-03-12T20:08:25.585+01:00"^^ . 457 | 458 | 459 | 460 | "offline" ; 461 | 462 | "2020-03-12T20:08:25.585+01:00"^^ . 463 | 464 | 465 | 466 | "offline" ; 467 | 468 | "2020-03-12T20:08:25.585+01:00"^^ . 469 | 470 | 471 | 472 | "offline" ; 473 | 474 | "2020-03-12T20:08:25.585+01:00"^^ . 475 | 476 | 477 | 478 | "offline" ; 479 | 480 | "2020-03-12T20:08:25.585+01:00"^^ . 481 | 482 | 483 | 484 | "online" ; 485 | 486 | "2020-03-12T20:08:25.585+01:00"^^ . 487 | 488 | 489 | 490 | "offline" ; 491 | 492 | "2020-03-12T20:08:25.585+01:00"^^ . 493 | 494 | 495 | 496 | "online" ; 497 | 498 | "2020-03-12T20:08:25.585+01:00"^^ . 499 | 500 | 501 | 502 | "offline" ; 503 | 504 | "2020-03-12T20:08:25.585+01:00"^^ . 505 | 506 | 507 | 508 | "online" ; 509 | 510 | "2020-03-12T20:08:25.585+01:00"^^ . 511 | 512 | 513 | 514 | "offline" ; 515 | 516 | "2020-03-12T20:08:25.585+01:00"^^ . 517 | 518 | 519 | 520 | "online" ; 521 | 522 | "2020-03-12T20:08:25.585+01:00"^^ . 523 | 524 | 525 | 526 | "online" ; 527 | 528 | "2020-03-12T20:08:25.585+01:00"^^ . 529 | 530 | 531 | 532 | "offline" ; 533 | 534 | "2020-03-12T20:08:25.585+01:00"^^ . 535 | 536 | 537 | 538 | "online" ; 539 | 540 | "2020-03-12T20:08:25.585+01:00"^^ . 541 | 542 | 543 | 544 | "offline" ; 545 | 546 | "2020-03-12T20:08:25.585+01:00"^^ . 547 | 548 | 549 | 550 | "online" ; 551 | 552 | "2020-03-12T20:08:25.585+01:00"^^ . 553 | 554 | 555 | 556 | "online" ; 557 | 558 | "2020-03-12T20:08:25.585+01:00"^^ . 559 | 560 | 561 | 562 | "offline" ; 563 | 564 | "2020-03-12T20:08:25.585+01:00"^^ . 565 | 566 | 567 | 568 | "offline" ; 569 | 570 | "2020-03-12T20:08:25.585+01:00"^^ . 571 | 572 | 573 | 574 | "offline" ; 575 | 576 | "2020-03-12T20:08:25.585+01:00"^^ . 577 | 578 | 579 | 580 | "offline" ; 581 | 582 | "2020-03-12T20:08:25.585+01:00"^^ . 583 | 584 | 585 | 586 | "online" ; 587 | 588 | "2020-03-12T20:08:25.585+01:00"^^ . 589 | 590 | 591 | 592 | "offline" ; 593 | 594 | "2020-03-12T20:08:25.585+01:00"^^ . 595 | 596 | 597 | 598 | "online" ; 599 | 600 | "2020-03-12T20:08:25.585+01:00"^^ . 601 | 602 | 603 | 604 | "offline" ; 605 | 606 | "2020-03-12T20:08:25.585+01:00"^^ . 607 | 608 | 609 | 610 | "offline" ; 611 | 612 | "2020-03-12T20:08:25.585+01:00"^^ . 613 | 614 | 615 | 616 | "offline" ; 617 | 618 | "2020-03-12T20:08:25.585+01:00"^^ . 619 | 620 | 621 | 622 | "offline" ; 623 | 624 | "2020-03-12T20:08:25.585+01:00"^^ . 625 | 626 | 627 | 628 | "online" ; 629 | 630 | "2020-03-12T20:08:25.585+01:00"^^ . 631 | 632 | 633 | 634 | "offline" ; 635 | 636 | "2020-03-12T20:08:25.585+01:00"^^ . 637 | 638 | 639 | 640 | "online" ; 641 | 642 | "2020-03-12T20:08:25.585+01:00"^^ . 643 | 644 | 645 | 646 | "offline" ; 647 | 648 | "2020-03-12T20:08:25.585+01:00"^^ . 649 | 650 | 651 | 652 | "online" ; 653 | 654 | "2020-03-12T20:08:25.585+01:00"^^ . 655 | 656 | 657 | 658 | "offline" ; 659 | 660 | "2020-03-12T20:08:25.585+01:00"^^ . 661 | 662 | 663 | 664 | "online" ; 665 | 666 | "2020-03-12T20:08:25.585+01:00"^^ . 667 | 668 | 669 | 670 | "offline" ; 671 | 672 | "2020-03-12T20:08:25.585+01:00"^^ . 673 | 674 | 675 | 676 | "online" ; 677 | 678 | "2020-03-12T20:08:25.585+01:00"^^ . 679 | 680 | 681 | 682 | "offline" ; 683 | 684 | "2020-03-12T20:08:25.585+01:00"^^ . 685 | 686 | 687 | 688 | "online" ; 689 | 690 | "2020-03-12T20:08:25.585+01:00"^^ . 691 | 692 | 693 | 694 | "online" ; 695 | 696 | "2020-03-12T20:08:25.585+01:00"^^ . 697 | 698 | 699 | 700 | "offline" ; 701 | 702 | "2020-03-12T20:08:25.585+01:00"^^ . 703 | 704 | 705 | 706 | "online" ; 707 | 708 | "2020-03-12T20:08:25.585+01:00"^^ . 709 | 710 | 711 | 712 | "offline" ; 713 | 714 | "2020-03-12T20:08:25.585+01:00"^^ . 715 | 716 | 717 | 718 | "online" ; 719 | 720 | "2020-03-12T20:08:25.585+01:00"^^ . 721 | 722 | 723 | 724 | "offline" ; 725 | 726 | "2020-03-12T20:08:25.585+01:00"^^ . 727 | 728 | 729 | 730 | "offline" ; 731 | 732 | "2020-03-12T20:08:25.585+01:00"^^ . 733 | 734 | 735 | 736 | "online" ; 737 | 738 | "2020-03-12T20:08:25.585+01:00"^^ . 739 | 740 | 741 | 742 | "offline" ; 743 | 744 | "2020-03-12T20:08:25.585+01:00"^^ . 745 | 746 | 747 | 748 | "offline" ; 749 | 750 | "2020-03-12T20:08:25.585+01:00"^^ . 751 | 752 | 753 | 754 | "offline" ; 755 | 756 | "2020-03-12T20:08:25.585+01:00"^^ . 757 | 758 | 759 | 760 | "online" ; 761 | 762 | "2020-03-12T20:08:25.585+01:00"^^ . 763 | 764 | 765 | 766 | "offline" ; 767 | 768 | "2020-03-12T20:08:25.585+01:00"^^ . 769 | 770 | 771 | 772 | "online" ; 773 | 774 | "2020-03-12T20:08:25.585+01:00"^^ . 775 | 776 | 777 | 778 | "offline" ; 779 | 780 | "2020-03-12T20:08:25.585+01:00"^^ . 781 | 782 | 783 | 784 | "offline" ; 785 | 786 | "2020-03-12T20:08:25.585+01:00"^^ . 787 | 788 | 789 | 790 | "offline" ; 791 | 792 | "2020-03-12T20:08:25.585+01:00"^^ . 793 | 794 | 795 | 796 | "offline" ; 797 | 798 | "2020-03-12T20:08:25.585+01:00"^^ . 799 | 800 | 801 | 802 | "offline" ; 803 | 804 | "2020-03-12T20:08:25.585+01:00"^^ . 805 | 806 | 807 | 808 | "offline" ; 809 | 810 | "2020-03-12T20:08:25.585+01:00"^^ . 811 | 812 | 813 | 814 | "offline" ; 815 | 816 | "2020-03-12T20:08:25.585+01:00"^^ . 817 | 818 | 819 | 820 | "online" ; 821 | 822 | "2020-03-12T20:08:25.585+01:00"^^ . 823 | 824 | 825 | 826 | "online" ; 827 | 828 | "2020-03-12T20:08:25.585+01:00"^^ . 829 | 830 | 831 | 832 | "online" ; 833 | 834 | "2020-03-12T20:08:25.585+01:00"^^ . 835 | 836 | 837 | 838 | "online" ; 839 | 840 | "2020-03-12T20:08:25.585+01:00"^^ . 841 | 842 | 843 | 844 | "offline" ; 845 | 846 | "2020-03-12T20:08:25.585+01:00"^^ . 847 | 848 | 849 | 850 | "online" ; 851 | 852 | "2020-03-12T20:08:25.585+01:00"^^ . 853 | 854 | 855 | 856 | "offline" ; 857 | 858 | "2020-03-12T20:08:25.585+01:00"^^ . 859 | 860 | 861 | 862 | "offline" ; 863 | 864 | "2020-03-12T20:08:25.585+01:00"^^ . 865 | 866 | 867 | 868 | "offline" ; 869 | 870 | "2020-03-12T20:08:25.585+01:00"^^ . 871 | 872 | 873 | 874 | "offline" ; 875 | 876 | "2020-03-12T20:08:25.585+01:00"^^ . 877 | 878 | 879 | 880 | "online" ; 881 | 882 | "2020-03-12T20:08:25.585+01:00"^^ . 883 | 884 | 885 | 886 | "online" ; 887 | 888 | "2020-03-12T20:08:25.585+01:00"^^ . 889 | 890 | 891 | 892 | "offline" ; 893 | 894 | "2020-03-12T20:08:25.585+01:00"^^ . 895 | 896 | 897 | 898 | "offline" ; 899 | 900 | "2020-03-12T20:08:25.585+01:00"^^ . 901 | 902 | 903 | 904 | "offline" ; 905 | 906 | "2020-03-12T20:08:25.585+01:00"^^ . 907 | 908 | 909 | 910 | "offline" ; 911 | 912 | "2020-03-12T20:08:25.585+01:00"^^ . 913 | 914 | 915 | 916 | "offline" ; 917 | 918 | "2020-03-12T20:08:25.585+01:00"^^ . 919 | 920 | 921 | 922 | "offline" ; 923 | 924 | "2020-03-12T20:08:25.585+01:00"^^ . 925 | 926 | 927 | 928 | "online" ; 929 | 930 | "2020-03-12T20:08:25.585+01:00"^^ . 931 | 932 | 933 | 934 | "online" ; 935 | 936 | "2020-03-12T20:08:25.585+01:00"^^ . 937 | 938 | 939 | 940 | "online" ; 941 | 942 | "2020-03-12T20:08:25.585+01:00"^^ . 943 | 944 | 945 | 946 | "online" ; 947 | 948 | "2020-03-12T20:08:25.585+01:00"^^ . 949 | 950 | 951 | 952 | "online" ; 953 | 954 | "2020-03-12T20:08:25.585+01:00"^^ . 955 | 956 | 957 | 958 | "offline" ; 959 | 960 | "2020-03-12T20:08:25.585+01:00"^^ . 961 | 962 | 963 | 964 | "offline" ; 965 | 966 | "2020-03-12T20:08:25.585+01:00"^^ . 967 | 968 | 969 | 970 | "offline" ; 971 | 972 | "2020-03-12T20:08:25.585+01:00"^^ . 973 | 974 | 975 | 976 | "offline" ; 977 | 978 | "2020-03-12T20:08:25.585+01:00"^^ . 979 | 980 | 981 | 982 | "online" ; 983 | 984 | "2020-03-12T20:08:25.585+01:00"^^ . 985 | 986 | 987 | 988 | "offline" ; 989 | 990 | "2020-03-12T20:08:25.585+01:00"^^ . 991 | 992 | 993 | 994 | "offline" ; 995 | 996 | "2020-03-12T20:08:25.585+01:00"^^ . 997 | 998 | 999 | 1000 | "offline" ; 1001 | 1002 | "2020-03-12T20:08:25.585+01:00"^^ . 1003 | 1004 | 1005 | 1006 | "offline" ; 1007 | 1008 | "2020-03-12T20:08:25.585+01:00"^^ . 1009 | 1010 | 1011 | 1012 | "offline" ; 1013 | 1014 | "2020-03-12T20:08:25.585+01:00"^^ . 1015 | 1016 | 1017 | 1018 | "offline" ; 1019 | 1020 | "2020-03-12T20:08:25.585+01:00"^^ . 1021 | 1022 | 1023 | 1024 | "offline" ; 1025 | 1026 | "2020-03-12T20:08:25.585+01:00"^^ . 1027 | 1028 | 1029 | 1030 | "offline" ; 1031 | 1032 | "2020-03-12T20:08:25.585+01:00"^^ . 1033 | 1034 | 1035 | 1036 | "offline" ; 1037 | 1038 | "2020-03-12T20:08:25.585+01:00"^^ . 1039 | 1040 | 1041 | 1042 | "online" ; 1043 | 1044 | "2020-03-12T20:08:25.585+01:00"^^ . 1045 | 1046 | 1047 | 1048 | "online" ; 1049 | 1050 | "2020-03-12T20:08:25.585+01:00"^^ . 1051 | 1052 | 1053 | 1054 | "online" ; 1055 | 1056 | "2020-03-12T20:08:25.585+01:00"^^ . 1057 | 1058 | 1059 | 1060 | "online" ; 1061 | 1062 | "2020-03-12T20:08:25.585+01:00"^^ . 1063 | 1064 | 1065 | 1066 | "online" ; 1067 | 1068 | "2020-03-12T20:08:25.585+01:00"^^ . 1069 | 1070 | 1071 | 1072 | "offline" ; 1073 | 1074 | "2020-03-12T20:08:25.585+01:00"^^ . 1075 | 1076 | 1077 | 1078 | "offline" ; 1079 | 1080 | "2020-03-12T20:08:25.585+01:00"^^ . 1081 | 1082 | 1083 | 1084 | "offline" ; 1085 | 1086 | "2020-03-12T20:08:25.585+01:00"^^ . 1087 | 1088 | 1089 | 1090 | "offline" ; 1091 | 1092 | "2020-03-12T20:08:25.585+01:00"^^ . 1093 | 1094 | 1095 | 1096 | "online" ; 1097 | 1098 | "2020-03-12T20:08:25.585+01:00"^^ . 1099 | 1100 | 1101 | 1102 | "offline" ; 1103 | 1104 | "2020-03-12T20:08:25.585+01:00"^^ . 1105 | 1106 | 1107 | 1108 | "offline" ; 1109 | 1110 | "2020-03-12T20:08:25.585+01:00"^^ . 1111 | 1112 | 1113 | 1114 | "offline" ; 1115 | 1116 | "2020-03-12T20:08:25.585+01:00"^^ . 1117 | 1118 | 1119 | 1120 | "offline" ; 1121 | 1122 | "2020-03-12T20:08:25.585+01:00"^^ . 1123 | 1124 | 1125 | 1126 | "offline" ; 1127 | 1128 | "2020-03-12T20:08:25.585+01:00"^^ . 1129 | 1130 | 1131 | 1132 | "offline" ; 1133 | 1134 | "2020-03-12T20:08:25.585+01:00"^^ . 1135 | 1136 | 1137 | 1138 | "offline" ; 1139 | 1140 | "2020-03-12T20:08:25.585+01:00"^^ . 1141 | 1142 | 1143 | 1144 | "offline" ; 1145 | 1146 | "2020-03-12T20:08:25.585+01:00"^^ . 1147 | 1148 | 1149 | 1150 | "online" ; 1151 | 1152 | "2020-03-12T20:08:25.585+01:00"^^ . 1153 | 1154 | 1155 | 1156 | "online" ; 1157 | 1158 | "2020-03-12T20:08:25.585+01:00"^^ . 1159 | 1160 | 1161 | 1162 | "offline" ; 1163 | 1164 | "2020-03-12T20:08:25.585+01:00"^^ . 1165 | 1166 | 1167 | 1168 | "offline" ; 1169 | 1170 | "2020-03-12T20:08:25.585+01:00"^^ . 1171 | 1172 | 1173 | 1174 | "offline" ; 1175 | 1176 | "2020-03-12T20:08:25.585+01:00"^^ . 1177 | 1178 | 1179 | 1180 | "offline" ; 1181 | 1182 | "2020-03-12T20:08:25.585+01:00"^^ . 1183 | 1184 | 1185 | 1186 | "online" ; 1187 | 1188 | "2020-03-12T20:08:25.585+01:00"^^ . 1189 | 1190 | 1191 | 1192 | "offline" ; 1193 | 1194 | "2020-03-12T20:08:25.585+01:00"^^ . 1195 | 1196 | 1197 | 1198 | "offline" ; 1199 | 1200 | "2020-03-12T20:08:25.585+01:00"^^ . 1201 | 1202 | 1203 | 1204 | "online" ; 1205 | 1206 | "2020-03-12T20:08:25.585+01:00"^^ . 1207 | 1208 | 1209 | 1210 | "online" ; 1211 | 1212 | "2020-03-12T20:08:25.585+01:00"^^ . 1213 | 1214 | 1215 | 1216 | "offline" ; 1217 | 1218 | "2020-03-12T20:08:25.585+01:00"^^ . 1219 | 1220 | 1221 | 1222 | "online" ; 1223 | 1224 | "2020-03-12T20:08:25.585+01:00"^^ . 1225 | 1226 | 1227 | 1228 | "online" ; 1229 | 1230 | "2020-03-12T20:08:25.585+01:00"^^ . 1231 | 1232 | 1233 | 1234 | "offline" ; 1235 | 1236 | "2020-03-12T20:08:25.585+01:00"^^ . 1237 | 1238 | 1239 | 1240 | "offline" ; 1241 | 1242 | "2020-03-12T20:08:25.585+01:00"^^ . 1243 | 1244 | 1245 | 1246 | "offline" ; 1247 | 1248 | "2020-03-12T20:08:25.585+01:00"^^ . 1249 | 1250 | 1251 | 1252 | "offline" ; 1253 | 1254 | "2020-03-12T20:08:25.585+01:00"^^ . 1255 | 1256 | 1257 | 1258 | "offline" ; 1259 | 1260 | "2020-03-12T20:08:25.585+01:00"^^ . 1261 | 1262 | 1263 | 1264 | "online" ; 1265 | 1266 | "2020-03-12T20:08:25.585+01:00"^^ . 1267 | 1268 | 1269 | 1270 | "offline" ; 1271 | 1272 | "2020-03-12T20:08:25.585+01:00"^^ . 1273 | 1274 | 1275 | 1276 | "offline" ; 1277 | 1278 | "2020-03-12T20:08:25.585+01:00"^^ . 1279 | 1280 | 1281 | 1282 | "offline" ; 1283 | 1284 | "2020-03-12T20:08:25.585+01:00"^^ . 1285 | 1286 | 1287 | 1288 | "online" ; 1289 | 1290 | "2020-03-12T20:08:25.585+01:00"^^ . 1291 | 1292 | 1293 | 1294 | "offline" ; 1295 | 1296 | "2020-03-12T20:08:25.585+01:00"^^ . 1297 | 1298 | 1299 | 1300 | "offline" ; 1301 | 1302 | "2020-03-12T20:08:25.585+01:00"^^ . 1303 | 1304 | 1305 | 1306 | "offline" ; 1307 | 1308 | "2020-03-12T20:08:25.585+01:00"^^ . 1309 | 1310 | 1311 | 1312 | "offline" ; 1313 | 1314 | "2020-03-12T20:08:25.585+01:00"^^ . 1315 | 1316 | 1317 | 1318 | "offline" ; 1319 | 1320 | "2020-03-12T20:08:25.585+01:00"^^ . 1321 | 1322 | 1323 | 1324 | "online" ; 1325 | 1326 | "2020-03-12T20:08:25.585+01:00"^^ . 1327 | 1328 | 1329 | 1330 | "offline" ; 1331 | 1332 | "2020-03-12T20:08:25.585+01:00"^^ . 1333 | 1334 | 1335 | 1336 | "offline" ; 1337 | 1338 | "2020-03-12T20:08:25.585+01:00"^^ . 1339 | 1340 | 1341 | 1342 | "offline" ; 1343 | 1344 | "2020-03-12T20:08:25.585+01:00"^^ . 1345 | 1346 | 1347 | 1348 | "offline" ; 1349 | 1350 | "2020-03-12T20:08:25.585+01:00"^^ . 1351 | 1352 | 1353 | 1354 | "offline" ; 1355 | 1356 | "2020-03-12T20:08:25.585+01:00"^^ . 1357 | 1358 | 1359 | 1360 | "offline" ; 1361 | 1362 | "2020-03-12T20:08:25.585+01:00"^^ . 1363 | 1364 | 1365 | 1366 | "online" ; 1367 | 1368 | "2020-03-12T20:08:25.585+01:00"^^ . 1369 | 1370 | 1371 | 1372 | "offline" ; 1373 | 1374 | "2020-03-12T20:08:25.585+01:00"^^ . 1375 | 1376 | 1377 | 1378 | "offline" ; 1379 | 1380 | "2020-03-12T20:08:25.585+01:00"^^ . 1381 | 1382 | 1383 | 1384 | "online" ; 1385 | 1386 | "2020-03-12T20:08:25.585+01:00"^^ . 1387 | 1388 | 1389 | 1390 | "offline" ; 1391 | 1392 | "2020-03-12T20:08:25.585+01:00"^^ . 1393 | 1394 | 1395 | 1396 | "online" ; 1397 | 1398 | "2020-03-12T20:08:25.585+01:00"^^ . 1399 | 1400 | 1401 | 1402 | "online" ; 1403 | 1404 | "2020-03-12T20:08:25.585+01:00"^^ . 1405 | 1406 | 1407 | 1408 | "offline" ; 1409 | 1410 | "2020-03-12T20:08:25.585+01:00"^^ . 1411 | 1412 | 1413 | 1414 | "online" ; 1415 | 1416 | "2020-03-12T20:08:25.585+01:00"^^ . 1417 | 1418 | 1419 | 1420 | "offline" ; 1421 | 1422 | "2020-03-12T20:08:25.585+01:00"^^ . 1423 | 1424 | 1425 | 1426 | "offline" ; 1427 | 1428 | "2020-03-12T20:08:25.585+01:00"^^ . 1429 | 1430 | 1431 | 1432 | "offline" ; 1433 | 1434 | "2020-03-12T20:08:25.585+01:00"^^ . 1435 | 1436 | 1437 | 1438 | "online" ; 1439 | 1440 | "2020-03-12T20:08:25.585+01:00"^^ . 1441 | 1442 | 1443 | 1444 | "online" ; 1445 | 1446 | "2020-03-12T20:08:25.585+01:00"^^ . 1447 | 1448 | 1449 | 1450 | "online" ; 1451 | 1452 | "2020-03-12T20:08:25.585+01:00"^^ . 1453 | 1454 | 1455 | 1456 | "offline" ; 1457 | 1458 | "2020-03-12T20:08:25.585+01:00"^^ . 1459 | 1460 | 1461 | 1462 | "offline" ; 1463 | 1464 | "2020-03-12T20:08:25.585+01:00"^^ . 1465 | 1466 | 1467 | 1468 | "online" ; 1469 | 1470 | "2020-03-12T20:08:25.585+01:00"^^ . 1471 | 1472 | 1473 | 1474 | "offline" ; 1475 | 1476 | "2020-03-12T20:08:25.585+01:00"^^ . 1477 | 1478 | 1479 | 1480 | "offline" ; 1481 | 1482 | "2020-03-12T20:08:25.585+01:00"^^ . 1483 | 1484 | 1485 | 1486 | "offline" ; 1487 | 1488 | "2020-03-12T20:08:25.585+01:00"^^ . 1489 | 1490 | 1491 | 1492 | "online" ; 1493 | 1494 | "2020-03-12T20:08:25.585+01:00"^^ . 1495 | 1496 | 1497 | 1498 | "online" ; 1499 | 1500 | "2020-03-12T20:08:25.585+01:00"^^ . 1501 | 1502 | 1503 | 1504 | "online" ; 1505 | 1506 | "2020-03-12T20:08:25.585+01:00"^^ . 1507 | 1508 | 1509 | 1510 | "online" ; 1511 | 1512 | "2020-03-12T20:08:25.585+01:00"^^ . 1513 | 1514 | 1515 | 1516 | "online" ; 1517 | 1518 | "2020-03-12T20:08:25.585+01:00"^^ . 1519 | 1520 | 1521 | 1522 | "offline" ; 1523 | 1524 | "2020-03-12T20:08:25.585+01:00"^^ . 1525 | 1526 | 1527 | 1528 | "online" ; 1529 | 1530 | "2020-03-12T20:08:25.585+01:00"^^ . 1531 | 1532 | 1533 | 1534 | "offline" ; 1535 | 1536 | "2020-03-12T20:08:25.585+01:00"^^ . 1537 | 1538 | 1539 | 1540 | "offline" ; 1541 | 1542 | "2020-03-12T20:08:25.585+01:00"^^ . 1543 | 1544 | 1545 | 1546 | "offline" ; 1547 | 1548 | "2020-03-12T20:08:25.585+01:00"^^ . 1549 | 1550 | 1551 | 1552 | "offline" ; 1553 | 1554 | "2020-03-12T20:08:25.585+01:00"^^ . 1555 | 1556 | 1557 | 1558 | "offline" ; 1559 | 1560 | "2020-03-12T20:08:25.585+01:00"^^ . 1561 | 1562 | 1563 | 1564 | "online" ; 1565 | 1566 | "2020-03-12T20:08:25.585+01:00"^^ . 1567 | 1568 | 1569 | 1570 | "online" ; 1571 | 1572 | "2020-03-12T20:08:25.585+01:00"^^ . 1573 | 1574 | 1575 | 1576 | "online" ; 1577 | 1578 | "2020-03-12T20:08:25.585+01:00"^^ . 1579 | 1580 | 1581 | 1582 | "online" ; 1583 | 1584 | "2020-03-12T20:08:25.585+01:00"^^ . 1585 | 1586 | 1587 | 1588 | "offline" ; 1589 | 1590 | "2020-03-12T20:08:25.585+01:00"^^ . 1591 | 1592 | 1593 | 1594 | "offline" ; 1595 | 1596 | "2020-03-12T20:08:25.585+01:00"^^ . 1597 | 1598 | 1599 | 1600 | "offline" ; 1601 | 1602 | "2020-03-12T20:08:25.585+01:00"^^ . 1603 | 1604 | 1605 | 1606 | "offline" ; 1607 | 1608 | "2020-03-12T20:08:25.585+01:00"^^ . 1609 | 1610 | 1611 | 1612 | "online" ; 1613 | 1614 | "2020-03-12T20:08:25.585+01:00"^^ . 1615 | 1616 | 1617 | 1618 | "offline" ; 1619 | 1620 | "2020-03-12T20:08:25.585+01:00"^^ . 1621 | 1622 | 1623 | 1624 | "offline" ; 1625 | 1626 | "2020-03-12T20:08:25.585+01:00"^^ . 1627 | 1628 | 1629 | 1630 | "offline" ; 1631 | 1632 | "2020-03-12T20:08:25.585+01:00"^^ . 1633 | 1634 | 1635 | 1636 | "offline" ; 1637 | 1638 | "2020-03-12T20:08:25.585+01:00"^^ . 1639 | 1640 | 1641 | 1642 | "offline" ; 1643 | 1644 | "2020-03-12T20:08:25.585+01:00"^^ . 1645 | 1646 | 1647 | 1648 | "online" ; 1649 | 1650 | "2020-03-12T20:08:25.585+01:00"^^ . 1651 | 1652 | 1653 | 1654 | "offline" ; 1655 | 1656 | "2020-03-12T20:08:25.585+01:00"^^ . 1657 | 1658 | 1659 | 1660 | "offline" ; 1661 | 1662 | "2020-03-12T20:08:25.585+01:00"^^ . 1663 | 1664 | 1665 | 1666 | "online" ; 1667 | 1668 | "2020-03-12T20:08:25.585+01:00"^^ . 1669 | 1670 | 1671 | 1672 | "online" ; 1673 | 1674 | "2020-03-12T20:08:25.585+01:00"^^ . 1675 | 1676 | 1677 | 1678 | "offline" ; 1679 | 1680 | "2020-03-12T20:08:25.585+01:00"^^ . 1681 | 1682 | 1683 | 1684 | "online" ; 1685 | 1686 | "2020-03-12T20:08:25.585+01:00"^^ . 1687 | 1688 | 1689 | 1690 | "offline" ; 1691 | 1692 | "2020-03-12T20:08:25.585+01:00"^^ . 1693 | 1694 | 1695 | 1696 | "offline" ; 1697 | 1698 | "2020-03-12T20:08:25.585+01:00"^^ . 1699 | 1700 | 1701 | 1702 | "online" ; 1703 | 1704 | "2020-03-12T20:08:25.585+01:00"^^ . 1705 | 1706 | 1707 | 1708 | "offline" ; 1709 | 1710 | "2020-03-12T20:08:25.585+01:00"^^ . 1711 | 1712 | 1713 | 1714 | "online" ; 1715 | 1716 | "2020-03-12T20:08:25.585+01:00"^^ . 1717 | 1718 | 1719 | 1720 | "offline" ; 1721 | 1722 | "2020-03-12T20:08:25.585+01:00"^^ . 1723 | 1724 | 1725 | 1726 | "offline" ; 1727 | 1728 | "2020-03-12T20:08:25.585+01:00"^^ . 1729 | 1730 | 1731 | 1732 | "online" ; 1733 | 1734 | "2020-03-12T20:08:25.585+01:00"^^ . 1735 | 1736 | 1737 | 1738 | "offline" ; 1739 | 1740 | "2020-03-12T20:08:25.585+01:00"^^ . 1741 | 1742 | 1743 | 1744 | "offline" ; 1745 | 1746 | "2020-03-12T20:08:25.585+01:00"^^ . 1747 | 1748 | 1749 | 1750 | "offline" ; 1751 | 1752 | "2020-03-12T20:08:25.585+01:00"^^ . 1753 | 1754 | 1755 | 1756 | "offline" ; 1757 | 1758 | "2020-03-12T20:08:25.585+01:00"^^ . 1759 | 1760 | 1761 | 1762 | "online" ; 1763 | 1764 | "2020-03-12T20:08:25.585+01:00"^^ . 1765 | 1766 | 1767 | 1768 | "offline" ; 1769 | 1770 | "2020-03-12T20:08:25.585+01:00"^^ . 1771 | 1772 | 1773 | 1774 | "offline" ; 1775 | 1776 | "2020-03-12T20:08:25.585+01:00"^^ . 1777 | 1778 | 1779 | 1780 | "offline" ; 1781 | 1782 | "2020-03-12T20:08:25.585+01:00"^^ . 1783 | 1784 | 1785 | 1786 | "online" ; 1787 | 1788 | "2020-03-12T20:08:25.585+01:00"^^ . 1789 | 1790 | 1791 | 1792 | "offline" ; 1793 | 1794 | "2020-03-12T20:08:25.585+01:00"^^ . 1795 | 1796 | 1797 | 1798 | "online" ; 1799 | 1800 | "2020-03-12T20:08:25.585+01:00"^^ . 1801 | 1802 | 1803 | 1804 | "offline" ; 1805 | 1806 | "2020-03-12T20:08:25.585+01:00"^^ . 1807 | 1808 | 1809 | 1810 | "offline" ; 1811 | 1812 | "2020-03-12T20:08:25.585+01:00"^^ . 1813 | 1814 | 1815 | 1816 | "offline" ; 1817 | 1818 | "2020-03-12T20:08:25.585+01:00"^^ . 1819 | 1820 | 1821 | 1822 | "offline" ; 1823 | 1824 | "2020-03-12T20:08:25.585+01:00"^^ . 1825 | 1826 | 1827 | 1828 | "offline" ; 1829 | 1830 | "2020-03-12T20:08:25.585+01:00"^^ . 1831 | 1832 | 1833 | 1834 | "offline" ; 1835 | 1836 | "2020-03-12T20:08:25.585+01:00"^^ . 1837 | 1838 | 1839 | 1840 | "offline" ; 1841 | 1842 | "2020-03-12T20:08:25.585+01:00"^^ . 1843 | 1844 | 1845 | 1846 | "online" ; 1847 | 1848 | "2020-03-12T20:08:25.585+01:00"^^ . 1849 | 1850 | 1851 | 1852 | "offline" ; 1853 | 1854 | "2020-03-12T20:08:25.585+01:00"^^ . 1855 | 1856 | 1857 | 1858 | "online" ; 1859 | 1860 | "2020-03-12T20:08:25.585+01:00"^^ . 1861 | 1862 | 1863 | 1864 | "online" ; 1865 | 1866 | "2020-03-12T20:08:25.585+01:00"^^ . 1867 | 1868 | 1869 | 1870 | "offline" ; 1871 | 1872 | "2020-03-12T20:08:25.585+01:00"^^ . 1873 | 1874 | 1875 | 1876 | "online" ; 1877 | 1878 | "2020-03-12T20:08:25.585+01:00"^^ . 1879 | 1880 | 1881 | 1882 | "offline" ; 1883 | 1884 | "2020-03-12T20:08:25.585+01:00"^^ . 1885 | 1886 | 1887 | 1888 | "offline" ; 1889 | 1890 | "2020-03-12T20:08:25.585+01:00"^^ . 1891 | 1892 | 1893 | 1894 | "offline" ; 1895 | 1896 | "2020-03-12T20:08:25.585+01:00"^^ . 1897 | 1898 | 1899 | 1900 | "offline" ; 1901 | 1902 | "2020-03-12T20:08:25.585+01:00"^^ . 1903 | 1904 | 1905 | 1906 | "offline" ; 1907 | 1908 | "2020-03-12T20:08:25.585+01:00"^^ . 1909 | 1910 | 1911 | 1912 | "offline" ; 1913 | 1914 | "2020-03-12T20:08:25.585+01:00"^^ . 1915 | 1916 | 1917 | 1918 | "offline" ; 1919 | 1920 | "2020-03-12T20:08:25.585+01:00"^^ . 1921 | 1922 | 1923 | 1924 | "online" ; 1925 | 1926 | "2020-03-12T20:08:25.585+01:00"^^ . 1927 | 1928 | 1929 | 1930 | "online" ; 1931 | 1932 | "2020-03-12T20:08:25.585+01:00"^^ . 1933 | 1934 | 1935 | 1936 | "online" ; 1937 | 1938 | "2020-03-12T20:08:25.585+01:00"^^ . 1939 | 1940 | 1941 | 1942 | "online" ; 1943 | 1944 | "2020-03-12T20:08:25.585+01:00"^^ . 1945 | 1946 | 1947 | 1948 | "offline" ; 1949 | 1950 | "2020-03-12T20:08:25.585+01:00"^^ . 1951 | 1952 | 1953 | 1954 | "online" ; 1955 | 1956 | "2020-03-12T20:08:25.585+01:00"^^ . 1957 | 1958 | 1959 | 1960 | "offline" ; 1961 | 1962 | "2020-03-12T20:08:25.585+01:00"^^ . 1963 | 1964 | 1965 | 1966 | "online" ; 1967 | 1968 | "2020-03-12T20:08:25.585+01:00"^^ . 1969 | 1970 | 1971 | 1972 | "offline" ; 1973 | 1974 | "2020-03-12T20:08:25.585+01:00"^^ . 1975 | 1976 | 1977 | 1978 | "online" ; 1979 | 1980 | "2020-03-12T20:08:25.585+01:00"^^ . 1981 | 1982 | 1983 | 1984 | "offline" ; 1985 | 1986 | "2020-03-12T20:08:25.585+01:00"^^ . 1987 | 1988 | 1989 | 1990 | "offline" ; 1991 | 1992 | "2020-03-12T20:08:25.585+01:00"^^ . 1993 | 1994 | 1995 | 1996 | "offline" ; 1997 | 1998 | "2020-03-12T20:08:25.585+01:00"^^ . 1999 | 2000 | 2001 | 2002 | "online" ; 2003 | 2004 | "2020-03-12T20:08:25.585+01:00"^^ . 2005 | 2006 | 2007 | 2008 | "online" ; 2009 | 2010 | "2020-03-12T20:08:25.585+01:00"^^ . 2011 | 2012 | 2013 | 2014 | "offline" ; 2015 | 2016 | "2020-03-12T20:08:25.585+01:00"^^ . 2017 | 2018 | 2019 | 2020 | "online" ; 2021 | 2022 | "2020-03-12T20:08:25.585+01:00"^^ . 2023 | 2024 | 2025 | 2026 | "online" ; 2027 | 2028 | "2020-03-12T20:08:25.585+01:00"^^ . 2029 | 2030 | 2031 | 2032 | "online" ; 2033 | 2034 | "2020-03-12T20:08:25.585+01:00"^^ . 2035 | 2036 | 2037 | 2038 | "online" ; 2039 | 2040 | "2020-03-12T20:08:25.585+01:00"^^ . 2041 | 2042 | 2043 | 2044 | "offline" ; 2045 | 2046 | "2020-03-12T20:08:25.585+01:00"^^ . 2047 | 2048 | 2049 | 2050 | "offline" ; 2051 | 2052 | "2020-03-12T20:08:25.585+01:00"^^ . 2053 | 2054 | 2055 | 2056 | "offline" ; 2057 | 2058 | "2020-03-12T20:08:25.585+01:00"^^ . 2059 | 2060 | 2061 | 2062 | "offline" ; 2063 | 2064 | "2020-03-12T20:08:25.585+01:00"^^ . 2065 | 2066 | 2067 | 2068 | "offline" ; 2069 | 2070 | "2020-03-12T20:08:25.585+01:00"^^ . 2071 | 2072 | 2073 | 2074 | "offline" ; 2075 | 2076 | "2020-03-12T20:08:25.585+01:00"^^ . 2077 | 2078 | 2079 | 2080 | "offline" ; 2081 | 2082 | "2020-03-12T20:08:25.585+01:00"^^ . 2083 | 2084 | 2085 | 2086 | "online" ; 2087 | 2088 | "2020-03-12T20:08:25.585+01:00"^^ . 2089 | 2090 | 2091 | 2092 | "offline" ; 2093 | 2094 | "2020-03-12T20:08:25.585+01:00"^^ . 2095 | 2096 | 2097 | 2098 | "online" ; 2099 | 2100 | "2020-03-12T20:08:25.585+01:00"^^ . 2101 | 2102 | 2103 | 2104 | "offline" ; 2105 | 2106 | "2020-03-12T20:08:25.585+01:00"^^ . 2107 | 2108 | 2109 | 2110 | "online" ; 2111 | 2112 | "2020-03-12T20:08:25.585+01:00"^^ . 2113 | 2114 | 2115 | 2116 | "online" ; 2117 | 2118 | "2020-03-12T20:08:25.585+01:00"^^ . 2119 | 2120 | 2121 | 2122 | "offline" ; 2123 | 2124 | "2020-03-12T20:08:25.585+01:00"^^ . 2125 | 2126 | 2127 | 2128 | "online" ; 2129 | 2130 | "2020-03-12T20:08:25.585+01:00"^^ . 2131 | 2132 | 2133 | 2134 | "offline" ; 2135 | 2136 | "2020-03-12T20:08:25.585+01:00"^^ . 2137 | 2138 | 2139 | 2140 | "offline" ; 2141 | 2142 | "2020-03-12T20:08:25.585+01:00"^^ . 2143 | 2144 | 2145 | 2146 | "offline" ; 2147 | 2148 | "2020-03-12T20:08:25.585+01:00"^^ . 2149 | 2150 | 2151 | 2152 | "offline" ; 2153 | 2154 | "2020-03-12T20:08:25.585+01:00"^^ . 2155 | 2156 | 2157 | 2158 | "online" ; 2159 | 2160 | "2020-03-12T20:08:25.585+01:00"^^ . 2161 | 2162 | 2163 | 2164 | "online" ; 2165 | 2166 | "2020-03-12T20:08:25.585+01:00"^^ . 2167 | 2168 | 2169 | 2170 | "offline" ; 2171 | 2172 | "2020-03-12T20:08:25.585+01:00"^^ . 2173 | 2174 | 2175 | 2176 | "offline" ; 2177 | 2178 | "2020-03-12T20:08:25.585+01:00"^^ . 2179 | 2180 | 2181 | 2182 | "offline" ; 2183 | 2184 | "2020-03-12T20:08:25.585+01:00"^^ . 2185 | 2186 | 2187 | 2188 | "online" ; 2189 | 2190 | "2020-03-12T20:08:25.585+01:00"^^ . 2191 | 2192 | 2193 | 2194 | "offline" ; 2195 | 2196 | "2020-03-12T20:08:25.585+01:00"^^ . 2197 | 2198 | 2199 | 2200 | "online" ; 2201 | 2202 | "2020-03-12T20:08:25.585+01:00"^^ . 2203 | 2204 | 2205 | 2206 | "offline" ; 2207 | 2208 | "2020-03-12T20:08:25.585+01:00"^^ . 2209 | 2210 | 2211 | 2212 | "online" ; 2213 | 2214 | "2020-03-12T20:08:25.585+01:00"^^ . 2215 | 2216 | 2217 | 2218 | "offline" ; 2219 | 2220 | "2020-03-12T20:08:25.585+01:00"^^ . 2221 | 2222 | 2223 | 2224 | "offline" ; 2225 | 2226 | "2020-03-12T20:08:25.585+01:00"^^ . 2227 | 2228 | 2229 | 2230 | "offline" ; 2231 | 2232 | "2020-03-12T20:08:25.585+01:00"^^ . 2233 | 2234 | 2235 | 2236 | "offline" ; 2237 | 2238 | "2020-03-12T20:08:25.585+01:00"^^ . 2239 | 2240 | 2241 | 2242 | "offline" ; 2243 | 2244 | "2020-03-12T20:08:25.585+01:00"^^ . 2245 | 2246 | 2247 | 2248 | "online" ; 2249 | 2250 | "2020-03-12T20:08:25.585+01:00"^^ . 2251 | 2252 | 2253 | 2254 | "offline" ; 2255 | 2256 | "2020-03-12T20:08:25.585+01:00"^^ . 2257 | 2258 | 2259 | 2260 | "offline" ; 2261 | 2262 | "2020-03-12T20:08:25.585+01:00"^^ . 2263 | 2264 | 2265 | 2266 | "offline" ; 2267 | 2268 | "2020-03-12T20:08:25.585+01:00"^^ . 2269 | 2270 | 2271 | 2272 | "offline" ; 2273 | 2274 | "2020-03-12T20:08:25.585+01:00"^^ . 2275 | 2276 | 2277 | 2278 | "online" ; 2279 | 2280 | "2020-03-12T20:08:25.585+01:00"^^ . 2281 | 2282 | 2283 | 2284 | "online" ; 2285 | 2286 | "2020-03-12T20:08:25.585+01:00"^^ . 2287 | 2288 | 2289 | 2290 | "offline" ; 2291 | 2292 | "2020-03-12T20:08:25.585+01:00"^^ . 2293 | 2294 | 2295 | 2296 | "offline" ; 2297 | 2298 | "2020-03-12T20:08:25.585+01:00"^^ . 2299 | 2300 | 2301 | 2302 | "offline" ; 2303 | 2304 | "2020-03-12T20:08:25.585+01:00"^^ . 2305 | 2306 | 2307 | 2308 | "offline" ; 2309 | 2310 | "2020-03-12T20:08:25.585+01:00"^^ . 2311 | 2312 | 2313 | 2314 | "online" ; 2315 | 2316 | "2020-03-12T20:08:25.585+01:00"^^ . 2317 | 2318 | 2319 | 2320 | "offline" ; 2321 | 2322 | "2020-03-12T20:08:25.585+01:00"^^ . 2323 | 2324 | 2325 | 2326 | "offline" ; 2327 | 2328 | "2020-03-12T20:08:25.585+01:00"^^ . 2329 | 2330 | 2331 | 2332 | "offline" ; 2333 | 2334 | "2020-03-12T20:08:25.585+01:00"^^ . 2335 | 2336 | 2337 | 2338 | "online" ; 2339 | 2340 | "2020-03-12T20:08:25.585+01:00"^^ . 2341 | 2342 | 2343 | 2344 | "online" ; 2345 | 2346 | "2020-03-12T20:08:25.585+01:00"^^ . 2347 | 2348 | 2349 | 2350 | "online" ; 2351 | 2352 | "2020-03-12T20:08:25.585+01:00"^^ . 2353 | 2354 | 2355 | 2356 | "offline" ; 2357 | 2358 | "2020-03-12T20:08:25.585+01:00"^^ . 2359 | 2360 | 2361 | 2362 | "offline" ; 2363 | 2364 | "2020-03-12T20:08:25.585+01:00"^^ . 2365 | 2366 | 2367 | 2368 | "offline" ; 2369 | 2370 | "2020-03-12T20:08:25.585+01:00"^^ . 2371 | 2372 | 2373 | 2374 | "offline" ; 2375 | 2376 | "2020-03-12T20:08:25.585+01:00"^^ . 2377 | 2378 | 2379 | 2380 | "offline" ; 2381 | 2382 | "2020-03-12T20:08:25.585+01:00"^^ . 2383 | 2384 | 2385 | 2386 | "online" ; 2387 | 2388 | "2020-03-12T20:08:25.585+01:00"^^ . 2389 | 2390 | 2391 | 2392 | "online" ; 2393 | 2394 | "2020-03-12T20:08:25.585+01:00"^^ . 2395 | 2396 | 2397 | 2398 | "offline" ; 2399 | 2400 | "2020-03-12T20:08:25.585+01:00"^^ . 2401 | 2402 | 2403 | 2404 | "offline" ; 2405 | 2406 | "2020-03-12T20:08:25.585+01:00"^^ . 2407 | 2408 | 2409 | 2410 | "offline" ; 2411 | 2412 | "2020-03-12T20:08:25.585+01:00"^^ . 2413 | 2414 | 2415 | 2416 | "online" ; 2417 | 2418 | "2020-03-12T20:08:25.585+01:00"^^ . 2419 | 2420 | 2421 | 2422 | "offline" ; 2423 | 2424 | "2020-03-12T20:08:25.585+01:00"^^ . 2425 | 2426 | 2427 | 2428 | "offline" ; 2429 | 2430 | "2020-03-12T20:08:25.585+01:00"^^ . 2431 | 2432 | 2433 | 2434 | "online" ; 2435 | 2436 | "2020-03-12T20:08:25.585+01:00"^^ . 2437 | 2438 | 2439 | 2440 | "offline" ; 2441 | 2442 | "2020-03-12T20:08:25.585+01:00"^^ . 2443 | 2444 | 2445 | 2446 | "offline" ; 2447 | 2448 | "2020-03-12T20:08:25.585+01:00"^^ . 2449 | 2450 | 2451 | 2452 | "online" ; 2453 | 2454 | "2020-03-12T20:08:25.585+01:00"^^ . 2455 | 2456 | 2457 | 2458 | "offline" ; 2459 | 2460 | "2020-03-12T20:08:25.585+01:00"^^ . 2461 | 2462 | 2463 | 2464 | "offline" ; 2465 | 2466 | "2020-03-12T20:08:25.585+01:00"^^ . 2467 | 2468 | 2469 | 2470 | "offline" ; 2471 | 2472 | "2020-03-12T20:08:25.585+01:00"^^ . 2473 | 2474 | 2475 | 2476 | "offline" ; 2477 | 2478 | "2020-03-12T20:08:25.585+01:00"^^ . 2479 | 2480 | 2481 | 2482 | "offline" ; 2483 | 2484 | "2020-03-12T20:08:25.585+01:00"^^ . 2485 | 2486 | 2487 | 2488 | "offline" ; 2489 | 2490 | "2020-03-12T20:08:25.585+01:00"^^ . 2491 | 2492 | 2493 | 2494 | "online" ; 2495 | 2496 | "2020-03-12T20:08:25.585+01:00"^^ . 2497 | 2498 | 2499 | 2500 | "offline" ; 2501 | 2502 | "2020-03-12T20:08:25.585+01:00"^^ . 2503 | 2504 | 2505 | 2506 | "offline" ; 2507 | 2508 | "2020-03-12T20:08:25.585+01:00"^^ . 2509 | 2510 | 2511 | 2512 | "online" ; 2513 | 2514 | "2020-03-12T20:08:25.585+01:00"^^ . 2515 | 2516 | 2517 | 2518 | "offline" ; 2519 | 2520 | "2020-03-12T20:08:25.585+01:00"^^ . 2521 | 2522 | 2523 | 2524 | "online" ; 2525 | 2526 | "2020-03-12T20:08:25.585+01:00"^^ . 2527 | 2528 | 2529 | 2530 | "offline" ; 2531 | 2532 | "2020-03-12T20:08:25.585+01:00"^^ . 2533 | 2534 | 2535 | 2536 | "online" ; 2537 | 2538 | "2020-03-12T20:08:25.585+01:00"^^ . 2539 | 2540 | 2541 | 2542 | "online" ; 2543 | 2544 | "2020-03-12T20:08:25.585+01:00"^^ . 2545 | 2546 | 2547 | 2548 | "offline" ; 2549 | 2550 | "2020-03-12T20:08:25.585+01:00"^^ . 2551 | 2552 | 2553 | 2554 | "offline" ; 2555 | 2556 | "2020-03-12T20:08:25.585+01:00"^^ . 2557 | 2558 | 2559 | 2560 | "offline" ; 2561 | 2562 | "2020-03-12T20:08:25.585+01:00"^^ . 2563 | 2564 | 2565 | 2566 | "online" ; 2567 | 2568 | "2020-03-12T20:08:25.585+01:00"^^ . 2569 | 2570 | 2571 | 2572 | "offline" ; 2573 | 2574 | "2020-03-12T20:08:25.585+01:00"^^ . 2575 | 2576 | 2577 | 2578 | "offline" ; 2579 | 2580 | "2020-03-12T20:08:25.585+01:00"^^ . 2581 | 2582 | 2583 | 2584 | "offline" ; 2585 | 2586 | "2020-03-12T20:08:25.585+01:00"^^ . 2587 | } 2588 | -------------------------------------------------------------------------------- /trash/scripts/check-endpoint-status.sparql: -------------------------------------------------------------------------------- 1 | PREFIX eg: 2 | 3 | CONSTRUCT { 4 | GRAPH ?g { 5 | ?s 6 | eg:serviceStatus ?status ; 7 | eg:serviceStatusTime ?time # Note: The time refers to when the query was started 8 | . 9 | } 10 | } 11 | { 12 | BIND(NOW() AS ?time) 13 | BIND(IRI(CONCAT("http://metalod.aksw.org/service-check-", STR(?time))) AS ?g) 14 | 15 | # { SELECT * { 16 | ?s dcat:endpointURL ?e . 17 | # } LIMIT 1 } 18 | 19 | SERVICE SILENT ?e { 20 | { SELECT ?t { ?x a ?t } LIMIT 1 } 21 | } 22 | 23 | BIND(IF(BOUND(?t), "online", "offline") AS ?status) 24 | } 25 | -------------------------------------------------------------------------------- /trash/scripts/check-test.sparql: -------------------------------------------------------------------------------- 1 | PREFIX eg: 2 | 3 | # CONSTRUCT WHERE { GRAPH ?g { ?s ?p ?o } } 4 | 5 | 6 | CONSTRUCT { 7 | GRAPH ?g { 8 | ?s 9 | eg:serviceStatus ?status ; 10 | eg:serviceStatusTime ?time # Note: The time refers to when the query was started 11 | . 12 | } 13 | } 14 | { 15 | BIND(NOW() AS ?time) 16 | BIND(IRI(CONCAT("https://smartdataanalytics.github.io/lodservatory/service-check-", STR(?time))) AS ?g) 17 | 18 | { SELECT * { 19 | ?s dcat:endpointURL ?e . 20 | } ORDER BY ?e LIMIT 5 } 21 | 22 | SERVICE SILENT ?e { 23 | { SELECT ?t { ?x a ?t } LIMIT 1 } 24 | } 25 | 26 | BIND(IF(BOUND(?t), "online", "offline") AS ?status) 27 | } 28 | -------------------------------------------------------------------------------- /trash/scripts/extract-alive-endpoints.sparql: -------------------------------------------------------------------------------- 1 | CONSTRUCT { 2 | ?s ?p ?o 3 | } { 4 | GRAPH ?g { ?s eg:serviceStatus "online" } 5 | ?s ?p ?o 6 | } 7 | -------------------------------------------------------------------------------- /trash/scripts/rdfize-endpoints-from-andre.sparql: -------------------------------------------------------------------------------- 1 | CONSTRUCT { 2 | 3 | ?s 4 | a dcat:DataService ; 5 | dcat:endpointURL ?e ; 6 | # The inverse link is probably redundant and should be inferred instead of being explicitly added 7 | # dcat:servesDataset ?ds ; 8 | . 9 | 10 | ?ds 11 | a dcat:Dataset ; 12 | dcat:distribution ?dist ; 13 | rdfs:label ?dsl ; 14 | . 15 | 16 | ?dist 17 | a dcat:Distribution ; 18 | dcat:accessURL ?e ; 19 | . 20 | 21 | } 22 | { 23 | csv:parse (?o "excel") 24 | 25 | BIND(json:path(?o, "$[0]") AS ?url) 26 | FILTER(?url != "Total") 27 | 28 | BIND(IRI(?url) AS ?e) 29 | BIND(IRI(CONCAT(?url, "#service")) AS ?s) 30 | BIND(IRI(CONCAT(?url, "#dataset")) AS ?ds) 31 | BIND(IRI(CONCAT(?url, "#distribution")) AS ?dist) 32 | 33 | 34 | BIND(CONCAT("Dataset as served at ", ?url) AS ?dsl) 35 | } 36 | 37 | -------------------------------------------------------------------------------- /trash/scripts/rdfize-endpoints-from-sparqles-api.sparql: -------------------------------------------------------------------------------- 1 | # Use sparql-integrate to directly converts the sparqles json api output to RDF 2 | 3 | CONSTRUCT { 4 | ?s 5 | a dcat:DataService ; 6 | dcat:endpointURL ?serviceUrl ; 7 | . 8 | 9 | ?ds 10 | a dcat:Dataset ; 11 | dcat:distribution ?dist ; 12 | rdfs:label ?datasetLabel ; 13 | . 14 | 15 | ?dist 16 | a dcat:Distribution ; 17 | dcat:accessURL ?serviceUrl ; 18 | . 19 | } 20 | { 21 | url:text ?str 22 | BIND(STRDT(?str, xsd:json) AS ?json) 23 | 24 | ?json json:unnest (?service ?i) 25 | 26 | BIND(json:path(?service, "$.uri") AS ?serviceStr) 27 | BIND(json:path(?service, "$.datasets") AS ?datasets) 28 | 29 | ?datasets json:unnest (?dataset ?j) 30 | BIND(json:path(?dataset, "$.uri") AS ?rawDatasetIdStr) 31 | 32 | # TODO Add a proper validation function; there is at least one broken URI that contains the < character 33 | # Creating an IRI from it yields a syntactically incorrect RDF term and thus the output fails to parse 34 | FILTER(!CONTAINS(?rawDatasetIdStr, "<")) 35 | 36 | BIND(IF(?rawDatasetIdStr = ?serviceStr, CONCAT(?rawDatasetIdStr, "#dataset"), ?rawDatasetIdStr) AS ?datasetIdStr) 37 | 38 | BIND(json:path(?dataset, "$.label") AS ?datasetLabel) 39 | 40 | BIND(IRI(?serviceStr) AS ?serviceUrl) 41 | BIND(IRI(CONCAT(?serviceStr, "#service")) AS ?s) 42 | BIND(IRI(?datasetIdStr) AS ?ds) 43 | BIND(IRI(CONCAT(?serviceStr, "#distribution")) AS ?dist) 44 | } 45 | 46 | -------------------------------------------------------------------------------- /trash/sparql-service-description.ttl: -------------------------------------------------------------------------------- 1 | @prefix rdf: . 2 | @prefix rdfs: . 3 | @prefix owl: . 4 | @prefix sd: . 5 | 6 | ### Properties 7 | 8 | sd:endpoint a rdf:Property , owl:InverseFunctionalProperty ; 9 | rdfs:domain sd:Service ; 10 | rdfs:label "endpoint" ; 11 | rdfs:comment "The SPARQL endpoint of an sd:Service that implements the SPARQL Protocol service. The object of the sd:endpoint property is an IRI." . 12 | 13 | sd:feature a rdf:Property ; 14 | rdfs:domain sd:Service ; 15 | rdfs:range sd:Feature ; 16 | rdfs:label "feature" ; 17 | rdfs:comment "Relates an instance of sd:Service with a resource representing a supported feature." . 18 | 19 | sd:defaultEntailmentRegime a rdf:Property ; 20 | rdfs:subPropertyOf sd:feature ; 21 | rdfs:domain sd:Service ; 22 | rdfs:range sd:EntailmentRegime ; 23 | rdfs:label "default entailment regime" ; 24 | rdfs:comment "Relates an instance of sd:Service with a resource representing an entailment regime used for basic graph pattern matching. This property is intended for use when a single entailment regime by default applies to all graphs in the default dataset of the service. In situations where a different entailment regime applies to a specific graph in the dataset, the sd:entailmentRegime property should be used to indicate this fact in the description of that graph." . 25 | 26 | sd:entailmentRegime a rdf:Property ; 27 | rdfs:domain sd:NamedGraph ; 28 | rdfs:range sd:EntailmentRegime ; 29 | rdfs:label "entailment regime" ; 30 | rdfs:comment "Relates a named graph description with a resource representing an entailment regime used for basic graph pattern matching over that graph." . 31 | 32 | sd:defaultSupportedEntailmentProfile a rdf:Property ; 33 | rdfs:subPropertyOf sd:feature ; 34 | rdfs:domain sd:Service ; 35 | rdfs:range sd:EntailmentProfile ; 36 | rdfs:label "default supported entailment profile" ; 37 | rdfs:comment "Relates an instance of sd:Service with a resource representing a supported profile of the default entailment regime (as declared by sd:defaultEntailmentRegime)." . 38 | 39 | sd:supportedEntailmentProfile a rdf:Property ; 40 | rdfs:domain sd:NamedGraph ; 41 | rdfs:range sd:EntailmentProfile ; 42 | rdfs:label "supported entailment profile" ; 43 | rdfs:comment "Relates a named graph description with a resource representing a supported profile of the entailment regime (as declared by sd:entailmentRegime) used for basic graph pattern matching over that graph." . 44 | 45 | sd:extensionFunction a rdf:Property ; 46 | rdfs:subPropertyOf sd:feature ; 47 | rdfs:domain sd:Service ; 48 | rdfs:range sd:Function ; 49 | rdfs:label "extension function" ; 50 | rdfs:comment "Relates an instance of sd:Service to a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause." . 51 | 52 | sd:extensionAggregate a rdf:Property ; 53 | rdfs:subPropertyOf sd:feature ; 54 | rdfs:domain sd:Service ; 55 | rdfs:range sd:Aggregate ; 56 | rdfs:label "extension aggregate" ; 57 | rdfs:comment "Relates an instance of sd:Service to an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE" . 58 | 59 | sd:languageExtension a rdf:Property ; 60 | rdfs:subPropertyOf sd:feature ; 61 | rdfs:domain sd:Service ; 62 | rdfs:range sd:Feature ; 63 | rdfs:label "language extension" ; 64 | rdfs:comment "Relates an instance of sd:Service to a resource representing an implemented extension to the SPARQL Query or Update language." . 65 | 66 | sd:supportedLanguage a rdf:Property ; 67 | rdfs:subPropertyOf sd:feature ; 68 | rdfs:domain sd:Service ; 69 | rdfs:range sd:Language ; 70 | rdfs:label "supported language" ; 71 | rdfs:comment "Relates an instance of sd:Service to a SPARQL language (e.g. Query and Update) that it implements." . 72 | 73 | sd:propertyFeature a rdf:Property ; 74 | rdfs:subPropertyOf sd:feature ; 75 | rdfs:domain sd:Service ; 76 | rdfs:range sd:Feature ; 77 | rdfs:label "property feature" ; 78 | rdfs:comment "Relates an instance of sd:Service to a resource representing an implemented feature that extends the SPARQL Query or Update language and that is accessed by using the named property." . 79 | 80 | sd:defaultDataset a rdf:Property, owl:InverseFunctionalProperty ; 81 | rdfs:domain sd:Service ; 82 | rdfs:range sd:Dataset ; 83 | rdfs:label "default dataset description" ; 84 | rdfs:comment "Relates an instance of sd:Service to a description of the default dataset available when no explicit dataset is specified in the query, update request or via protocol parameters." . 85 | 86 | sd:availableGraphs a rdf:Property ; 87 | rdfs:domain sd:Service ; 88 | rdfs:range sd:GraphCollection ; 89 | rdfs:label "available graph descriptions" ; 90 | rdfs:comment "Relates an instance of sd:Service to a description of the graphs which are allowed in the construction of a dataset either via the SPARQL Protocol, with FROM/FROM NAMED clauses in a query, or with USING/USING NAMED in an update request, if the service limits the scope of dataset construction." . 91 | 92 | sd:resultFormat a rdf:Property ; 93 | rdfs:domain sd:Service ; 94 | rdfs:range ; 95 | rdfs:label "result format" ; 96 | rdfs:comment "Relates an instance of sd:Service to a format that is supported for serializing query results." . 97 | 98 | sd:inputFormat a rdf:Property ; 99 | rdfs:domain sd:Service ; 100 | rdfs:range ; 101 | rdfs:label "input format" ; 102 | rdfs:comment "Relates an instance of sd:Service to a format that is supported for parsing RDF input; for example, via a SPARQL 1.1 Update LOAD statement, or when URIs are dereferenced in FROM/FROM NAMED/USING/USING NAMED clauses." . 103 | 104 | sd:defaultGraph a rdf:Property ; 105 | rdfs:domain sd:Dataset ; 106 | rdfs:range sd:Graph ; 107 | rdfs:label "default graph" ; 108 | rdfs:comment "Relates an instance of sd:Dataset to the description of its default graph." . 109 | 110 | sd:namedGraph a rdf:Property ; 111 | rdfs:domain sd:GraphCollection ; 112 | rdfs:range sd:NamedGraph ; 113 | rdfs:label "named graph" ; 114 | rdfs:comment "Relates an instance of sd:GraphCollection (or its subclass sd:Dataset) to the description of one of its named graphs. The description of such a named graph MUST include the sd:name property and MAY include the sd:graph property." . 115 | 116 | sd:name a rdf:Property ; 117 | rdfs:domain sd:NamedGraph ; 118 | rdfs:label "name" ; 119 | rdfs:comment "Relates a named graph to the name by which it may be referenced in a FROM/FROM NAMED clause. The object of the sd:name property is an IRI." . 120 | 121 | sd:graph a rdf:Property ; 122 | rdfs:domain sd:NamedGraph ; 123 | rdfs:range sd:Graph ; 124 | rdfs:label "graph" ; 125 | rdfs:comment "Relates a named graph to its graph description." . 126 | 127 | ### Classes 128 | 129 | sd:Service a rdfs:Class ; 130 | rdfs:label "Service" ; 131 | rdfs:comment "An instance of sd:Service represents a SPARQL service made available via the SPARQL Protocol." . 132 | 133 | sd:Feature a rdfs:Class ; 134 | rdfs:label "Feature" ; 135 | rdfs:comment "An instance of sd:Feature represents a feature of a SPARQL service. Specific types of features include functions, aggregates, languages, and entailment regimes and profiles. This document defines five instances of sd:Feature: sd:DereferencesURIs, sd:UnionDefaultGraph, sd:RequiresDataset, sd:EmptyGraphs, and sd:BasicFederatedQuery." . 136 | 137 | sd:Language a rdfs:Class ; 138 | rdfs:subClassOf sd:Feature ; 139 | rdfs:label "Language" ; 140 | rdfs:comment "An instance of sd:Language represents one of the SPARQL languages, including specific configurations providing particular features or extensions. This document defines three instances of sd:Language: sd:SPARQL10Query, sd:SPARQL11Query, and sd:SPARQL11Update." . 141 | 142 | sd:Function a rdfs:Class ; 143 | rdfs:subClassOf sd:Feature ; 144 | rdfs:label "Function" ; 145 | rdfs:comment "An instance of sd:Function represents a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause." . 146 | 147 | sd:Aggregate a rdfs:Class ; 148 | rdfs:subClassOf sd:Feature ; 149 | rdfs:label "Aggregate" ; 150 | rdfs:comment "An instance of sd:Aggregate represents an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE." . 151 | 152 | sd:EntailmentRegime a rdfs:Class ; 153 | rdfs:subClassOf sd:Feature ; 154 | rdfs:label "Entailment Regime" ; 155 | rdfs:comment "An instance of sd:EntailmentRegime represents an entailment regime used in basic graph pattern matching (as described by SPARQL 1.1 Query Language)." . 156 | 157 | sd:EntailmentProfile a rdfs:Class ; 158 | rdfs:subClassOf sd:Feature ; 159 | rdfs:label "Entailment Profile" ; 160 | rdfs:comment "An instance of sd:EntailmentProfile represents a profile of an entailment regime. An entailment profile MAY impose restrictions on what constitutes valid RDF with respect to entailment." . 161 | 162 | sd:GraphCollection a rdfs:Class ; 163 | rdfs:label "Graph Collection" ; 164 | rdfs:comment "An instance of sd:GraphCollection represents a collection of zero or more named graph descriptions. Each named graph description belonging to an sd:GraphCollection MUST be linked with the sd:namedGraph predicate." . 165 | 166 | sd:Dataset a rdfs:Class ; 167 | rdfs:subClassOf sd:GraphCollection ; 168 | rdfs:label "Dataset" ; 169 | rdfs:comment "An instance of sd:Dataset represents a RDF Dataset comprised of a default graph and zero or more named graphs." . 170 | 171 | sd:Graph a rdfs:Class ; 172 | rdfs:label "Graph" ; 173 | rdfs:comment "An instance of sd:Graph represents the description of an RDF graph." . 174 | 175 | sd:NamedGraph a rdfs:Class ; 176 | rdfs:label "Named Graph" ; 177 | rdfs:comment "An instance of sd:NamedGraph represents a named graph having a name (via sd:name) and an optional graph description (via sd:graph)." . 178 | 179 | ### Instances 180 | 181 | sd:SPARQL10Query a sd:Language ; 182 | rdfs:label "SPARQL 1.0 Query" ; 183 | rdfs:comment "sd:SPARQL10Query is an sd:Language representing the SPARQL 1.0 Query language." . 184 | 185 | sd:SPARQL11Query a sd:Language ; 186 | rdfs:label "SPARQL 1.1 Query" ; 187 | rdfs:comment "sd:SPARQL11Query is an sd:Language representing the SPARQL 1.1 Query language." . 188 | 189 | sd:SPARQL11Update a sd:Language ; 190 | rdfs:label "SPARQL 1.1 Update" ; 191 | rdfs:comment "sd:SPARQLUpdate is an sd:Language representing the SPARQL 1.1 Update language." . 192 | 193 | sd:DereferencesURIs a sd:Feature ; 194 | rdfs:label "Dereferences URIs" ; 195 | rdfs:comment "sd:DereferencesURIs, when used as the object of the sd:feature property, indicates that a SPARQL service will dereference URIs used in FROM/FROM NAMED and USING/USING NAMED clauses and use the resulting RDF in the dataset during query evaluation." . 196 | 197 | sd:UnionDefaultGraph a sd:Feature ; 198 | rdfs:label "Union Default Graph" ; 199 | rdfs:comment "sd:UnionDefaultGraph, when used as the object of the sd:feature property, indicates that the default graph of the dataset used during query and update evaluation (when an explicit dataset is not specified) is comprised of the union of all the named graphs in that dataset." . 200 | 201 | sd:RequiresDataset a sd:Feature ; 202 | rdfs:label "Requires Dataset" ; 203 | rdfs:comment "sd:RequiresDataset, when used as the object of the sd:feature property, indicates that the SPARQL service requires an explicit dataset declaration (based on either FROM/FROM NAMED clauses in a query, USING/USING NAMED clauses in an update, or the appropriate SPARQL Protocol parameters)." . 204 | 205 | sd:EmptyGraphs a sd:Feature ; 206 | rdfs:label "Empty Graphs" ; 207 | rdfs:comment "sd:EmptyGraphs, when used as the object of the sd:feature property, indicates that the underlying graph store supports empty graphs. A graph store that supports empty graphs MUST NOT remove graphs that are left empty after triples are removed from them." . 208 | 209 | sd:BasicFederatedQuery a sd:Feature ; 210 | rdfs:label "Basic Federated Query" ; 211 | rdfs:comment "sd:BasicFederatedQuery, when used as the object of the sd:feature property, indicates that the SPARQL service supports basic federated query using the SERVICE keyword as defined by SPARQL 1.1 Federation Extensions." . 212 | 213 | -------------------------------------------------------------------------------- /update-status.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Download SPARQL Integrate (if not already available) 4 | [ -f si.jar ] || wget -O si.jar https://github.com/SmartDataAnalytics/SparqlIntegrate/releases/download/sparql-integrate-bundle-1.0.3-SNAPSHOT/sparql-integrate-bundle-1.0.3-SNAPSHOT-jar-with-dependencies.jar 5 | 6 | # TODO Update lod cloud status once the PR is accepted 7 | # wget -O LODCloud_SPARQL_Endpoints.ttl https://raw.githubusercontent.com/OpenLinkSoftware/general-turtle-doc-collection/master/LODCloud_SPARQL_Endpoints.ttl 8 | 9 | # Map each endpoint to its own named graph, 10 | # run the status check for each named graph in parallel 11 | # and then merge the results 12 | java -cp si.jar sparqlintegrate LODCloud_SPARQL_Endpoints.ttl 'CONSTRUCT { GRAPH ?o { ?s ?p ?o } } { ?s ?p ?x FILTER(?p = sd:endpoint) BIND(IRI(REPLACE(STR(?x), "\\s+", "")) AS ?o) }' | \ 13 | java -cp si.jar ngs map -t '5000,5000' --sparql status-check.sparql | \ 14 | java -cp si.jar sparqlintegrate --w=trig/pretty --u - 'PREFIX schema: CONSTRUCT WHERE { ?s ?p ?o } ORDER BY ?s ?p ?o' > next-status.ttl 15 | 16 | ./diff-status.sh latest-status.ttl next-status.ttl > effective-status.ttl 17 | 18 | mv effective-status.ttl latest-status.ttl 19 | 20 | 21 | --------------------------------------------------------------------------------