summaryrefslogtreecommitdiffstats
path: root/orchestrator-restapi/src/main/java/com
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrightJon Bratseth2023-10-0911-11/+11
|
* Update 2019 Oath copyrights.gjoranv2021-10-272-2/+2
|
* Update Verizon Media copyright notices.gjoranv2021-10-071-1/+1
|
* Update 2017 copyright notices.gjoranv2021-10-078-8/+8
|
* Remove old Jaxrs resource definitions from orchestrator-restapiBjørn Christian Seime2021-04-234-215/+0
|
* Allow Jackson deserialization of model typesBjørn Christian Seime2021-04-121-1/+3
|
* Add copyright headersJon Bratseth2021-03-181-0/+1
|
* Export API packageJon Marius Venstad2021-01-121-0/+7
|
* Add suspension mojoJon Marius Venstad2021-01-111-0/+1
|
* Add host info to orchestrator REST APIHåkon Hallingstad2020-02-172-1/+49
|
* Remove use of Nullable and NotNull annotationsHarald Musum2019-08-291-3/+2
| | | | | | Different implementations and using OSGi makes it really hard to use these annotations and the value of using them is IMHO not very high.
* Health rest APIHåkon Hallingstad2019-01-312-0/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes a new REST API /orchestrator/v1/health/<ApplicationId> that shows the list of services that are monitored for health. This information is currently a bit difficult to infer from /orchestrator/v1/instances/<ApplicationInstanceReference> since it is the combined view of health and Slobrok. There are already APIs for Slobrok. Example content: $ curl -s localhost:19071/orchestrator/v1/health/hosted-vespa:zone-config-serve\ rs:default|jq . { "services": [ { "clusterId": "zone-config-servers", "serviceType": "configserver", "configId": "zone-config-servers/cfg6", "status": { "serviceStatus": "UP", "lastChecked": 1548939111.708718, "since": 1548939051.686223, "endpoint": "http://cfg4.prod.cd-us-central-1.vespahosted.ne1.yahoo.com:19071/state/v1/health" } }, ... ] } This view is slightly different from the application model view, just because that's exactly how the health monitoring is structured (individual monitors against endpoints). The "endpoint" information will also be added to /instances if the status comes from health and not Slobrok.
* Avoid stacktrace in log on timeoutsHåkon Hallingstad2018-11-091-0/+5
|
* Revert "Revert "Revert "Revert "Enforce CC timeouts in Orchestrator 4""""Håkon Hallingstad2018-11-011-6/+2
|
* Revert "Revert "Revert "Enforce CC timeouts in Orchestrator 4"""Håkon Hallingstad2018-11-011-2/+6
|
* Revert "Revert "Enforce CC timeouts in Orchestrator [4]""Håkon Hallingstad2018-11-011-6/+2
|
* Revert "Enforce CC timeouts in Orchestrator [4]"Harald Musum2018-10-311-2/+6
|
* Revert "Revert "Revert "Revert "Enforce CC timeouts in Orchestrator 2""""Håkon Hallingstad2018-10-301-6/+2
|
* Revert "Revert "Revert "Enforce CC timeouts in Orchestrator 2"""Håkon Hallingstad2018-10-301-2/+6
|
* Revert "Revert "Enforce CC timeouts in Orchestrator 2""Håkon Hallingstad2018-10-291-6/+2
|
* Revert "Enforce CC timeouts in Orchestrator 2"Håkon Hallingstad2018-10-291-2/+6
|
* Enforce CC timeouts in Orchestrator 2Håkon Hallingstad2018-10-231-6/+2
|
* Add / fix @authorMartin Polden2018-03-148-3/+19
|
* Add @JsonIgnoreProperties where missingMartin Polden2018-03-144-0/+8
|
* Remove deprecated suspend APIMartin Polden2018-03-142-74/+0
|
* New path for suspend all APIMartin Polden2018-03-012-2/+15
| | | | This is required to allow authorization of these requests.
* REST API for service statusHåkon Hallingstad2017-10-271-0/+41
|
* Remove unused GetHostResponse constructorHåkon Hallingstad2017-10-271-8/+0
|
* Undo incompatible change to HostResource::getHostHåkon Hallingstad2017-10-261-2/+1
|
* Provide more info in host Orchestrator REST APIHåkon Hallingstad2017-10-253-13/+97
|
* Update copyright headersJon Bratseth2017-06-1410-10/+10
|
* Revert "Update copyright headers"Jon Bratseth2017-06-1410-10/+10
|
* Update copyright headersJon Bratseth2017-06-1410-10/+10
|
* Revert "Copyright header"Jon Bratseth2017-06-1310-10/+10
|
* Copyright headerJon Bratseth2017-06-1310-10/+10
|
* Remove obsolete noteHåkon Hallingstad2017-06-131-1/+0
|
* Make patch workHåkon Hallingstad2017-06-131-1/+2
| | | | | | Removes the PathParams annotation on the subclass, which caused Jersey to ignore the annotations on the superclass(!?). I have verified these changes work in CD.
* Use PUTHåkon Hallingstad2017-06-121-2/+2
|
* Make patch use @PATCHHåkon Hallingstad2017-06-121-1/+2
|
* Orchestrator support for setting host statusHåkon Hallingstad2017-06-123-0/+38
| | | | | | | | | | | | | | | | Directly setting the host status can be useful for an operator, e.g. to break a deadlock. Unfortunately, some code use the term "host status" while others use "host state". I haven't settled yet on which is preferred, e.g. 'state' is used in REST APIs, but 'status' is the original term and slightly more used. This PR maintains the local use of the terms, meaning it adds 'state' where that's normally used and 'status' other places. Setting the deadlock is done with a PATCH request, which is defined in jaxrs_utils. jaxrs_utils only defines PATCH, and that's not used anywhere else except in jaxrs_client_utils tests. So I remove this module as a dependency a couple of places.
* Complete retirement early in dev CDHåkon Hallingstad2017-05-261-11/+1
|
* Added OrchestratorImpl testsvalerijf2016-08-251-0/+20
|
* Remove use of OptionalHarald Musum2016-07-051-7/+6
|
* Use Github username as authorBjørn Christian Seime2016-06-281-1/+1
|
* Replace author with github usernametoby2016-06-171-1/+1
|
* PublishJon Bratseth2016-06-158-0/+448