2025 Jan 05 7:35 AM - edited 2025 Jan 05 7:49 AM
Hello Geeks,
The below things I am trying to do it in my BTP Trial A/C
I am trying to implement "Observability" in my CAPM application. When I try to deploy the application in the cloud foundry I am getting the following error -
Service operation failed: Controller operation failed: 404 Not Found: Error creating or updating service instance: Could not create service "Test-cloud-logging" : Service plan lite not found.
The video which i referred is this - Implement Observability in a Full-Stack CAP Application Following SAP BTP Developer’s Guide
Package.JSON
"cds": {
"requires": {
"db": "hana",
"auth": "mocked",
"connectivity": true,
"destinations": true,
"html5-repo": true,
"cloud-logging": true,
"[production]": {
"telemetry": {
"kind": "to-cloud-logging"
}
}
},
"sql": {
"native_hana_associations": false
}
}
MTA.YAML
- name: Test-cloud-logging
type: org.cloudfoundry.managed-service
parameters:
service: cloud-logging
service-plan: lite
config:
ingest_otlp:
enabled: true
- name: Test-srv
type: nodejs
path: gen/srv
parameters:
buildpack: nodejs_buildpack
readiness-health-check-type: http
readiness-health-check-http-endpoint: /health
build-parameters:
builder: npm
provides:
- name: srv-api # required by consumers of CAP services (e.g. approuter)
properties:
srv-url: ${default-url}
requires:
- name: Test-auth
- name: Test-db
- name: Test-connectivity
- name: Test-destination
- name: Test-cloud-logging
Request clarification before answering.
The service plan that I can see in theEntitlements of my Free Tier SAP Partner subaccount is called dev:
According to the SAP Discovery center entry for SAP Cloud Logging there is no lite plan. I've also checked if I could assign Cloud Logging in my BTP Trial. But it's not even there:
I hope that someone responsible for Cloud Logging from SAP will help to close this gap.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maybe @Hariharan-Gandhi can help here?
Hi @rahuljain257 ,
Looking at the error message:
"Cloud-Logging" : Service plan Lite Not Found
Service operation failed: Controller operation failed: 404 Not Found: Error creating or updating service instance: Could not create service "Test-cloud-logging" : Service plan lite not found.
You are trying to create a service instance of plan type `lite`. I assume you want to try `dev` plan.
SAP Cloud Logging service has no lite plan but dev plan for evaluation purposes. Please note that the `dev` plan would also incur cost as it physically provisions hardware for the instance. However the cost is relatively low, suited for evaluation and dev checks.
Plans doc: https://help.sap.com/docs/cloud-logging/cloud-logging/service-plans?version=Cloud
Hope this helps!
Best regards, Hari, SAP Cloud Logging service team
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.