当前位置: 首页 > 知识库问答 >
问题:

如何在谷歌云功能中打印日文日志

路扬
2023-03-14

我使用logback在java的Google Cloud函数中打印日志。我想打印日文日志,但日志都是奇怪的字符。如何在Java代码中打印日志

我的登录设置如下

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <appender name="jsonConsoleAppender"
      class="ch.qos.logback.core.ConsoleAppender">
    <encoder class="net.logstash.logback.encoder.LogstashEncoder">
      <fieldNames>
        <timestamp>[ignore]</timestamp>
        <version>[ignore]</version>
        <logger>[ignore]</logger>
        <thread>[ignore]</thread>
        <level>[ignore]</level>
        <levelValue>[ignore]</levelValue>
      </fieldNames>
      <charset class="java.nio.charset.Charset">UTF-8</charset>
    </encoder>
  </appender>
  <root level="INFO">
    <appender-ref ref="jsonConsoleAppender"/>
  </root>
</configuration>

我打印日志的代码

logger.info("処理開始:加工前処理", kv("severity", "NOTICE"));

日志是

{
    "textPayload": "������������:���������������",
    "insertId": "000000-47138e32-2a00-40ec-ad45-88c03dffc271",
    "resource": {
      "type": "cloud_function",
      "labels": {
        "project_id": "xxxxxx",
        "region": "asia-northeast1",
        "function_name": "function-2"
      }
    },
    "timestamp": "2020-11-05T09:24:46.633Z",
    "severity": "NOTICE",
    "labels": {
      "execution_id": "sa3kufvievy8"
    },
    "logName": "projects/xxxxxx/logs/cloudfunctions.googleapis.com%2Fcloud-functions",
    "trace": "projects/xxxxxx/traces/17915c7ed95b6d275b424e95f1a5b94b",
    "receiveTimestamp": "2020-11-05T09:24:56.671368622Z"
  }

共有1个答案

艾星河
2023-03-14

看起来Logback在GCP函数中没有得到很好的支持,所以我建议使用已经包含在Cloud Functions中的JavaLogging API。

示例代码是:

文件夹结构:

SRC-

pom.xml

Example.java

package com.example;

import com.google.cloud.functions.HttpFunction;
import com.google.cloud.functions.HttpRequest;
import com.google.cloud.functions.HttpResponse;
import java.io.BufferedWriter;
import java.io.IOException;
import java.util.logging.Logger;

public class Example implements HttpFunction {

  private static final Logger logger = Logger.getLogger(Example.class.getName());

  @Override
  public void service(HttpRequest request, HttpResponse response)
      throws IOException {

    logger.info("処理開始:加工前処理");

    BufferedWriter writer = response.getWriter();
    writer.write("Messages successfully logged!");
  }
}

pom.xml

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.example.cloud.functions</groupId>
  <artifactId>functions-logging-log-hello-world</artifactId>

  <parent>
    <groupId>com.google.cloud.samples</groupId>
    <artifactId>shared-configuration</artifactId>
    <version>1.0.21</version>
  </parent>

  <properties>
    <maven.compiler.target>11</maven.compiler.target>
    <maven.compiler.source>11</maven.compiler.source>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <!-- Required for Function primitives -->
    <dependency>
      <groupId>com.google.cloud.functions</groupId>
      <artifactId>functions-framework-api</artifactId>
      <version>1.0.2</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <!--
          Google Cloud Functions Framework Maven plugin
          This plugin allows you to run Cloud Functions Java code
          locally. Use the following terminal command to run a
          given function locally:
          mvn function:run -Drun.functionTarget=your.package.yourFunction
        -->
        <groupId>com.google.cloud.functions</groupId>
        <artifactId>function-maven-plugin</artifactId>
        <version>0.9.5</version>
        <configuration>
          <functionTarget>functions.Example</functionTarget>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <!-- version 3.0.0-M4 does not load JUnit5 correctly -->
        <!-- see https://issues.apache.org/jira/browse/SUREFIRE-1750 -->
        <version>3.0.0-M5</version>
        <configuration>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <skipTests>${skipTests}</skipTests>
          <reportNameSuffix>sponge_log</reportNameSuffix>
          <trimStackTrace>false</trimStackTrace>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
 类似资料:
  • 我有一个用例,我需要在谷歌云函数中使用Geofire x库。库的初始化函数需要FirebasApp实例。是否有可能在云函数中初始化它,以便使用Firebase管理员查询fi恢复数据库? 我所尝试的... 功能 功能 部署时没有错误,但当调用geofextUserNoti的函数我得到这个错误: 提前谢谢。

  • 我有一个应用引擎项目。 我也有谷歌云功能。 我想从App Engine项目中调用谷歌云功能。我就是没法让它发挥作用。 是的,如果我将函数完全公开(即将云函数设置为“允许所有流量”,并为“所有用户”创建一个允许调用函数的规则),它就可以工作。但是如果我限制这两个设置中的任何一个,它会立即停止工作,我得到403。 应用程序和函数在同一个项目中,所以我至少假设将函数设置为“仅允许内部流量”应该可以正常工

  • 谷歌云的功能似乎非常有趣,因为它是无服务器和零维护的解决方案。但是,什么时候在谷歌应用程序引擎上使用谷歌云功能合适呢?

  • 我正在Firebase中的一个项目中工作,该项目使用图形魔法将图像转换为PDF,在本地模拟器中工作正常,但在生产中没有 错误:无法执行GraphicsMagick/ImageMagick:gm“convert”。/0”。/a4.pdf“这很可能意味着在ChildProcess中找不到gm/convert二进制文件。(/workspace/node_modules/gm/lib/command.js

  • 刚刚完成Hello World谷歌云功能教程,收到以下响应头:

  • 我不知道该怎么说,但我觉得谷歌在我不知情的情况下改变了一些东西。我过去常常从日志仪表板中Google Cloud Console中的python Cloud Functions获取日志。现在,它刚刚停止工作。 所以我去调查了很长时间,我只是做了一个日志 hello world python Cloud Function: 因此,这是我 main.py,我将其部署为具有http触发器的云函数。 因为