首頁  >  文章  >  後端開發  >  使用 olivere/elastic elasticsearch go 函式庫時如何偵錯/查看產生的查詢?

使用 olivere/elastic elasticsearch go 函式庫時如何偵錯/查看產生的查詢?

WBOY
WBOY轉載
2024-02-15 09:09:081149瀏覽

使用 olivere/elastic elasticsearch go 库时如何调试/查看生成的查询?

使用olivere/elastic elasticsearch go函式庫時,偵錯和檢視產生的查詢是一個非常重要的步驟。在開發過程中,我們經常需要確保我們建立的查詢是正確的,並且能夠傳回我們期望的結果。 php小編新一將為您介紹一些方法來調試和查看生成的查詢,以確保您的程式碼能夠正常運作。無論是在開發環境還是生產環境中,這些技巧將幫助您更好地理解和調試您的程式碼。

問題內容

我試著找出 https://github.com/olivere/elastic 程式庫產生的查詢是什麼,就像發送到 elasticsearch 伺服器的實際 json 值查詢一樣。

有一些關於追蹤日誌的文件(我使用的如下所示),但這似乎不包括查詢。

client, err := elastic.NewClient(
...
elastic.SetTraceLog(log.New(os.Stdout,"",0)),
)

我似乎也無法在此處的文檔中找到任何相關內容:https://pkg.go.dev/github.com/olivere/elastic?utm_source=godoc

解決方法

根據文檔,你可以提供自己的http客戶端:

// 取得客戶端。您也可以在此處提供您自己的 http 用戶端。
客戶端,err := elastic.newclient(elastic.seterrorlog(errorlog))

好吧,文件到此結束:)...實際上您必須提供 doer 介面。
我實例化了一個實作 doer 介面的結構,並裝飾了 http.do() 以記錄 http.request 轉儲:

免責聲明: 對於這個問題的範圍,這只是我針對在 docker 容器中執行的彈性實例所使用的一個最小範例。在生產中,不要運行不安全的 tls,不要對憑證進行硬編碼,根據需要配置 http 傳輸等。

package main

import (
    "context"
    "crypto/tls"
    "fmt"
    "net/http"
    "net/http/httputil"

    "github.com/olivere/elastic/v7"
)

type logginghttpelasticclient struct {
    c http.client
}

func (l logginghttpelasticclient) do(r *http.request) (*http.response, error) {
    // log the http request dump
    requestdump, err := httputil.dumprequest(r, true)
    if err != nil {
        fmt.println(err)
    }
    fmt.println("reqdump: " + string(requestdump))
    return l.c.do(r)
}

func main() {
    doer := logginghttpelasticclient{
        c: http.client{
            // load a trusted ca here, if running in production
            transport: &http.transport{
                tlsclientconfig: &tls.config{insecureskipverify: true},
            },
        },
    }

    client, err := elastic.newclient(
        // provide the logging doer here
        elastic.sethttpclient(doer),

        elastic.setbasicauth("elastic", "<password>"),
        elastic.seturl("https://<address>:9200"),
        elastic.setsniff(false), // this is specific to my docker elastic runtime
    )
    if err != nil {
        panic(err)
    }

    /*
        generate a random http request to check if it's logged
    */
    ac := client.alias()
    ac.add("myindex", "myalias").do(context.background())
}

這是輸出:

reqDump: POST /_aliases HTTP/1.1
Host: 127.0.0.1:9200
Accept: application/json
Authorization: Basic base64(<user>:<pass>)
Content-Type: application/json
User-Agent: elastic/7.0.32 (linux-amd64)

{"actions":[{"add":{"alias":"myAlias","index":"myIndex"}}]}

我假設也可以使用 settracelog,但我選擇了已知路徑。

以上是使用 olivere/elastic elasticsearch go 函式庫時如何偵錯/查看產生的查詢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:stackoverflow.com。如有侵權,請聯絡admin@php.cn刪除