We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling GetHost always error: Error decoding JSON response body: json: cannot unmarshal string into Go struct field Host.inventory_mode of type int
Error decoding JSON response body: json: cannot unmarshal string into Go struct field Host.inventory_mode of type int
hosts, err := session.GetHosts(zabbix.HostGetParams{ GetParameters: zabbix.GetParameters{ ResultLimit: 10, }, }) fmt.Println(hosts, err)
[] Error decoding JSON response body: json: cannot unmarshal string into Go struct field Host.inventory_mode of type int
I found that even though the Host Object's inventory_mode is int, but the response of zabbix convert it into string of integer, like :
{ "jsonrpc": "2.0", "result": [ { "inventory_mode": "-1" } }
The text was updated successfully, but these errors were encountered:
May be the inventory field should be string?
Sorry, something went wrong.
No branches or pull requests
Calling GetHost always error:
Error decoding JSON response body: json: cannot unmarshal string into Go struct field Host.inventory_mode of type int
MyCode
Output:
Reason
I found that even though the Host Object's inventory_mode is int, but the response of zabbix convert it into string of integer, like :
The text was updated successfully, but these errors were encountered: