Skip to content

Commit

Permalink
Merge branch 'main' into doc/typescript-build-and-facet
Browse files Browse the repository at this point in the history
  • Loading branch information
daogrady committed Sep 17, 2024
2 parents 0725a7d + 503bd07 commit f095167
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

# General content
* @smahati
## * @renejeglinsky
* @renejeglinsky

# Infra
.github/ @chgeo @swaldmann
.vitepress/ @chgeo @swaldmann

# allow dependencies updates through renovate w/o code owners
package.json
package-lock.json
package-lock.json
1 change: 1 addition & 0 deletions get-started/in-a-nutshell.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ synopsis: >
notebook: true
status: released
uacp: This page is linked from the Help Portal at https://help.sap.com/products/BTP/65de2977205c403bbc107264b8eccf4b/29c25e504fdb4752b0383d3c407f52a6.html
redirect_from: get-started/
impl-variants: true
---

Expand Down
7 changes: 6 additions & 1 deletion java/operating-applications/observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,11 @@ Configure your application to enable the Open Telemetry Java Agent by adding or
# ...
properties:
# ...
JBP_CONFIG_JAVA_OPTS: "[from_environment: false, java_opts: '-javaagent:META-INF/.sap_java_buildpack/otel_agent/opentelemetry-javaagent.jar -Dotel.javaagent.extensions=META-INF/.sap_java_buildpack/otel_agent_extension/otel-agent-ext-java.jar']"
JBP_CONFIG_JAVA_OPTS:
from_environment: false
java_opts: >
-javaagent:META-INF/.sap_java_buildpack/otel_agent/opentelemetry-javaagent.jar
-Dotel.javaagent.extensions=META-INF/.sap_java_buildpack/otel_agent_extension/otel-agent-ext-java.jar
```
:::
Expand Down Expand Up @@ -318,6 +322,7 @@ Open Telemetry support using SAP BTP Cloud Logging Service leverages the [Open T
# ...
OTEL_METRICS_EXPORTER: cloud-logging
OTEL_TRACES_EXPORTER: cloud-logging
OTEL_LOGS_EXPORTER: none
```
:::

Expand Down
7 changes: 4 additions & 3 deletions node.js/cds-ql.md
Original file line number Diff line number Diff line change
Expand Up @@ -698,15 +698,16 @@ INSERT.into (Books) .columns (
[ 252, 'Eleonora', 150, 234 ]
)
```
### as() {.method}
### from() {.method #from}


Constructs a _INSERT into SELECT_ statement.
```js
INSERT.into('Bar') .as (SELECT.from('Foo'))
INSERT.into('Bar') .from (SELECT.from('Foo'))
```
### as() {.method}


The use of _.as()_ method is deprecated. Please use [_.from()_](#from) method instead.


## UPSERT {.class}
Expand Down

0 comments on commit f095167

Please sign in to comment.