summaryrefslogtreecommitdiffstats
path: root/orchestrator-restapi
Commit message (Collapse)AuthorAgeFilesLines
* Add copyright headersJon Bratseth2021-03-181-0/+1
|
* Export API packageJon Marius Venstad2021-01-122-0/+13
|
* Add suspension mojoJon Marius Venstad2021-01-111-0/+1
|
* Workaround for faulty language level detection in IntelliJBjørn Christian Seime2020-11-171-0/+5
|
* Add host info to orchestrator REST APIHåkon Hallingstad2020-02-172-1/+49
|
* Remove findbugs annotations from code and build path.gjoranv2019-09-091-6/+0
| | | | | - jsr305 is needed by guava, which declares it as optional dep. - Remaining modules with annotations do not affect the container.
* 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.
* 6-SNAPSHOT -> 7-SNAPSHOTArnstein Ressem2019-01-211-2/+2
|
* 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.
* Split parent + container-dependency-versions from root pom.gjoranv2017-12-011-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Revert "Gjoranv/split parent2"gjoranv2017-11-301-1/+0
|
* Split parent + container-dependency-versions from root pom.gjoranv2017-11-301-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Revert "Gjoranv/split parent"gjoranv2017-11-291-1/+0
|
* Split parent + container-dependency-versions from root pom.gjoranv2017-11-291-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* REST API for service statusHåkon Hallingstad2017-10-271-0/+41
|
* Merge pull request #3918 from vespa-engine/bratseth/add-copyright-headersJon Marius Venstad2017-10-271-0/+1
|\ | | | | Add copyright header
| * Add copyright headerJon Bratseth2017-10-271-0/+1
| |
* | 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-1411-11/+11
|
* Revert "Update copyright headers"Jon Bratseth2017-06-1411-11/+11
|
* Update copyright headersJon Bratseth2017-06-1411-11/+11
|
* Revert "Copyright header"Jon Bratseth2017-06-1311-11/+11
|
* Copyright headerJon Bratseth2017-06-1311-11/+11
|
* 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-124-0/+44
| | | | | | | | | | | | | | | | 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
|
* Revert "Move jackson module scala to orchestrator restapi"Bjørn Christian Seime2016-11-142-24/+0
| | | | This reverts commit 84adee1bc837aa959a7f17868f162e63aedd3e96.
* Move jackson module scala to orchestrator restapiHåkon Hallingstad2016-11-142-0/+24
|
* 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
|