- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在使用 BurntSushi 库在我的 GO 应用程序中加载 TOML 配置文件。我已按照库中的说明编写结构和配置 toml 文件本身。我遇到了一些麻烦,而且我似乎找不到问题的根源。
详情如下:
结构:
package main
//ConfigurationParameters provides the struct to hold configuration parameters from config file
type ConfigurationParameters struct {
Title string
//serviceDiscovery captures configuration parameters needed for service discovery registration with Consul
ServiceDiscovery ConsulConf `toml:"ServiceDiscovery"`
//metadataReporting captures which metadata to be registered with service into consul for use during discovery
MetadataReporting MetaDataConf `toml:"MetadataReporting"`
//awsTagsToLabels captures the aws tags that should be added to reported metrics as Labels
AwsTagsToLabels LabelConf `toml:"AwsTagsToLabels"`
//collectors captures the list of collectors to use
Collectors CollectorConf `toml:"Collectors"`
//service captures agent related configurations
Service ServiceConf `toml:"Service"`
}
//ConsulConf captures configuration parameters needed for service discovery registration with Consul
type ConsulConf struct {
enabled bool
endpoint string
port int
datacenter string
serviceID string
}
//MetaDataConf captures which metadata to be registered with service into consul for use during discovery
type MetaDataConf struct {
enabled bool
awsregion string
}
//LabelConf captures the aws tags that should be added to reported metrics as Labels
type LabelConf struct {
enabled bool
refreshPeriod int
}
//CollectorConf captures the list of collectors to use
type CollectorConf struct {
goCollectionEnabled bool
exporterCollectionEnabled bool
wmiCollectionEnabled bool
agentCollectionEnabled bool
enabledCollectors string
metricMap []MetricMap
}
//MetricMap captures a mapping between one or more WMI metrics and the name it should be reported with
type MetricMap struct {
wmiMetricName []string
exportName string
dropMetric bool
computedMetric bool
computeLogic string
}
//ServiceConf captures agent related configurations
type ServiceConf struct {
listenIP string
listenPort int
metricPath string
collectionInterval int
serviceName string
}
和配置toml文件:
Title = "WMI Exporter Configuration"
[ServiceDiscovery]
enabled = true
endpoint = "my.consul.server"
port = 5500
datacenter = "ucm-west"
serviceID = "ucm.agent.wmiExporter"
[MetadataReporting]
enabled = true
awsregion = "us-west-2"
[AwsTagsToLabels]
enabled = true
refreshPeriod = 3600
[Collectors]
goCollectionEnabled = true
exporterCollectionEnabled = true
wmiCollectionEnabled = true
agentCollectionEnabled = false
enabledCollectors = "cpu,os"
[Collectors.MetricMap.0]
wmiMetricName = ["test"]
exportName = "export_test"
[Service]
listenPort = 9103
metricPath = "/metrics"
collectionInterval = 60
serviceName = "wmi_exporter"
读取配置文件的代码:
// InitializeFromConfig reads configuration parameters from configuration file and initializes this service
func InitializeFromConfig(configfile string) ConfigurationParameters {
conf := ConfigurationParameters{}
if configfile == "" {
return conf
}
_, err := toml.DecodeFile(configfile, &conf)
if err != nil {
log.Fatalf("Cannot parse configuration file at %s. Error=%s", configfile, err)
}
//at this point, conf is a fully loaded configuration now; now initialize everything from conf
return conf
}
我面临的问题是只有 Title 属性的值被映射到 GO 结构成员。所有其他配置保持未映射状态。查看 github 上关于 BurntSushi 和 (Go) How to use toml files? 的所有示例,我看不出我目前在代码中所做的有什么不同。
我还使用了 BurntSushi 包中的 tomlv 验证器来查看 TOML 文件中的类型,我相信它们看起来是正确的。
数据类型:
Title String
ServiceDiscovery Hash
ServiceDiscovery.enabled Bool
ServiceDiscovery.endpoint String
ServiceDiscovery.port Integer
ServiceDiscovery.datacenter String
ServiceDiscovery.serviceID String
MetadataReporting Hash
MetadataReporting.enabled Bool
MetadataReporting.awsregion String
AwsTagsToLabels Hash
AwsTagsToLabels.enabled Bool
AwsTagsToLabels.refreshPeriod Integer
Collectors Hash
Collectors.goCollectionEnabled Bool
Collectors.exporterCollectionEnabled Bool
Collectors.wmiCollectionEnabled Bool
Collectors.agentCollectionEnabled Bool
Collectors.enabledCollectors String
Collectors.MetricMap.0 Hash
Collectors.MetricMap.0.wmiMetricName Array
Collectors.MetricMap.0.exportName String
Service Hash
Service.listenPort Integer
Service.metricPath String
Service.collectionInterval Integer
Service.serviceName String
我尝试调试 BurntSushi 包代码,但它不是很有帮助(Delve 调试器无法显示该包中的某些变量,并且似乎在该包中的行之间随机跳转)。
关于我可能做错了什么的任何帮助或指示?
谢谢。
最佳答案
您需要导出您希望 BurntSushi/toml
解码到的任何字段,包括子字段:
//ConfigurationParameters provides the struct to hold configuration parameters from config file
type ConfigurationParameters struct {
Title string
//serviceDiscovery captures configuration parameters needed for service discovery registration with Consul
ServiceDiscovery ConsulConf `toml:"ServiceDiscovery"`
//metadataReporting captures which metadata to be registered with service into consul for use during discovery
MetadataReporting MetaDataConf `toml:"MetadataReporting"`
//awsTagsToLabels captures the aws tags that should be added to reported metrics as Labels
AwsTagsToLabels LabelConf `toml:"AwsTagsToLabels"`
//collectors captures the list of collectors to use
Collectors CollectorConf `toml:"Collectors"`
//service captures agent related configurations
Service ServiceConf `toml:"Service"`
}
//ConsulConf captures configuration parameters needed for service discovery registration with Consul
type ConsulConf struct {
Enabled bool
Endpoint string
Port int
Datacenter string
ServiceID string
}
//MetaDataConf captures which metadata to be registered with service into consul for use during discovery
type MetaDataConf struct {
Enabled bool
Awsregion string
}
//LabelConf captures the aws tags that should be added to reported metrics as Labels
type LabelConf struct {
Enabled bool
RefreshPeriod int
}
//CollectorConf captures the list of collectors to use
type CollectorConf struct {
GoCollectionEnabled bool
ExporterCollectionEnabled bool
WmiCollectionEnabled bool
AgentCollectionEnabled bool
EnabledCollectors string
MetricMap []MetricMap
}
//MetricMap captures a mapping between one or more WMI metrics and the name it should be reported with
type MetricMap struct {
WmiMetricName []string
ExportName string
DropMetric bool
ComputedMetric bool
ComputeLogic string
}
//ServiceConf captures agent related configurations
type ServiceConf struct {
ListenIP string
ListenPort int
MetricPath string
CollectionInterval int
ServiceName string
}
此外,我不确定此 Collectors.MetricMap.0
语法应该表示什么,而是将您的 toml 值解码到 []MetricMap
字段中你想要做的是这样的:
[[Collectors.MetricMap]]
wmiMetricName = ["test"]
exportName = "export_test"
关于go - 无法使用带有 BurntSushi 库的 Go 读取 TOML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43218484/
我有一个 TOML 文档,其中某些键可能存在也可能不存在。例如。该文件是有效文件: foo = "bar" 但这也是有效的: foo = "bar" something = "else" 我现在正尝试
我正在使用 Dynaconf (3.1.2) 来处理我的 python 应用程序设置。 如果我在 settings.toml 和 .secrets.toml 中使用相同的 key ,则这些部分最后仅包
我正在使用 Dynaconf (3.1.2) 来处理我的 python 应用程序设置。 如果我在 settings.toml 和 .secrets.toml 中使用相同的 key ,则这些部分最后仅包
TOML said“TOML和YAML都强调人类的可读性,例如使人们更容易理解给定行目的的注释。TOML的不同之处在于将它们组合在一起,允许注释(与JSON不同),但保留了简单性(与YAML不同)。”
我正在尝试为 TOML 文档实现可链接的查询执行。 A Query是更改 TOML 文档并可能返回另一个 Query 的东西应在其自身之后执行的对象。 Query执行的获取前一个查询的结果(如果有的话
看着 toml repo ,我没有看到任何关于键命名约定的限制/建议 看起来大部分变量都是 lowercase但想知道 key 的最佳实践 - 命名约定是什么? 假设我想要一个名为 firstname
我想从 TOML 文件生成 JSON。 JSON 结构应该是这样的,在对象数组中包含对象数组: { "things": [ { "a": "thing1
背景 我正要尝试从GitHub下载的Python包,发现它没有setup.py ,所以我无法安装它 pip install -e 相反,该软件包具有 pyproject.toml 文件似乎具有与 s
获取以下 TOML 数据: [[items]] foo = 10 bar = 100 [[items]] foo = 12 bar = 144 还有下面的 rust 代码: use serde_der
“WSO IS 5.9.0”的新功能是 deployment.toml ,但我还没有找到配置选项,也没有找到如何从这个文件设置 xml 配置文件的方法。 例如,如果我想在 carbon.xml 中启用
“WSO IS 5.9.0”的新功能是 deployment.toml ,但我还没有找到配置选项,也没有找到如何从这个文件设置 xml 配置文件的方法。 例如,如果我想在 carbon.xml 中启用
从 toml 文件中读取的字符串值包含额外的引号: # Toml file string_key = "fdsafdsafdsfds" 代码: let cfg_file_content = g
我正在尝试读取 TOML 文件以创建一个结构,该结构包含具有关联值的枚举向量。这是示例代码: extern crate serde; #[macro_use] extern crate serde_d
我有共享公共(public)资源且无法同时执行的测试。这些测试因 cargo test 而失败,但适用于 RUST_TEST_THREADS=1 cargo test。 我可以修改测试以等待全局互斥锁
我使用以下方式安装了依赖项: go get github.com/BurntSushi/toml 我在与 main.go 相同的文件夹中创建了一个 toml 文件: . |-- cloud.toml
我有一个包含两个可执行文件的 Rust 项目: src └── bin ├── app.rs └── tool.rs tool 程序作为app 的子进程运行。 (需要进行分离,因为 t
背景 我目前正在编写一个绑定(bind) C 库的 crate ,我需要用户指定构建库的位置。以前,我见过 llvm-sys 的句柄crate 使用环境变量。但是,如果我经常使用它,每次我想运行一个项
所以我在 GitHub 存储库中有几个文件,我想设置一个自定义的 404 错误页面。当我搜索它时,它要求我在 netlify.toml 中插入一些东西。文件,它应该在我的根目录中(我认为这意味着存储库
Pip 支持 pyproject.toml文件,但到目前为止,新模式的所有实际使用都需要一个 3rd 方工具来自动生成这些文件(例如,诗歌和 pip)。不像 setup.py这已经是人类可写的,pyp
我希望有这样的东西:cargo install stopwatch 但在文档中找不到它。 查找包版本并手动将包添加到.toml: [dependencies] stopwatch="0.0.6" 感觉
我是一名优秀的程序员,十分优秀!