Audit Events in Ignition 8.1.18

Compared to 8.1.17 I am seeing new behavior that every tag change made by the system (not by the user) is being sent to the audit log in 8.1.18. I noticed this in our Kafka stream after the tag gateway was updated to 8.1.18:

Audit events in the millions caught my eye.

Looking at the data I can see that every single system driven tag change is being logged to the audit profile.

Was there any change in 8.1.18 and is this expected behavior?

Edit
We did not change the module when upgrading from 8.1.17 to 8.1.18.

In 8.1.17 we saw far fewer audit events happening, typically less than 100 per day.

Thanks,

Nick

It looks like 8.1.18 saw the addition of audit events from tag write calls within Perspective sessions. It also seems that a regression was introduced here that also brought in events from any gateway scope (tag event scripts, etc) instead of just Perspective sessions. This might account for some of the increased activity in the audit. This shows to be resolved with 8.1.19.

1 Like

@kcollins1 thanks for the quick response, much appreciated.

I don’t suppose there is anyway to prevent it from happening within 8.1.18?

At the point where we send the data to Kafka, I don’t immediately see a field that would allow us to choose not to send an event other than something like actor and actor host being unknown:

  public void sendAuditData(AuditRecord record) {
      if (kafkaConfig.getAuditEnabled()) {
          long epochms = record.getTimestamp().getTime();
          try {
              String json = new JSONObject()
                      .put("epochms", epochms)
                      .put("originatingSystem", record.getOriginatingSystem())
                      .put("originatingContext", record.getOriginatingContext())
                      .put("actor", record.getActor())
                      .put("actorHost", record.getActorHost())
                      .put("action", record.getAction())
                      .put("actionTarget", record.getActionTarget())
                      .put("actionValue", record.getActionValue())
                      .put("statusCode", record.getStatusCode())
                      .toString();
              SinkData toSend = new SinkData(auditTopic, json, auditSinkName);
              sendKafkaData(toSend, true);
          } catch (JSONException e) {
              logger.error("Error sending audit record: " + e.getCause());
              this.auditSink.addOneFailedCount(auditSignature);
          }
      }
  }

Adding
The way we have it setup is whatever goes to DB is also sent to Kafka so we could only control the Kafka route and whatever happens when an audit record is logged to our MSSQL DB is largely out of our control other than turning it on or off.

Thanks,

Nick

I don’t suppose there is anyway to prevent it from happening within 8.1.18?

Not that I can see.. Here are the two other threads that relate to the issue, for reference:

1 Like

@kcollins1 we upgraded a gateway to 8.1.19 today and it seems this issue is still present. As an example, we can count around 5000 audit events in ~10 minutes time.

Can you please verify?

Thanks,

Nick

I do expect there to be more audit events occurring with 8.1.18+, but hopefully the new ones you’re observing are indeed from Perspective sessions (with the fix from 8.1.19 reducing the unintended additions)?

I have our Kafka module installed on one of our tag gateways And this is around 20 minutes of audit events:

Looking at the events themselves, they originate from the front end gateway so this does point to them coming from perspective sessions.

However, the volume of audit events is still too much and we do not want to see an audit event for every single tag change that happens due to a perspective session. While we can manage with the retention period on the audit profile, the concern we have is excessive storage consumption without a need for the data.

For users like us that do not want to see all of these events, it seems like there should be an option to shut them off.

I think I mentioned before, but we split the audit events to MSSQL and Kafka so while Kafka is not really a concern for memory, MSSQL always is.

Thanks,

Nick