Compare commits

6 Commits

Author SHA1 Message Date
ba32a37319 feat: add service discovery, OTel instrumentation, and k6 load tests
All checks were successful
Integration Test / Platform Conformance (pull_request) Successful in 5s
Integration Test / Unit Tests + Container Smoke (workflow_dispatch) All checks passed
SonarQube Analysis / Build, Test & Analyse (pull_request) Successful in 1m49s
Integration Test / Unit Tests + Container Smoke (pull_request) Successful in 15s
2026-08-28 13:03:55 +00:00
ed0e24a379 feat: add service discovery, OTel instrumentation, and k6 load tests 2026-08-28 13:03:54 +00:00
fbcbea2792 feat: add service discovery, OTel instrumentation, and k6 load tests 2026-08-28 13:03:53 +00:00
ef89cb2319 feat: add service discovery, OTel instrumentation, and k6 load tests 2026-08-28 13:03:52 +00:00
621d124c0b feat: add service discovery, OTel instrumentation, and k6 load tests 2026-08-28 13:03:51 +00:00
abf473dd04 feat: add service discovery, OTel instrumentation, and k6 load tests 2026-08-28 13:03:51 +00:00
5 changed files with 253 additions and 0 deletions

132
k6/load-test.js Normal file
View File

@@ -0,0 +1,132 @@
import http from 'k6/http';
import { check, sleep, group } from 'k6';
const vus = parseInt(__ENV.TEST_VUS || '10');
const duration = __ENV.TEST_DURATION || '30s';
const targetUrl = __ENV.TARGET_URL || 'http://frontend.demo-apps.svc.cluster.local:80';
export const options = {
scenarios: {
load_test: {
executor: 'ramping-vus',
startVUs: 0,
stages: [
{ duration: '10s', target: vus },
{ duration: duration, target: vus },
{ duration: '5s', target: 0 },
],
},
},
thresholds: {
http_req_duration: ['p(95)<500'],
http_req_failed: ['rate<0.01'],
},
};
http.setResponseCallback(http.expectedStatuses({ min: 200, max: 399 }));
export default function () {
group('Owner API', () => {
let res = http.get(`${targetUrl}/owners/new`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.post(`${targetUrl}/owners/new`, 'firstName=John&lastName=Doe&address=123+Main+St&city=Springfield&telephone=1234567890');
check(res, {
'status is 302': (r) => r.status === 302,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.get(`${targetUrl}/owners/find`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.get(`${targetUrl}/owners`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
});
sleep(0.5);
group('Pet API', () => {
let res = http.get(`${targetUrl}/owners/1/pets/new`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.post(`${targetUrl}/owners/1/pets/new`, 'name=Buddy&birthDate=2023-01-01&type=Dog');
check(res, {
'status is 302': (r) => r.status === 302,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.get(`${targetUrl}/owners/1/pets/1/edit`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.post(`${targetUrl}/owners/1/pets/1/edit`, 'name=Buddy&birthDate=2023-01-01&type=Dog');
check(res, {
'status is 302': (r) => r.status === 302,
'response time < 500ms': (r) => r.timings.duration < 500,
});
});
sleep(0.5);
group('Visit API', () => {
let res = http.get(`${targetUrl}/owners/1/pets/1/visits/new`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.post(`${targetUrl}/owners/1/pets/1/visits/new`, 'date=2023-12-01&description=Routine+checkup');
check(res, {
'status is 302': (r) => r.status === 302,
'response time < 500ms': (r) => r.timings.duration < 500,
});
});
sleep(0.5);
group('Vet API', () => {
let res = http.get(`${targetUrl}/vets.html`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.get(`${targetUrl}/vets`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
});
sleep(0.5);
group('System API', () => {
let res = http.get(`${targetUrl}/`);
check(res, {
'status is 200': (r) => r.status === 200,
'response time < 500ms': (r) => r.timings.duration < 500,
});
res = http.get(`${targetUrl}/oups`, { responseCallback: http.expectedStatuses(500) });
check(res, {
'status is 500': (r) => r.status === 500,
'response time < 500ms': (r) => r.timings.duration < 500,
});
});
sleep(0.5);
}

24
k6/testrun.yaml Normal file
View File

@@ -0,0 +1,24 @@
apiVersion: k6.io/v1alpha1
kind: TestRun
metadata:
name: k6-demo-bmw-3
namespace: demo-apps
labels:
app: demo-bmw-3
backstage.io/component: demo-bmw-3
app.kubernetes.io/managed-by: backstage
app.kubernetes.io/component: load-testing
spec:
parallelism: 1
script:
configMap:
name: k6-test-demo-bmw-3
file: load-test.js
runner:
image: grafana/k6:latest
envFrom:
- configMapRef:
name: k6-test-demo-bmw-3
env:
- name: K6_OTEL_SERVICE_NAME
value: k6-demo-bmw-3

View File

@@ -0,0 +1,64 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: k6-test-demo-bmw-3
namespace: demo-apps
labels:
app: demo-bmw-3
app.kubernetes.io/managed-by: backstage
app.kubernetes.io/component: load-testing
data:
K6_OUT: opentelemetry
K6_OTEL_GRPC_EXPORTER_INSECURE: 'true'
K6_OTEL_GRPC_EXPORTER_ENDPOINT: otel-collector.monitoring.svc.cluster.local:4317
K6_OTEL_METRIC_PREFIX: k6_
K6_OTEL_FLUSH_INTERVAL: '1000'
K6_OTEL_EXPORT_INTERVAL: '5000'
K6_OTEL_SERVICE_NAME: k6-demo-bmw-3
load-test.js: "import http from 'k6/http';\nimport { check, sleep, group } from\
\ 'k6';\n\nconst vus = parseInt(__ENV.TEST_VUS || '10');\nconst duration = __ENV.TEST_DURATION\
\ || '30s';\nconst targetUrl = __ENV.TARGET_URL || 'http://frontend.demo-apps.svc.cluster.local:80';\n\
\nexport const options = {\n scenarios: {\n load_test: {\n executor:\
\ 'ramping-vus',\n startVUs: 0,\n stages: [\n { duration: '10s',\
\ target: vus },\n { duration: duration, target: vus },\n { duration:\
\ '5s', target: 0 },\n ],\n },\n },\n thresholds: {\n http_req_duration:\
\ ['p(95)<500'],\n http_req_failed: ['rate<0.01'],\n },\n};\n\nhttp.setResponseCallback(http.expectedStatuses({\
\ min: 200, max: 399 }));\n\nexport default function () {\n group('Owner API',\
\ () => {\n let res = http.get(`${targetUrl}/owners/new`);\n check(res,\
\ {\n 'status is 200': (r) => r.status === 200,\n 'response time < 500ms':\
\ (r) => r.timings.duration < 500,\n });\n\n res = http.post(`${targetUrl}/owners/new`,\
\ 'firstName=John&lastName=Doe&address=123+Main+St&city=Springfield&telephone=1234567890');\n\
\ check(res, {\n 'status is 302': (r) => r.status === 302,\n 'response\
\ time < 500ms': (r) => r.timings.duration < 500,\n });\n\n res = http.get(`${targetUrl}/owners/find`);\n\
\ check(res, {\n 'status is 200': (r) => r.status === 200,\n 'response\
\ time < 500ms': (r) => r.timings.duration < 500,\n });\n\n res = http.get(`${targetUrl}/owners`);\n\
\ check(res, {\n 'status is 200': (r) => r.status === 200,\n 'response\
\ time < 500ms': (r) => r.timings.duration < 500,\n });\n });\n\n sleep(0.5);\n\
\n group('Pet API', () => {\n let res = http.get(`${targetUrl}/owners/1/pets/new`);\n\
\ check(res, {\n 'status is 200': (r) => r.status === 200,\n 'response\
\ time < 500ms': (r) => r.timings.duration < 500,\n });\n\n res = http.post(`${targetUrl}/owners/1/pets/new`,\
\ 'name=Buddy&birthDate=2023-01-01&type=Dog');\n check(res, {\n 'status\
\ is 302': (r) => r.status === 302,\n 'response time < 500ms': (r) => r.timings.duration\
\ < 500,\n });\n\n res = http.get(`${targetUrl}/owners/1/pets/1/edit`);\n\
\ check(res, {\n 'status is 200': (r) => r.status === 200,\n 'response\
\ time < 500ms': (r) => r.timings.duration < 500,\n });\n\n res = http.post(`${targetUrl}/owners/1/pets/1/edit`,\
\ 'name=Buddy&birthDate=2023-01-01&type=Dog');\n check(res, {\n 'status\
\ is 302': (r) => r.status === 302,\n 'response time < 500ms': (r) => r.timings.duration\
\ < 500,\n });\n });\n\n sleep(0.5);\n\n group('Visit API', () => {\n \
\ let res = http.get(`${targetUrl}/owners/1/pets/1/visits/new`);\n check(res,\
\ {\n 'status is 200': (r) => r.status === 200,\n 'response time < 500ms':\
\ (r) => r.timings.duration < 500,\n });\n\n res = http.post(`${targetUrl}/owners/1/pets/1/visits/new`,\
\ 'date=2023-12-01&description=Routine+checkup');\n check(res, {\n 'status\
\ is 302': (r) => r.status === 302,\n 'response time < 500ms': (r) => r.timings.duration\
\ < 500,\n });\n });\n\n sleep(0.5);\n\n group('Vet API', () => {\n let\
\ res = http.get(`${targetUrl}/vets.html`);\n check(res, {\n 'status is\
\ 200': (r) => r.status === 200,\n 'response time < 500ms': (r) => r.timings.duration\
\ < 500,\n });\n\n res = http.get(`${targetUrl}/vets`);\n check(res,\
\ {\n 'status is 200': (r) => r.status === 200,\n 'response time < 500ms':\
\ (r) => r.timings.duration < 500,\n });\n });\n\n sleep(0.5);\n\n group('System\
\ API', () => {\n let res = http.get(`${targetUrl}/`);\n check(res, {\n\
\ 'status is 200': (r) => r.status === 200,\n 'response time < 500ms':\
\ (r) => r.timings.duration < 500,\n });\n\n res = http.get(`${targetUrl}/oups`,\
\ { responseCallback: http.expectedStatuses(500) });\n check(res, {\n \
\ 'status is 500': (r) => r.status === 500,\n 'response time < 500ms': (r)\
\ => r.timings.duration < 500,\n });\n });\n\n sleep(0.5);\n}"

View File

@@ -0,0 +1,14 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../deploy
patches:
- target:
kind: Deployment
name: petclinic
patch: "apiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: petclinic\nspec:\n\
\ template:\n metadata:\n annotations:\n instrumentation.opentelemetry.io/inject-java:\
\ monitoring/otel-instrumentation\n spec:\n containers:\n - name:\
\ workload\n env:\n - name: OTEL_SERVICE_NAME\n value:\
\ petclinic\n - name: OTEL_EXPORTER_OTLP_ENDPOINT\n value: http://otel-collector.monitoring.svc.cluster.local:4318\n\
\ - name: OTEL_RESOURCE_ATTRIBUTES\n value: app=demo-bmw-3\n"

View File

@@ -0,0 +1,19 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: petclinic
spec:
template:
metadata:
annotations:
instrumentation.opentelemetry.io/inject-java: monitoring/otel-instrumentation
spec:
containers:
- name: workload
env:
- name: OTEL_SERVICE_NAME
value: petclinic
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: http://otel-collector.monitoring.svc.cluster.local:4318
- name: OTEL_RESOURCE_ATTRIBUTES
value: app=demo-bmw-3