Skip to content

Commit

Permalink
HPCC-30571 LogAccessreport log procid by default
Browse files Browse the repository at this point in the history
- Reports procid by default

Signed-off-by: Rodrigo Pastrana <[email protected]>
  • Loading branch information
rpastrana committed Oct 26, 2023
1 parent 9cab6fd commit c9ee951
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion esp/scm/ws_logaccess.ecm
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ ESPenum LogColumnValueType : string
enum("enum")
};

ESPStruct LogColumn
ESPStruct [nil_remove] LogColumn
{
string Name;
ESPenum LogColumnType LogType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,9 +434,9 @@ void AzureLogAnalyticsCurlClient::getDefaultReturnColumns(StringBuffer & columns
if (includeComponentName)
columns.appendf("%s, ", defaultHPCCLogComponentCol);

columns.appendf("%s, %s, %s, %s, %s, %s, %s",
columns.appendf("%s, %s, %s, %s, %s, %s, %s, %s",
m_globalIndexTimestampField.str(), defaultHPCCLogMessageCol, m_classSearchColName.str(),
m_audienceSearchColName.str(), m_workunitSearchColName.str(), defaultHPCCLogSeqCol, defaultHPCCLogThreadIDCol);
m_audienceSearchColName.str(), m_workunitSearchColName.str(), defaultHPCCLogSeqCol, defaultHPCCLogThreadIDCol, defaultHPCCLogProcIDCol);
}

bool generateHPCCLogColumnstAllColumns(StringBuffer & kql, const char * colName)
Expand Down

0 comments on commit c9ee951

Please sign in to comment.