Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892515
MultimeterEvent.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
MultimeterEvent.php
View Options
<?php
final
class
MultimeterEvent
extends
MultimeterDAO
{
const
TYPE_STATIC_RESOURCE
=
0
;
const
TYPE_REQUEST_TIME
=
1
;
const
TYPE_EXEC_TIME
=
2
;
protected
$eventType
;
protected
$eventLabelID
;
protected
$resourceCost
;
protected
$sampleRate
;
protected
$eventContextID
;
protected
$eventHostID
;
protected
$eventViewerID
;
protected
$epoch
;
protected
$requestKey
;
private
$eventLabel
;
public
function
setEventLabel
(
$event_label
)
{
$this
->
eventLabel
=
$event_label
;
return
$this
;
}
public
function
getEventLabel
(
)
{
return
$this
->
eventLabel
;
}
public
static
function
getEventTypeName
(
$type
)
{
switch
(
$type
)
{
case
self
::
TYPE_STATIC_RESOURCE
:
return
pht
(
'Static Resource'
)
;
case
self
::
TYPE_REQUEST_TIME
:
return
pht
(
'Web Request'
)
;
case
self
::
TYPE_EXEC_TIME
:
return
pht
(
'Subprocesses'
)
;
}
return
pht
(
'Unknown ("%s")'
,
$type
)
;
}
public
static
function
formatResourceCost
(
PhabricatorUser
$viewer
,
$type
,
$cost
)
{
switch
(
$type
)
{
case
self
::
TYPE_STATIC_RESOURCE
:
return
pht
(
'%s Req'
,
new
PhutilNumber
(
$cost
)
)
;
case
self
::
TYPE_REQUEST_TIME
:
case
self
::
TYPE_EXEC_TIME
:
return
pht
(
'%s us'
,
new
PhutilNumber
(
$cost
)
)
;
}
return
pht
(
'%s Unit(s)'
,
new
PhutilNumber
(
$cost
)
)
;
}
protected
function
getConfiguration
(
)
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'eventType'
=>
'uint32'
,
'resourceCost'
=>
'sint64'
,
'sampleRate'
=>
'uint32'
,
'requestKey'
=>
'bytes12'
,
)
,
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_request'
=>
array
(
'columns'
=>
array
(
'requestKey'
)
,
)
,
'key_type'
=>
array
(
'columns'
=>
array
(
'eventType'
,
'epoch'
)
,
)
,
)
,
)
+
parent
::
getConfiguration
(
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 16:55 (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126697
Default Alt Text
MultimeterEvent.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment