-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcanarie_api_monitoring.py.template
72 lines (70 loc) · 2.9 KB
/
canarie_api_monitoring.py.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
SERVICES['renderer'] = {
'info': {
'name': 'High-resolution spatial gridded data renderer',
'synopsis': (
'This service renders gridded data on the server and sends images to the client for display within '
'mapping applications using Open Geospatial Consortium (OGC) Web Mappping Service (WMS) standard.'
),
'version': '4.6.15',
'institution': 'Unidata',
'releaseTime': '2020-06-16T00:00:00Z',
'researchSubject': 'Climatology',
'supportEmail': '${BIRDHOUSE_SUPPORT_EMAIL}',
'category': 'Data Manipulation',
'tags': ['Climatology']
},
'stats': {
'method': '.*',
'route': '/thredds/.*'
},
'redirect': {
'doc': 'https://ouranosinc.github.io/pavics-sdi/arch/frontend.html#gridded-data-rendering',
'releasenotes': 'https://github.com/Unidata/tds/releases',
'support': 'https://github.com/Ouranosinc/pavics-sdi/issues',
'source': 'https://github.com/Unidata/tds',
'tryme': 'https://ouranosinc.github.io/pavics-sdi/notebooks/rendering.html',
'licence': 'https://github.com/Unidata/tds/blob/master/LICENSE',
'provenance': 'https://ouranosinc.github.io/pavics-sdi/provenance/index.html'
},
'monitoring': {
'ncWMS': {
'request': {
'url': 'https://${BIRDHOUSE_FQDN_PUBLIC}${TWITCHER_PROTECTED_PATH}/thredds/wms/${THREDDS_SERVICE_DATA_URL_PATH}/testdata/ta_Amon_MRI-CGCM3_decadal1980_r1i1p1_199101-200012.nc?service=WMS&version=1.3.0&request=GetCapabilities'
}
},
}
}
SERVICES['Thredds'] = {
'info': {
'name': 'Thredds',
'synopsis': 'Climate Data Catalog and Format Renderers',
'version': "${THREDDS_VERSION}",
'releaseTime': get_release_time_from_repo_tag("docker", "${THREDDS_DOCKER}", "${THREDDS_TAGGED}"),
'institution': 'Ouranos',
'researchSubject': 'Catalog',
'supportEmail': '${BIRDHOUSE_SUPPORT_EMAIL}',
'category': 'Catalog',
'tags': ['Catalog', 'Climate Data']
},
'stats': {
'method': '.*',
'route': '${TWITCHER_PROTECTED_PATH}/thredds/.*'
},
'redirect': {
'doc': 'https://www.unidata.ucar.edu/software/tds/',
'releasenotes': 'https://docs.unidata.ucar.edu/tds/current/userguide/upgrade.html',
'support': 'https://www.unidata.ucar.edu/software/tds/#help',
'source': 'https://github.com/Unidata/tds',
'tryme': 'https://${BIRDHOUSE_FQDN_PUBLIC}${TWITCHER_PROTECTED_PATH}/thredds/',
'licence': 'https://github.com/Unidata/tds/blob/main/LICENSE',
'provenance': 'https://downloads.unidata.ucar.edu/tds/'
},
"monitoring": {
"Thredds": {
'request': {
'url': 'http://thredds:8080/${TWITCHER_PROTECTED_PATH}/thredds/catalog.html'
}
}
}
}
CANARIE_STATS_ROUTES.append('thredds')