This function retrieves the system information such as case information, user information and so on. See the Result Value section for all information returned by the function.

get_system_info(start_time_unixtime_ms)

Parameters

Param Name Param Type Possible Values Comments Mandatory Parameter
start_time_unixtime_ms string 1564532753123 The Unix timestamp in milliseconds. Yes

Return Type

Dictionary

Example

Sample Code
from SiemplifyJob import SiemplifyJob
import json
siemplify = SiemplifyJob()
siemplify.script_name = "Retrieve System Information"
systemInfo = siemplify.get_system_info(start_time_unixtime_ms="1564532753123")
print json.dumps(systemInfo)
Result Behavior
Json with system information will be printed to standard output from the provided timestamp.
Result Value
{
   "sla_count": 0,
    "unique_users_last_month": 1,
    "manual_actions_used": 0,
    "reports_generated": 0,
    "new_integrations": [],
    "new_connectors": [],
    "escalations_to_tier2_count": 0,
    "workbooks_with_close_action": 0,
    "last_upgrade_date": "2019-06-20T16:01:49",
    "action_playbook_appearances": [],
    "marketplace_version": "12.14",
    "average_opened_cases_per_user": 0.0,
    "important_cases_count": 0,
    "playbooks_executed": 0,
    "top_user_screen_resolutions": ["1920x1080"],
    "playbooks_edited": 0,
    "average_alerts_per_day": 0.0,
    "average_closed_cases_per_day": 0.0,
    "widgets_created": 0,
    "visualization_accessed": 0,
    "searches_executed": 0,
    "incidents_invoked_count": 0,
    "average_tasks_per_case": 0.0,
    "environments_count": 2,
    "custom_actions_created": 0,
    "average_insights_per_case": 0.0,
    "case_comments_added": 0,
    "version_number": "5.2.22.0",
    "dashboard_shows": 0,
    "theme_usages": [],
    "users_created": 0,
    "top_user_browsers": ["Mozilla/5.0,(X11; Linux x86_64),AppleWebKit/537.36,(KHTML, like Gecko),Ubuntu,Chromium/75.0.3770.90,Chrome/75.0.3770.90,Safari/537.36"],
    "report_templates_edited": 0,
    "case_reports_generated": 0,
    "unique_users_last_day": 1,
    "average_users_per_day": 1.7894736842105263,
    "widgets_edited": 0,
    "average_cases_per_day": 0.0,
    "custom_actions_edited": 0,
    "playbooks_created": 0
}