我想用這樣的簽章寫點InfluxDB:
{ "_field": "some_uuid", "_value": float64, "_time": "2006-01-02T15:04:05.000Z" }
但是 uuid 寫入“field”鍵而不是“_field”,並且“_field”鍵具有預設值 - “value”。 我該如何修復它?
這是我的範例程式碼:
import ( "fmt" influxdb2 "github.com/influxdata/influxdb-client-go/v2" "time" ) type TagData struct { TagId string `json:"tag_id"` Value float64 `json:"value"` Timestamp string `json:"timestamp"` } func main() { inflClient := influxdb2.NewClient("my_url", "my_token") writeAPI := inflClient.WriteAPI("my_org", "my_bucket") data := TagData{ TagId: "d8f623a9-c255-4e0d-9c2f-126056875cef", Value: 300, Timestamp: "2023-12-11T15:35:42.343Z", } parsedTime, err := time.Parse("2006-01-02T15:04:05.000Z", data.Timestamp) if err != nil { fmt.Println("Error parsing time:", err) return } point := influxdb2.NewPointWithMeasurement("data"). AddTag("field", data.TagId). AddField("value", data.Value). SetTime(parsedTime.UTC()) writeAPI.WritePoint(point) writeAPI.Flush() inflClient.Close() }
正確答案
如果有人遇到同樣的問題 - 可能的解決方案是:
point := influxdb2.NewPointWithMeasurement("your_measurement"). AddField(data.TagId, data.Value). SetTime(parsedTime.UTC())
point := influxdb2.NewPoint("your_measurement", map[string]string{}, map[string]interface{}{data.TagId: data.Value}, parsedTime.UTC())
以上是Golang InfluxDB 用戶端使用 _field 鍵寫入點的詳細內容。更多資訊請關注PHP中文網其他相關文章!

Gooffersrobustfeaturesforsecurecoding,butdevelopersmustimplementsecuritybestpracticeseffectively.1)UseGo'scryptopackageforsecuredatahandling.2)Manageconcurrencywithsynchronizationprimitivestopreventraceconditions.3)SanitizeexternalinputstoavoidSQLinj

Go的錯誤接口定義為typeerrorinterface{Error()string},允許任何實現Error()方法的類型被視為錯誤。使用步驟如下:1.基本檢查和記錄錯誤,例如iferr!=nil{log.Printf("Anerroroccurred:%v",err)return}。 2.創建自定義錯誤類型以提供更多信息,如typeMyErrorstruct{MsgstringDetailstring}。 3.使用錯誤包裝(自Go1.13起)來添加上下文而不丟失原始錯誤信息,

對效率的Handleerrorsinconcurrentgopragrs,UsechannelstocommunicateErrors,enplionErrorWatchers,Instertimeout,UsebufferedChannels和Provideclearrormessages.1)USEchannelelStopassErtopassErrorsErtopassErrorsErrorsErrorsFromGoroutInestOthemainFunction.2)

在Go語言中,接口的實現是通過隱式的方式進行的。 1)隱式實現:類型只要包含接口定義的所有方法,就自動滿足該接口。 2)空接口:interface{}類型所有類型都實現,適度使用可避免類型安全問題。 3)接口隔離:設計小而專注的接口,提高代碼的可維護性和重用性。 4)測試:接口有助於通過模擬依賴進行單元測試。 5)錯誤處理:通過接口可以統一處理錯誤。

go'sinterfacesareimpliclyimplyed,與Javaandc#wheRequireexplitiCimplation.1)Ingo,AnyTypeWithTheRequiredMethodSautSautSautautapitymethodimimplementsaninternionsaninterninternionsaninterface.2)

Toensureinitfunctionsareeffectiveandmaintainable:1)Minimizesideeffectsbyreturningvaluesinsteadofmodifyingglobalstate,2)Ensureidempotencytohandlemultiplecallssafely,and3)Breakdowncomplexinitializationintosmaller,focusedfunctionstoenhancemodularityandm

goisidealforbeginnersandsubableforforcloudnetworkservicesduetoitssimplicity,效率和concurrencyFeatures.1)installgromtheofficialwebsitealwebsiteandverifywith'.2)

開發者應遵循以下最佳實踐:1.謹慎管理goroutines以防止資源洩漏;2.使用通道進行同步,但避免過度使用;3.在並發程序中顯式處理錯誤;4.了解GOMAXPROCS以優化性能。這些實踐對於高效和穩健的軟件開發至關重要,因為它們確保了資源的有效管理、同步的正確實現、錯誤的適當處理以及性能的優化,從而提升軟件的效率和可維護性。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

記事本++7.3.1
好用且免費的程式碼編輯器

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

SublimeText3漢化版
中文版,非常好用

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能