cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Could not create service "Cloud-Logging" : Service plan Lite Not Found

rahuljain257
Participant
0 Likes
950

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

 

 

Accepted Solutions (0)

Answers (2)

Answers (2)

gregorw
SAP Mentor
SAP Mentor

The service plan that I can see in theEntitlements of my Free Tier SAP Partner subaccount  is called dev:

gregorw_0-1736066038124.png

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:

gregorw_1-1736066187606.png

I hope that someone responsible for Cloud Logging from SAP will help to close this gap.

 

gregorw
SAP Mentor
SAP Mentor
0 Likes

Maybe @Hariharan-Gandhi can help here?

rahuljain257
Participant
0 Likes
@gregorw thanks for your response so do you mean cloud logging service is not available in the btp trial account ?
gregorw
SAP Mentor
SAP Mentor
0 Likes
Exactly.
Hariharan-Gandhi
Product and Topic Expert
Product and Topic Expert
0 Likes

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