Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Veksler <Mihails.Vekslers@zabbix.com>2022-10-21 17:20:42 +0300
committerMichael Veksler <Mihails.Vekslers@zabbix.com>2022-10-21 17:20:42 +0300
commitd6af7eeaf7ce1f7d73c571f6ee2ac93df4e53897 (patch)
treeb70c2dc2d2d74d9179b6dec0af56542d3fdedb52 /include
parent0b342511fd5ad89e4b84bd18b3fe52b837a125e5 (diff)
parent48fa72cc33c7b63d4d1f822693bf8feface73db7 (diff)
.......PS. [ZBXNEXT-6401] added new vmware keys vmware.datastore.perfcounter and vmware.hv.diskinfo.get
* commit '48fa72cc33c7b63d4d1f822693bf8feface73db7': (34 commits) .......PS. [ZBXNEXT-6401] fixed new snapshot fields name .......PS. [ZBXNEXT-6401] removed extra empty space .......PS. [ZBXNEXT-6401] fixed crash of su(6) .......PS. [ZBXNEXT-6401] fixed warnings .......PS. [ZBXNEXT-6401] fixed error message .......... [ZBXNEXT-6401] fixed ChangeLog entry .......... [ZBXNEXT-6401] added ChangeLog entry .......PS. [ZBXNEXT-6401] added oldest* fields to vm snapshot json .......PS. [ZBXNEXT-6401] fixed PR noties .......PS. [ZBXNEXT-6401] define empty REST response .......PS. [ZBXNEXT-6401] added description to CItemData.php .......PS. [ZBXNEXT-6401] removed debug log record .......PS. [ZBXNEXT-6401] fixed REST Tags minimal version control .......PS. [ZBXNEXT-6401] fixed REST empty response .......PS. [ZBXNEXT-6401] fixed support for standalone ESX server .......PS. [ZBXNEXT-6401] added support of vmware.datastore.perfcounter .......PS. [ZBXNEXT-6401] added vsan ds uuid to disk_info .......PS. [ZBXNEXT-6401] fixed PR notes .......PS. [ZBXNEXT-6401] added datastore type .......PS. [ZBXNEXT-6401] reinitialized curl heades after getting vc version ...
Diffstat (limited to 'include')
-rw-r--r--include/zbxtime.h2
-rw-r--r--include/zbxxml.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/include/zbxtime.h b/include/zbxtime.h
index 678156523a7..a383d774845 100644
--- a/include/zbxtime.h
+++ b/include/zbxtime.h
@@ -81,4 +81,6 @@ int zbx_calculate_sleeptime(int nextcheck, int max_sleeptime);
char *zbx_age2str(int age);
char *zbx_date2str(time_t date, const char *tz);
char *zbx_time2str(time_t time, const char *tz);
+int zbx_iso8601_utc(const char *str, time_t *time);
+
#endif /* ZABBIX_TIME_H */
diff --git a/include/zbxxml.h b/include/zbxxml.h
index 7cc1bb22a34..7cf062cb8fd 100644
--- a/include/zbxxml.h
+++ b/include/zbxxml.h
@@ -52,6 +52,7 @@ int zbx_xml_node_read_values(xmlDoc *xdoc, xmlNode *node, const char *xpath, zbx
int zbx_xml_try_read_value(const char *data, size_t len, const char *xpath, xmlDoc **xdoc, char **value,
char **error);
int zbx_xml_doc_read_num(xmlDoc *xdoc, const char *xpath, int *num);
+int zbx_xml_node_read_num(xmlDoc *xdoc, xmlNode *node, const char *xpath, int *num);
char *zbx_xml_node_read_value(xmlDoc *xdoc, xmlNode *node, const char *xpath);
char *zbx_xml_doc_read_value(xmlDoc *xdoc, const char *xpath);
xmlNode *zbx_xml_node_get(xmlDoc *xdoc, xmlNode *node, const char *xpath);