Getting Data In

CSAM Reports - 500 ERROR

_joe
Contributor

Hello all,

I am wondering if anyone has run into an issue where they receive a "500 error" on some large reports (small reports work fine)? The only feedback I got from the cSAM admin was to add a time out value in Microsoft PowerQuery, doesn't quite seem to relate to CURL though.

 

 

    personal_access_token = "MyRealToken",
    request_timeout_in_minutes = 10, // Specify your timeout value here
    data = Table.FromRecords(
        Json.Document(
            Web.Contents(
                csam_api_endpoint_url,
                    [
                        Headers = 
                        [
                            #"Authorization"="Bearer " & personal_access_token,
                            #"Content-Type" = "application/json"
                        ],
                        Timeout = #duration(0, 0, request_timeout_in_minutes, 0)
                    ]
                )
            )
        )
in
    data

 

Labels (1)
Tags (1)
0 Karma
Get Updates on the Splunk Community!

New Year, New Changes for Splunk Certifications

As we embrace a new year, we’re making a small but important update to the Splunk Certification ...

[Puzzles] Solve, Learn, Repeat: Unmerging HTML Tables

[Puzzles] Solve, Learn, Repeat: Unmerging HTML TablesFor a previous puzzle, I needed some sample data, and ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...