Hi All,
Could anyone please help for storing data into CSV file from variable with required structure ? Thank you
I have csv variable data from other set_fact as mentioned below
“csv”: [
“cluster1,virtual_clu1,log_vol1,online,used”,
“cluster1,virtual_clu1,log_vol2,offline,not_used”,
“cluster1,virtual_clu1,log_vol3_Test,online,not_used”,
“cluster1,virtual_clu1,log_vol4,offline,not_used”,
“cluster2,virtual_clu2,log_vol6,online,used”,
“cluster2,virtual_clu2,log_vol1,offline,not_used”,
“cluster2,virtual_clu2,log_vol3,online,not_used”
“cluster2,virtual_clu2,log_vol4,online,used”
]
Looking for:
The header must be: cluster_name,log_cluster,vol_name,status,work_status
not working:
(it has to give here when status=online and work_status=not_used )
exclude:
(it has go give here when status=offline and vol_name=<name contacts ‘Test’>)
working:
(it has to give here when status=online and work_status=used
[other then not working & exclude list] )
example: file1.csv
not working:
cluster_name,log_cluster,vol_name,status,work_status
cluster2,virtual_clu2,log_vol3,online,not_used
exclude:
cluster_name,log_cluster,vol_name,status,work_status
cluster1,virtual_clu1,log_vol3_Test,online,not_used
cluster1,virtual_clu1,log_vol2,offline,not_used
cluster1,virtual_clu1,log_vol4,offline,not_used
cluster2,virtual_clu2,log_vol1,offline,not_used
working:
cluster_name,log_cluster,vol_name,status,work_status
cluster1,virtual_clu1,log_vol1,online,used
cluster2,virtual_clu2,log_vol6,online,used
cluster2,virtual_clu2,log_vol4,online,used