We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4181e2d commit 9c7510bCopy full SHA for 9c7510b
2 files changed
examples/otlpmetrics-function/build.gradle
@@ -62,6 +62,13 @@ tasks.named('shadowJar', ShadowJar) {
62
destinationDirectory.set(file('out/deployment/'))
63
}
64
65
+clean {
66
+ doLast {
67
+ println "Deleting previous output..."
68
+ project.delete(files('out'))
69
+ }
70
+}
71
+
72
// Task only used to test the function locally
73
tasks.register('runFunction', JavaExec) {
74
mainClass = 'com.google.cloud.functions.invoker.runner.Invoker'
examples/otlpmetrics-function/collector-deployment/Dockerfile
@@ -12,6 +12,6 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-FROM otel/opentelemetry-collector-contrib:0.87.0
+FROM otel/opentelemetry-collector-contrib:0.111.0
16
17
COPY collector-config.yaml /etc/otelcol-contrib/config.yaml
0 commit comments