简体   繁体   English

在 Grafana 中使用 BigQuery 插件

[英]Using BigQuery plugin in Grafana

I have some issues with the format of the provisioning file.我对配置文件的格式有一些疑问。 I have some service account file that looks like this我有一些看起来像这样的服务帐户文件

{
  "type": "service_account",
  "project_id": "my-project",
  "private_key_id": "XXXXX_my_private_key_id_XXXXXXX",
  "private_key": "-----BEGIN PRIVATE KEY-----\nXXXXXXX_my_private_key___\nXXXXX_another_line_here_XXXXX\nXXXXXX_final_line_XXXXXX==\n-----END PRIVATE KEY-----\n",
  "client_email": "my-project@company.iam.gserviceaccount.com",
  "client_id": "123456",
  "auth_uri": "https://accounts.google.com/o/oauth2/auth",
  "token_uri": "https://accounts.google.com/o/oauth2/token",
  "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
  "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/my-project%40company.iam.gserviceaccount.com"
}

And the provisioning file that I put in /etc/grafana/provisioning/datasources/all.yaml Which looks like this我放在/etc/grafana/provisioning/datasources/all.yaml中的配置文件看起来像这样

apiVersion: 1

# list of datasources to insert/update depending
# what's available in the database
datasources:
  # <string, required> name of the datasource. Required
- name: bigquery-project
  type: doitintl-bigquery-datasource
  access: proxy
  isDefault: true
  jsonData:
  authenticationType: jwt
  clientEmail: my-project@company.iam.gserviceaccount.com
  defaultProject: my-default-project
  tokenUri: https://accounts.google.com/o/oauth2/token
  secureJsonData:
  privateKey: "-----BEGIN PRIVATE KEY-----\nXXXXXXX_my_private_key___\nXXXXX_another_line_here_XXXXX\nXXXXXX_final_line_XXXXXX==\n-----END PRIVATE KEY-----\n"
  version: 2
  readOnly: false

But when I clicked on save and test I got some errors.但是当我点击保存并测试时,我得到了一些错误。 I think I miss-formated the provisioning file.我想我错误地格式化了配置文件。 I tried to upload the service account file using the UI and the test passed, I was able to query BQ.我尝试使用 UI 上传服务帐户文件并且测试通过,我能够查询 BQ。 However when I did this, I couldn't find any file in /etc/grafana/provisioning/datasources to get and example of it.但是,当我这样做时,我无法在/etc/grafana/provisioning/datasources中找到任何文件来获取它的示例。

I'm executing a custom Grafana image in a docker container我正在 docker 容器中执行自定义 Grafana 图像

### file system hierarchy of the project
.
├── Dockerfile
└── provisioning
    ├── dashborads
    └── datasources
        └── all.yaml
### Docker file 
ARG GRAFANA_VERSION=6.5.3
FROM grafana/grafana:$GRAFANA_VERSION
ENV GF_AUTH_DISABLE_LOGIN_FORM "true"
ENV GF_AUTH_ANONYMOUS_ENABLED "true"
ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin"
ENV GF_INSTALL_PLUGINS "doitintl-bigquery-datasource 1.0.4"

The way I'm running the container我运行容器的方式

docker run -d -p 3000:3000 -v $(pwd)/provisioning:/etc/grafana/provisioning massy/custom-grafana

I'm providing the provisioning file via a volume.我通过卷提供配置文件。

What's wrong with the provisioning file?配置文件有什么问题? When we add a datasource in Grafana, isn't the provisioning file updated automatically?当我们在Grafana中添加数据源时,provisioning文件不是自动更新了吗? (if not created then it will be?) How could I get the logs when I test that bigquery plugin? (如果没有创建,那么它会被创建吗?)当我测试那个 bigquery 插件时,我怎么能得到日志?

Edit编辑

When I tried to add a dummy SQL query in "new dashbord" section this is what I get当我试图在“新仪表板”部分添加一个虚拟 SQL 查询时,这就是我得到的

 lvl=eror msg="Failed to get access token" logger=data-proxy-log error="private key should be a PEM or plain PKCS1 or PKCS8; parse error: asn1: structure error: tags don't match (16 vs {class:0 tag:28 length:110 isCompound:true}) {optional:false explicit:false application:false private:false defaultValue:<nil> tag:<nil> stringType:0 timeType:0 set:false omitEmpty:false} pkcs1PrivateKey @2"
t=2020-01-22T10:02:18+0000 lvl=info msg=Requesting logger=data-proxy-log url=https://www.googleapis.com/bigquery/v2/projects/undefined/queries
t=2020-01-22T10:02:18+0000 lvl=info msg="Request Completed" logger=context userId=0 orgId=1 uname= method=POST path=/api/datasources/proxy/1/bigquery/v2/projects/undefined/queries status=401 remote_addr=172.17.0.1 time_ms=55 size=304 referer="http://localhost:3000/dashboard/new?panelId=2&edit&fullscreen&orgId=1&gettingstarted"

I did a docker logs on the container我在容器上做了一个docker logs

This is the correct format for the provisioning file这是配置文件的正确格式

apiVersion: 1

datasources:
- name: bigquery-project
  type: doitintl-bigquery-datasource
  access: proxy
  isDefault: true
  jsonData:
     authenticationType: jwt
     clientEmail: my-project@company.iam.gserviceaccount.com
     defaultProject: my-default-project
     tokenUri: https://accounts.google.com/o/oauth2/token
  secureJsonData:
     privateKey: |
        -----BEGIN PRIVATE KEY-----
        XXXXXXX_my_private_key___
        XXXXX_another_line_here_XXXXX
        XXXXXX_final_line_XXXXXX
        -----END PRIVATE KEY-----
  version: 2
  readOnly: false

There is a difference between the two provisioning files:两个配置文件之间存在差异:

The one on GitHub has the correct format GitHub 上的格式正确

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM