Skip to content

Commit

Permalink
Added SoftwareTelemetryLog & EndpointSensorTelemetryLog under Log
Browse files Browse the repository at this point in the history
  • Loading branch information
ikiril01 committed Jun 11, 2024
1 parent ed8773f commit f39ee11
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/ontology/d3fend-protege.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -15238,6 +15238,20 @@ The OWL languages are characterized by formal semantics. They are built upon the
:definition "A log of all the network packet data captured from a network by a network sensor (i.e., packet analyzer)," ;
rdfs:seeAlso <http://dbpedia.org/resource/Packet_analyzer> .

:SoftwareTelemetryLog a owl:Class ;
rdfs:label "Software Telemetry Log" ;
rdfs:subClassOf :Log;
:definition "A log of software telemetry, where this telemetry is used to gather data on the use and performance of applications and application components, e.g. how often certain features are used, measurements of start-up time and processing time, hardware, application crashes, and general usage statistics and/or user behavior." ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Telemetry#Software> .

:EndpointSensorTelemetryLog a owl:Class ;
rdfs:label "Endpoint Sensor Telemetry Log" ;
rdfs:subClassOf :SoftwareTelemetryLog,
[ a owl:Restriction ;
owl:onProperty :records ;
owl:someValuesFrom :EndpointSensor ] ;
:definition "A log of telemetry generated by an endpoint sensor, including system status, errors, or other notable functional activity.";

:Page a owl:Class ;
rdfs:label "Page" ;
rdfs:subClassOf :MemoryBlock ;
Expand Down Expand Up @@ -26926,7 +26940,7 @@ Wikipedia. (n.d.). Central tendency. [Link](https://en.wikipedia.org/wiki/Centra
:DS0013 a :ATTACKEnterpriseDataSource,
owl:NamedIndividual ;
rdfs:label "Sensor Health (ATTACK)" ;
:d3fend-mapping-exactly :EventLog .
:d3fend-mapping-exactly :EndpointSensorTelemetryLog .

:DS0014 a :ATTACKEnterpriseDataSource,
owl:NamedIndividual ;
Expand Down

0 comments on commit f39ee11

Please sign in to comment.