|
| 1 | +/* |
| 2 | + * Copyright 2023 VMware, Inc. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package io.micrometer.core.instrument.binder.http; |
| 17 | + |
| 18 | +import io.micrometer.common.KeyValue; |
| 19 | +import io.micrometer.common.lang.Nullable; |
| 20 | +import io.micrometer.core.instrument.binder.http.HttpObservationDocumentation.CommonLowCardinalityKeys; |
| 21 | + |
| 22 | +class HttpOutcome { |
| 23 | + |
| 24 | + static final KeyValue HTTP_OUTCOME_SUCCESS = KeyValue.of(CommonLowCardinalityKeys.OUTCOME, "SUCCESS"); |
| 25 | + |
| 26 | + static final KeyValue HTTP_OUTCOME_UNKNOWN = KeyValue.of(CommonLowCardinalityKeys.OUTCOME, "UNKNOWN"); |
| 27 | + |
| 28 | + static KeyValue forStatus(boolean server, @Nullable Integer statusCode) { |
| 29 | + if (statusCode == null) { |
| 30 | + return HTTP_OUTCOME_UNKNOWN; |
| 31 | + } |
| 32 | + if (statusCode >= 200 && statusCode < 300) { |
| 33 | + return HTTP_OUTCOME_SUCCESS; |
| 34 | + } |
| 35 | + else if (!server) { |
| 36 | + Series resolved = Series.resolve(statusCode); |
| 37 | + if (resolved == null) { |
| 38 | + return HTTP_OUTCOME_UNKNOWN; |
| 39 | + } |
| 40 | + return KeyValue.of(CommonLowCardinalityKeys.OUTCOME, resolved.name()); |
| 41 | + } |
| 42 | + else { |
| 43 | + return HTTP_OUTCOME_UNKNOWN; |
| 44 | + } |
| 45 | + } |
| 46 | + |
| 47 | + // Taken from Spring Http |
| 48 | + enum Series { |
| 49 | + |
| 50 | + INFORMATIONAL(1), SUCCESSFUL(2), REDIRECTION(3), CLIENT_ERROR(4), SERVER_ERROR(5); |
| 51 | + |
| 52 | + private final int value; |
| 53 | + |
| 54 | + Series(int value) { |
| 55 | + this.value = value; |
| 56 | + } |
| 57 | + |
| 58 | + @Nullable |
| 59 | + static Series resolve(int statusCode) { |
| 60 | + int seriesCode = statusCode / 100; |
| 61 | + for (Series series : values()) { |
| 62 | + if (series.value == seriesCode) { |
| 63 | + return series; |
| 64 | + } |
| 65 | + } |
| 66 | + return null; |
| 67 | + } |
| 68 | + |
| 69 | + } |
| 70 | + |
| 71 | +} |
0 commit comments