Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
223150f3
Commit
223150f3
authored
2 years ago
by
Sören Henning
Browse files
Options
Downloads
Patches
Plain Diff
Deprecate old SLOs
parent
c2db6348
No related branches found
No related tags found
No related merge requests found
Pipeline
#10451
passed
2 years ago
Stage: build
Stage: test
Stage: check
Stage: deploy
Stage: smoketest
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/SloTypes.kt
+3
-3
3 additions, 3 deletions
...c/main/kotlin/rocks/theodolite/kubernetes/slo/SloTypes.kt
with
3 additions
and
3 deletions
theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/SloTypes.kt
+
3
−
3
View file @
223150f3
...
...
@@ -3,9 +3,9 @@ package rocks.theodolite.kubernetes.slo
enum
class
SloTypes
(
val
value
:
String
)
{
GENERIC
(
"generic"
),
LAG_TREND
(
"lag trend"
),
LAG_TREND_RATIO
(
"lag trend ratio"
),
DROPPED_RECORDS
(
"dropped records"
),
DROPPED_RECORDS_RATIO
(
"dropped records ratio"
);
@Deprecated
(
"Use LAG_TREND with relative threshold instead."
)
LAG_TREND_RATIO
(
"lag trend ratio"
),
@Deprecated
(
"Use GENERIC instead."
)
DROPPED_RECORDS
(
"dropped records"
),
@Deprecated
(
"Use GENERIC with relative threshold instead."
)
DROPPED_RECORDS_RATIO
(
"dropped records ratio"
);
companion
object
{
fun
from
(
type
:
String
):
SloTypes
=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment