Events not shown in get-vievent

What types of events are NOT displayed in

Get-vievent?

For example, suppose that a user connects to a server ESXi directly, rather than connecting to vCenter Server.  This ESXi server is managed by the vcenter Server.  Everything is done on the ESXi server can still to report through

'

Get-vievent

the server vCenter Server?

What could be missing if I don't

Get-vievent - username 'ADDOMAIN\adusername '.

the server vCenter for this user?

Server ESXi and vCenter server have their own set of events.

As you can easily check with my Event-O-Matic script, when you connect to a server ESXi and vCenter server.

ESXi events, both there are connectivity, are copied to the vCenter by the vpxa service that runs on the ESXi.

So in theory you should, as far as I know, see all ESXi appearing in the vCenter events events & tasks

Tags: VMware

Similar Questions

  • Look at a record events with get-vievent

    How can I use get-vievent to see everything that follows?

    -All exports of VMS in vCenter

    -All exports of virtual machines in an ESXi host

    -All downloads of files vmdk to a store of data using client operations or copy of Vmware on the vmdk from the dcui / ssh console?

    The idea is to see every time a vmdk left the environment.

    You can report export (EGGS or OVF) with the following

    $start = (get-Date). AddHours(-1)

    Get-VIEvent-Start $start - MaxSamples ([int]: MaxValue) |

    where {$_-is [VMware.Vim.TaskEvent] - and $_.Info.DescriptionId - eq "VirtualMachine.ExportVmLRO"} |

    Select CreatedTime,UserName,@{N='VM'; E={$_. UMM name}}, FullFormattedMessage,

    @{N = 'Event'; {E = {$_.Info.DescriptionId}}

    Download files through the browser data store does not all events as far as I know.

  • Get-VIEvent - how to export the event type?  error, warning, or info

    Hello

    I know that the Get-VIEvent command allows you to specify the type of events to get back... that is to say [-Types < EventCategory [>]

    but, I want to extract all the events and export them to a CSV file. I want one of the columns to be "EventCategory", which will be ERROR, WARNING, or INFO, but I can't seem to find it.  $_. GetType(). Name gets me the type of event, but not the category.  I know that I can have my script executed 3 times (each time specifying the - parameter Types) but I want to run only once.  Any ideas?

    Thank you!

    Jeff

    Hello, horningj-

    I worked on a few elements that should attract the event category.  The first selects a few properties, including a calculated property that gets the event category:

    ## works well if no events of type 'EventEx'## get the .Net View object of the EventManager (used for getting the event Category) $viewEventMgr = Get-View EventManager ## get some VIEvents, select a few properties, including a calculated property for EventCategory Get-VIEvent | Select FullFormattedMessage, CreatedTime, @{n="EventCategory"; e={$strThisEventType = $_.GetType().Name; ($viewEventMgr.Description.EventInfo | ?{$_.Key -eq $strThisEventType}).Category}}
    

    It becomes VIEvents (the last 100, because I did not specify the parameter - MaxSamples) and returns the properties of data.  The calculated "EventCategory" property uses the type of the VIEvent object to search for in the collection of items EventDescriptionEventDetail in ownership eventInfo found in .net object View for the EventManager.  He then grabs the 'Category' of the corresponding element of EventDescriptionEventDetail property.

    Works fine unless you have any VIEvents type "EventEx" - then, this 'research' in EventDescriptionEventDetail collection method fails, because there is more than one element of this type (there are 91 of them at the moment).

    This led me to the next bit.  It is similar to the previous method, but it handles EventEx events too:

    ## get the .Net View object of the EventManager (used for getting the event Category)$viewEventMgr = Get-View EventManager
    
    ## get some VIEvents (the last 100, as "-MaxSamples" is not specified) Get-VIEvent | %{    ## put the pipeline varible into another variable; get its type    $oThisEvent = $_; $strThisEventType = $_.GetType().Name    ## if this event is of type "EventEx"    if ($strThisEventType -eq "EventEx") {        $strEventTypeId = $oThisEvent.EventTypeId;        ## get the EventInfo item (of type EventDescriptionEventDetail) whose "FullFormat" property begins with the EventTypeId of the VIEvent at hand, and get its "Category" property        $strCategory = ($viewEventMgr.Description.EventInfo | ?{$strRegexPattern = "^$strEventTypeId\|.*"; $_.FullFormat -match $strRegexPattern}).Category    } ## end if     ## else, can just grab the EventInfo item whose "Key" is the same as this event's type    else {$strCategory = ($viewEventMgr.Description.EventInfo | ?{$_.Key -eq $strThisEventType}).Category}    ## add a NoteProperty "EventCategory" to this event    $oThisEvent | Add-Member -MemberType NoteProperty -Name EventCategory -Value $strCategory -PassThru} | Select FullFormattedMessage, CreatedTime, EventCategory
    

    It seems that the EventTypeId of the event returned by Get-VIEvent is included in the first part of the property FullFormat of elements EventDescriptionEventDetail with EventEx key, separate from the rest of the value by a vertical pipe.  Thus, the EventTypeId of the VIEvents can be used to make a match on EventEx of events .net EventManager View object types to get the event 'category' (info, warning, error, user).

    You can, of course, change the Select statements to choice/choose the pieces of information you want to export and then export to a file of data as you please.

    How does do for you?

    * The message has been edited by mattboren on April 5, 2011 - added line at the beginning of the second piece of code '$viewEventMgr = Get-view event Manager.  It was already in the first room and assumes that the user has run the two parts in the same session, but added for completeness.

  • Export of Get-VIEvent event

    Hello

    I found the get-vievent command output looks like this

    model: false

    key: 8240

    chainId: 8240

    Createduserid: 2009-03-23 14:38:03

    user name:

    Data Center: VimApi.DatacenterEventArgument

    computeResource: VimApi.ComputeResourceEventArgument

    Host: VimApi.HostEventArgument

    VM: VimApi.VmEventArgument

    fullFormattedMessage: Machine virtual viedfs1-clone is connected

    dynamicType:

    dynamicProperty:

    It is possible to get there real name of the host instead of the value VimApi.HostEventArgument?

    What I'm trying to do is to get the list of errors and warnings with time stamp, name the source (host or guest) and completely formatted message. Perfect example is event VC GUI export

    Error 2009-01-30 12:43:20 cannot communicate with a primary agent of HA cluster Cluster1 in Test environment

    error 30/01/2009 12:43:20 abcd.fqdn.com host in Test environment does not

    It is possible to reproduce the logfile that way by VI toolkit?

    Thnx a lot

    The following should do what you want.

    Note that I have export text to a CSV file, which makes it easier to see the different areas

    
    $report = @()
    get-vievent -Types Error,Warning -Start (Get-Date).addminutes(-15) | %{
      $row = "" | Select Time, Text, Host
      $row.Time = $_.CreatedTime.ToString()
      $row.Text = $_.fullFormattedMessage
      if($_.host -ne $null){
         $row.Host = $_.host.name
      }
      else{
        $row.Host = ""
      }
      $report += $row
    }
    $report | Export-Csv "C:\report.csv" -noTypeInformation 
    

    Post edited by: LucD

    Just noticed I put 1500 instead of 15 as an argument to the addminutes method.

  • When you use fireftp I use the FTP user name and password to connect, but then when I try to connect I get "password not shown" in the lower left corner. Why?

    That's what shows the box below:

    331 user [email protected] OK. Password required

          PASS (password not shown)
    

    Many terminal-style applications remove the password from appearing in the journal of communication, to protect any person who could later read the newspaper. I think that FireFTP that emule. It is important to be able to view the password?

  • Get-VIEvent "vSphere HA restarted virtual machine.

    Hi score

    Can someone help me complete this script

    Get-Cluster 'test ' | Get - VM | Get-VIEvent | Where-Object {$_.} FullFormattedMessage-LIKE "{vSphere virtual machine rebooted HA *'} |" Select ObjectName,@{N="IP addr; E={($_. Guest.IpAddress)}}, Createduserid, FullFormattedMessage

    Out put:

    ObjectName IP addr Createduserid FullFormattedMessage

    ----------                          -------                             -----------                        --------------------

    VM1 05 - Sep - 14 16:14:29 vSphere restarted my virtual HA...

    VM2 05 - Sep - 14 16:14:25 vSphere restarted my virtual HA...

    VM3 05 - Sep - 14 16:14:25 vSphere restarted my virtual HA...

    Failed to get the IP address on this script.

    Thank you for giving if any good script to get vSphere HA restarted event when the host failure.

    Try like this

    Get-Cluster 'test ' | Get - VM |

    Get-VIEvent |

    where {$_.} FullFormattedMessage-match 'vSphere virtual machine rebooted HA'} |

    Select ObjectName,@{N="IP addr; E = {(Get-vue-Id $_.)} {{Vm.Vm). Guest.IpAddress}}, Createduserid, FullFormattedMessage

    Not sure property you are trying to achieve with ObjectName.

  • I ran several analyzers antivirus from AVG to ODILE and none of them does not seem to get rid of this virus (Exploit: win32 / pdfjsc.dr)

    I ran several analyzers antivirus from AVG to ODILE and none of them does not seem to get rid of this virus (Exploit: win32 / pdfjsc.dr)

    Any suggestions apart from simply all formatting?

    Hello

    Exploit: Win32 / Pdfjsc.Dr
    http://www.Microsoft.com/security/portal/threat/encyclopedia/entry.aspx?name=exploit%3aWin32%2fPdfjsc.Dr

    If you need search malware here's my recommendations - they will allow you to
    scrutiny and the withdrawal without ending up with a load of spyware programs running
    resident who can cause as many questions as the malware and may be harder to detect as
    the cause.

    No one program cannot be used to detect and remove any malware. Added that often easy
    to detect malicious software often comes with a much harder to detect and remove the payload. Then
    its best to be thorough than paying the high price later now too. Check with them to one
    extreme overkill point and then run the cleaning only when you are sure that the system is clean.

    It can be made repeatedly in Mode safe - F8 tap that you start, however, you must also run
    the regular windows when you can.

    TDSSKiller.exe. - Download the desktop - so go ahead and right-click on it - RUN AS ADMIN
    It will display all the infections in the report after you run - if it will not run changed the name of
    TDSSKiller.exe to tdsskiller.com. If she finds something or not does not mean that you should not
    check with the other methods below.
    http://support.Kaspersky.com/viruses/solutions?QID=208280684

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone.
    (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/products/malwarebytes_free

    SuperAntiSpyware Portable Scanner - free
    http://www.SUPERAntiSpyware.com/portablescanner.HTML?tag=SAS_HOMEPAGE

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can
    Download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with others
    security programs. It is a single scanner, VERY EFFICIENT, if it finds something to come back
    here or use Google to see how to remove.
    http://www.prevx.com/   <-->
    http://info.prevx.com/downloadcsi.asp?prevx=Y  <-->

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    Try the demo version of Hitman Pro:

    Hitman Pro is a second scanner reviews, designed to save your computer from malicious software
    (viruses, Trojans, rootkits, etc.). who infected your computer despite safe
    what you have done (such as antivirus, firewall, etc.).
    http://www.SurfRight.nl/en/hitmanpro

    --------------------------------------------------------

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    -----------------------------------

    Original version is now replaced by the Microsoft Safety Scanner
    http://OneCare.live.com/site/en-us/default.htm

    Microsoft safety scanner
    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    ----------------------------------

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

    --------------------------------------------------------

    After the removal of malicious programs:

    Also follow these steps for the General corruption of cleaning and repair/replace damaged/missing
    system files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    RUN - type in the box-

    sfc/scannow

    Then run checkdisk (chkdsk).

    RUN - type in the box-

    Chkdsk /f /r

    -----------------------------------------------------------------------

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    ================================

    For extreme cases:

    Norton Power Eraser - eliminates deeply embedded and difficult to remove crimeware
    This traditional antivirus analysis does not always detect. Because the Norton Power Eraser
    uses aggressive methods to detect these threats, there is a risk that it can select some
    legitimate programs for removal. You should use this tool very carefully and only after
    you have exhausted other options.
    http://us.Norton.com/support/DIY/index.jsp

    ================================

    If you are in North America, you can call 866-727-2338 for virus and spyware help
    infections. See http://www.microsoft.com/protect/support/default.mspx for more details. For
    international information, see your subsidiary local Support site.

    Microsoft support - Virus and Security Solution Center
    http://support.Microsoft.com/contactus/cu_sc_virsec_master?ws=support#TAB0

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • Filtering some results in Get-VIEvent

    How would be to filter the results of Get-VIEvent or other specific keywords in the FullFormattedMessage, or by the MessageInfo property?

    I'm trying to use Get-VIEvent to get a list of warning and error events and want to filter the "insufficient result of RAM video.

    I am trying to filter either by the insufficient "vidéo RAM" text in the property of FullFormattedMessage, or the result of "{msg.svgaUI.badLimits}" in the MessageInfo property.

    Thanks in advance for any help.

    Hello, aydeisen-

    You can use a statement Where-Object to filter the events as you wish.  As:

    Get-VIEvent | Where-Object {    ($_.FullFormattedMessage -like "*Insufficient video RAM*") -or    ($_.MessageInfo | ?{$_.id -like "*msg.svgaUI.badLimits*"})} ## end where-object
    

    This verifies VIEvents whose FullFormattedMessage property is as the given string, or whose MessageInfo property (which is zero or more objects of VirtualMachineMessage ) is an VirtualMachineMessage object with the id as the given string property.

    Of course, you will use the other Get-VIEvent settings for changing the scope of the events gathered initially (for a given entity, a time limit given, maxSamples, etc.).  How does do for you?

  • host name of output of get-vievent filter

    Hi guys,.

    I have a question about the host name filtering in an output of get-vievent. for example, I tried to extract only the host name of the following command:

    Get-VIEvent - maxsamples 20000 | where {$_.} GetType(). Name - eq "VmRemovedEvent"} | Sort descending Createduserid | Select FullFormattedMessage

    Already tried some things like split and toppings, but this does not work for me.

    The name of the server is always based on a ground known as SERVER-< description >.

    Sure. For the removed VM also is just an additional line of PowerCLI:

    Get-VIEvent -maxsamples 20000 |
    where {$_.Gettype().Name -eq "VmRemovedEvent"} |
    Sort CreatedTime -Descending |
    Select @{N="VMHost";E={$_.Host.Name}},
      @{N="VM";E={$_.Vm.Name}}
    
  • Get-VIEvent question

    I'm trying to generate a list of all users who are connected.  I have this command and it works, but I would exclude 1 or more users of this list, which is "root".

    Here is the command I use.

    $events = get-VIEvent - MaxSamples 1000

    foreach ($event in $events) {if ($event.fullFormattedMessage - match '(.*)@\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b connected the user') {Write-Host ('User' + $matches [1] + "" connected to: "+ $event.createdTime")}}

    Hi, mchunger,

    This should work for you, if you know the names you want to exclude:

    $excl = @(«root», «admin», «dcui»)

    foreach ($event in $events) {if ($excl - notcontains $event.username) {if ($event.fullFormattedMessage - match '(.*)@\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b connected the user') {Write-Host ('User' + $matches [1] + "" connected to: "+ $event.createdTime")}}}

    Kind regards

    Ogniana

  • Get-vievent formatted output

    Hello Luke,.

    Instead of the select-object cmdlet, I would use format-table - Autosize. If I do this, I can only direct to cmdlet convertto-html I want. What is the trick here? I need an output formatted due to FullFormattedMessage.

    $fileloc = "c:\error.csv".
    $vievents = get-VIEvent-start (Get-Date). AddHours(-24)-Types 'mistake ' |
    Select-object Createduserid, username, FullFormattedMessage |
    Export-Csv-path $fileloc - NoTypeInformation - UseCulture

    Thank you

    You must use a Format-* cmdlet only as the last cmdlet in a pipeline. The Select-Object cmdlet is used to select only the properties that you want. To better keep this cmdlet. You can convert the output to html format with:

    $a = ""
    
    Get-VIEvent -Start (Get-Date).AddHours(-24) -Types "Error" |
    Select-Object CreatedTime, UserName, FullFormattedMessage |
    ConvertTo-HTML -head $a -body "

    VI Events Information

    " | Out-File VIEvents.htm Start VIEvents.htm

    Best regards, Robert

  • Don't PowerCLI v5 changes that behaves in the way that get-vievent?

    Hi all

    I just installed v5 powerCLI and some scripts I was using don't work anymore.

    the get-vievent-start (get-date command).adddays(-2) that I have used to analyze events in the course of the last 2 days, is now back only a few events, all of the current day.

    is - anyone notice the same behavior?

    Hello, nicolasbouyssy-

    Hmm, strange.  So, if you run the line of your script that gets the desired events and count the number of items that it returns is - this superior to the default value of 100?  In other words, something like:

    (Get-VIEvent -Start (Get-Date).AddDays(-2)).Count
    

    I understand wanting to have things run fast.  Can possibly restrict you the events that you retrieve by specifying an array of entities for which to get the events (using parameter - entity), either by limiting the event types with the parameter - Types (to represent types of error, Info, or Warning)?

    Regarding, "unless it is smart enough to stop navigation when the date is reached" - Yes, it must be the behavior when you use the MaxSamples parameter with - Start - it will return up to MaxSamples number of events, but none is older than the specified start date.  So, if there are 100000 events, but only 2200 in the past two days, specifying for MaxSamples 100000 with a start of two days should return only 2200 events.

    As for fixing the MaxSamples number to cover all events - I assumed that to be sure that you get all you can, you can use the maximum value for MaxSamples.  It's a [int32], whose maximum value is 2,147,483,647 (which is (2 ^ 31) - 1).  So to be sure you have found all the events gave as you can, you can use this maximum value for MaxSamples, as such:

    Get-VIEvent -MaxSamples 2147483647 -Start (Get-Date).AddDays(-15)
    

    Or, using mathematics (maybe for readability):

    Get-VIEvent -MaxSamples ([Math]::pow(2,31) - 1) -Start (Get-Date).AddDays(-15)
    

    But, filtering of events on some of the other things mentioned above (type, entity) apparently is a good idea before the entry to get about 2 ^ 31 events...

  • Get-VIEvent command line options

    Hello list,
    Options of I have a question about the command line for Get-VIevent. I need to get the logs between a given time limit. I'll use this command in a script. If I can make use of Get-Date command output to - Start - Finish settings.
    I have to get the logs between a given time limit. for example I need newspapers between 16:00 to 17:00 on the same day. for that I do use Get-Date command output?
    Thank you
    Ghislain

    Ghislain wrote:

    This way to grep for a particular string. I know there is an option called "findstr". can you please cite the use of this option of findstr?

    There are a few (dozen) different ways to approach this problem in PowerShell. I hope these examples help:

    PS > $a = Get-VIEvent
    PS > $a | group { $_.GetType().BaseType }
    
    Count Name                      Group
    ----- ----                      -----
       20 VimApi.AlarmEvent         {13875, 13874, 13873, 13872, 13853, 13852, 13846, 13845, 13809...
        8 VimApi.SessionEvent       {13871, 13870, 13869, 13823, 13816, 13815, 13813, 13812}
       65 VimApi.VmEvent            {13868, 13867, 13866, 13865, 13864, 13863, 13862, 13861, 13860...
        2 VimApi.HostEvent          {13821, 13819}
        3 VimApi.Event              {13820, 13818, 13784}
        1 VimApi.GeneralEvent       {13817}
        1 VimApi.CustomFieldDefE... {com.icomasoft.PowerScripter.script}
    
    PS > $a | Where-Object { $_.key -eq 13875 }
    
    source               : VimApi.ManagedEntityEventArgument
    entity               : VimApi.ManagedEntityEventArgument
    from                 : gray
    to                   : green
    alarm                : VimApi.AlarmEventArgument
    key                  : 13875
    chainId              : 13845
    createdTime          : 12/7/2008 11:17:27 AM
    userName             :
    datacenter           : VimApi.DatacenterEventArgument
    computeResource      : VimApi.ComputeResourceEventArgument
    host                 : VimApi.HostEventArgument
    vm                   : VimApi.VmEventArgument
    fullFormattedMessage : Alarm Virtual Machine Memory Usage on openfiler changed from Gray to Green
    dynamicType          :
    dynamicProperty      :
    PS > $a | ? { $_.fullFormattedMessage -match "memory" } | select -first 5 | ft key, full* -auto
    
      key fullFormattedMessage
      --- --------------------
    13875 Alarm Virtual Machine Memory Usage on openfiler changed from Gray to Green
    13873 Alarm Virtual Machine Memory Usage on vcenter.halr9000.com changed from Gray to Green
    13853 Alarm Virtual Machine Memory Usage on vcenter.halr9000.com changed from Green to Gray
    13846 Alarm Virtual Machine Memory Usage on openfiler changed from Green to Gray
    13809 Alarm Virtual Machine Memory Usage on openfiler changed from Gray to Green
    

    [PowerShell MVP |] [ https://mvp.support.microsoft.com/profile=5547F213-A069-45F8-B5D1-17E5BD3F362F], the VI Toolkit forum moderator

    Author of the forthcoming book: VMware Infrastructure Management with PowerShell

    Co-host, PowerScripting Podcast (http://powerscripting.net)

    Need help in General, other than VMware PowerShell? Try the PowerShellCommunity.org forums

  • I bought an iphone6.  I registered. On the apple's music. But I'm not able to get the free month trial subscription

    I bought an iphone6.  I registered. On the apple's music. But I'm not able to get the free month trial subscription

    What happens when you try?

  • Qosmio-F750-10N and Win8.1 - were not able to get the right BT drivers

    Hello

    Since upgrading my HARD drive and installing Windows 8 (.1), I was not able to get the right drivers for my Qosmio F750-10N Bluetooth.

    If I go through the section of drivers download site, the drop-down boxes of language and the region appear to be defective, so it shows me all the drivers.

    Tried to install a Toshiba Bluetooth stack generic but it doesn't seem to be able to recognize my Bluetooth device. Also tried to go through the Atheros website without much luck.

    Please could someone help or maybe post a link to a download mirror.

    Thank you very much.

    Hello

    First of all, it seems that the 8.1 win is not supported for Qosmio F750.
    So I might be difficult to operate BT

    However, AFAIK the Qosmio F750-10N was equipped with an Atheros AR9285 Wifi/BT card.

    This means that a single module shares the WiFi network and BT and you need to install the Atheros BT filter driver.
    Next to the BT filter installed, must install the driver of Toshiba system to win 8.1
    The pilot of this system must be installed before the filter of BT driver.

    But like I said: 8.1 win is not supported for this Qosmio unit and you won't find drivers Win 8.1 download section in the driver F750.

    But you should try the drivers released for the other, more recent Qosmio series; i.e. X 870

    Good luck

Maybe you are looking for