Click HERE to see how Saviynt Intelligence is transforming the industry. |
06/18/2024 05:21 AM - edited 06/18/2024 05:24 AM
Hello,
I have to work on an usecase where an analytics report gets generated and is saved in a Azure through SFTP. I am using this json in FILES_TO_PUT parameters, but i am not able to provision analytics file to Azure.
[
{
"eic_src_dir":"/saviynt_shared/reports/Archive/Analytics/",
"target_dir":"/testcontainter/",
"regex_list":["*.zip"]
}
]
06/18/2024 11:21 AM
Could you kindly provide a detailed snapshot of the information extracted from the logs, encompassing errors and other pertinent functionality details encountered during the execution of this process? Your assistance in furnishing this information would greatly aid in the analysis and resolution of any issues .
‼️‼️⚠️Do not upload any attachments that contain sensitive information, such as IP Addresses, URLs, Company/Employee Names, Email Addresses, etc.⚠️‼️‼️
06/18/2024 11:48 AM
AS of now this is working but getting error in traget source " "target_dir": "/home/testcontainter/", this my traget soucre but getting this error
" target_dir does not exist. target_dir :
/home/testcontainter/, Refer connectorms logs for
troubleshooting"
please finds the below attachment .
thanks in advance
goutam Ahirwar
06/18/2024 11:54 AM
Remove / from end and try
06/18/2024 12:01 PM
same error getting and for path please check the picture with highlighted above in first post ..
06/18/2024 03:53 PM
does directory name is correct
06/18/2024 10:42 PM - edited 06/18/2024 10:44 PM
hey this is our directory address "https://sftpone1.blob.core.windows.net/testcontainter/"
08/13/2024 05:41 AM
Hi,
Were you able to fix this issue ?
08/13/2024 08:08 AM
@GoutamAhirwar I think the problem lies with how you are placing the file. The SFTP is already logged into the container. So, you only need to provide the folder name, if any.
So, this should work in your case if you are placing the files in the root of the container.
[
{
"eic_src_dir":"/saviynt_shared/reports/Archive/Analytics/<AnalyticsNameWithoutSpaces>",
"target_dir":"/",
"regex_list":["*.zip"]
}
]
If there is a folder (or directory) like 'Folder', then, populate it as
[
{
"eic_src_dir":"/saviynt_shared/reports/Archive/Analytics/<AnalyticsNameWithoutSpaces>",
"target_dir":"/Folder/",
"regex_list":["*.zip"]
}
]